Disabling debug for socketio client

This commit is contained in:
ebolam
2022-08-11 17:21:26 -04:00
parent c38b793425
commit 8c796f0996
2 changed files with 3 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ def process_variable_changes(socketio, classname, name, value, old_value, debug_
if threading.get_ident() in rely_clients: if threading.get_ident() in rely_clients:
sio = rely_clients[threading.get_ident()] sio = rely_clients[threading.get_ident()]
else: else:
sio = socketio_client.Client(logger=True, engineio_logger=True) sio = socketio_client.Client()
@sio.event @sio.event
def connect(): def connect():
pass pass

View File

@@ -2110,7 +2110,6 @@ $(document).ready(function(){
} else { } else {
story_unpin(); story_unpin();
} }
console.log("cookie: "+getCookie("preserve_game_space")); preserve_game_space(!(getCookie("preserve_game_space") == "false"));
preserve_game_space((getCookie("preserve_game_space") == "true")); options_on_right(!(getCookie("options_on_right") == "false"));
options_on_right((getCookie("options_on_right") == "true"));
}); });