增加log
This commit is contained in:
@@ -1,6 +1,4 @@
|
|||||||
import requests
|
import requests
|
||||||
from flask_socketio import Namespace
|
|
||||||
|
|
||||||
|
|
||||||
def clear_user_session(asengine_url, asengine_token, user_id):
|
def clear_user_session(asengine_url, asengine_token, user_id):
|
||||||
'''
|
'''
|
||||||
@@ -32,6 +30,8 @@ def on_connect_to_ase(client, entry, init_data, **kwargs):
|
|||||||
print("on_connect_to_ase", init_data)
|
print("on_connect_to_ase", init_data)
|
||||||
namespace_entry.emit('open-iframe',"", room=init_data['room'], namespace='/agent')
|
namespace_entry.emit('open-iframe',"", room=init_data['room'], namespace='/agent')
|
||||||
namespace_entry.emit('message', "Agents服务已连接, 加载教案中", room=init_data['room'], namespace='/agent')
|
namespace_entry.emit('message', "Agents服务已连接, 加载教案中", room=init_data['room'], namespace='/agent')
|
||||||
|
namespace_entry.emit('message', f'{init_data}', room=init_data['room'], namespace='/agent')
|
||||||
|
|
||||||
|
|
||||||
restart = init_data.get("restart", False)
|
restart = init_data.get("restart", False)
|
||||||
# 不再需要手动next_chapter,因为已经在on_login中根据mongo进度恢复了正确的章节
|
# 不再需要手动next_chapter,因为已经在on_login中根据mongo进度恢复了正确的章节
|
||||||
|
|||||||
Reference in New Issue
Block a user