diff --git a/_docs_/index.html b/_docs_/index.html index d9a7b1a..8a067d7 100644 --- a/_docs_/index.html +++ b/_docs_/index.html @@ -475,17 +475,19 @@
import sys
 sys.path.append('../..')
 
+
 import report
 import socket_protocol
+from socket_protocol_server import example_protocol, DID_ASC_TIME
 import tcp_socket
 import time
 
-
-report.stdoutLoggingConfigure(log_name_lvl=[('root', 'INFO'), ])
-c = tcp_socket.tcp_client_stp('127.0.0.1', 17017)
-sp = socket_protocol.pure_json_protocol(c, channel_name='example_client')
-sp.send(socket_protocol.SID_READ_REQUEST, 0, None)
-print('The Client received: %s' % repr(sp.receive(socket_protocol.SID_READ_RESPONSE, 0).get_data()))
+if __name__ == '__main__':
+    report.stdoutLoggingConfigure(log_name_lvl=[('root', 'INFO'), ])
+    c = tcp_socket.tcp_client_stp('127.0.0.1', 17017)
+    sp = example_protocol(c, channel_name='example_client')
+    sp.send(socket_protocol.SID_READ_REQUEST, DID_ASC_TIME, None)
+    print('The Client received: %s' % repr(sp.receive(socket_protocol.SID_READ_RESPONSE, 0).get_data()))
 

and

@@ -498,44 +500,56 @@ import time -def time_callback(msg): - if msg.get_status() == socket_protocol.STATUS_OKAY: - return socket_protocol.STATUS_OKAY, time.asctime() - else: - return socket_protocol.STATUS_OPERATION_NOT_PERMITTED, None +DID_ASC_TIME = 0 -report.stdoutLoggingConfigure(log_name_lvl=[('root', 'INFO'), ]) -s = tcp_socket.tcp_server_stp('127.0.0.1', 17017) -sp = socket_protocol.pure_json_protocol(s, channel_name='example_server') -sp.register_callback(socket_protocol.SID_READ_REQUEST, 0, time_callback) +class example_protocol(socket_protocol.pure_json_protocol): + def __init__(self, *args, **kwargs): + socket_protocol.pure_json_protocol.__init__(self, *args, **kwargs) + # + self.add_data((socket_protocol.SID_READ_REQUEST, socket_protocol.SID_READ_RESPONSE), DID_ASC_TIME, 'asc_time') + # + if not self.__comm_inst__.IS_CLIENT: + self.register_callback(socket_protocol.SID_READ_REQUEST, 0, self.time_callback) -i = 0 -while not s.is_connected() and i <= 20: - i += 1 - time.sleep(.1) # wait for a connection + def time_callback(self, msg): + if msg.get_status() == socket_protocol.STATUS_OKAY: + return socket_protocol.STATUS_OKAY, time.asctime() + else: + return socket_protocol.STATUS_OPERATION_NOT_PERMITTED, None -i = 0 -while s.is_connected() and i <= 20: - i += 1 - time.sleep(.1) # wait for disconnect + +if __name__ == '__main__': + report.stdoutLoggingConfigure(log_name_lvl=[('root', 'INFO'), ]) + s = tcp_socket.tcp_server_stp('127.0.0.1', 17017) + sp = example_protocol(s, channel_name='example_server') + + i = 0 + while not s.is_connected() and i <= 20: + i += 1 + time.sleep(.1) # wait for a connection + + i = 0 + while s.is_connected() and i <= 20: + i += 1 + time.sleep(.1) # wait for disconnect

Will result to the following output:

-
2021-01-11 17:40:12,803: root.socket_protocol.example_client - INFO - prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION
-2021-01-11 17:40:12,803: root.socket_protocol - INFO - prot-client: Initialisation finished.
-2021-01-11 17:40:12,803: root.socket_protocol.example_client - INFO - prot-client: TX -> service: read data request, data_id: 0, status: okay, data: "None"
-2021-01-11 17:40:12,954: root.tcp_socket.example_client - INFO - comm-client: Connection established... (to 127.0.0.1:17017)
-2021-01-11 17:40:12,955: root.socket_protocol.example_client - INFO - prot-client: TX -> service: channel name request, data_id: name, status: okay, data: "'example_client'"
-2021-01-11 17:40:12,956: root.tcp_socket.example_client - INFO - comm-client: TX -> "(74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 78 61 6d 70 6c 65 5f 63 6c 69 65 6e 74 22 7d f5 cd dd e7"
-2021-01-11 17:40:13,004: root.tcp_socket.example_client - INFO - comm-client: TX -> "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 45 05 7b b4"
-2021-01-11 17:40:13,057: root.stringtools.stp - INFO - STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f
-2021-01-11 17:40:13,058: root.tcp_socket.example_client - INFO - comm-client: RX  <- "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f"
-2021-01-11 17:40:13,058: root.socket_protocol.example_client - INFO - prot-client: RX <- service: channel name response, data_id: name, status: okay, data: "None"
-2021-01-11 17:40:13,109: root.stringtools.stp - INFO - STP: message identified - (85): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 4d 6f 6e 20 4a 61 6e 20 31 31 20 31 37 3a 34 30 3a 31 33 20 32 30 32 31 22 7d dd 78 8e ae
-2021-01-11 17:40:13,109: root.tcp_socket.example_client - INFO - comm-client: RX  <- "(85): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 4d 6f 6e 20 4a 61 6e 20 31 31 20 31 37 3a 34 30 3a 31 33 20 32 30 32 31 22 7d dd 78 8e ae"
-2021-01-11 17:40:13,110: root.socket_protocol.example_client - INFO - prot-client: RX <- service: read data response, data_id: 0, status: okay, data: "'Mon Jan 11 17:40:13 2021'"
-The Client received: 'Mon Jan 11 17:40:13 2021'
+
2021-01-12 09:13:30,657: root.socket_protocol.example_client - INFO - prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION
+2021-01-12 09:13:30,657: root.socket_protocol - INFO - prot-client: Initialisation finished.
+2021-01-12 09:13:30,657: root.socket_protocol.example_client - INFO - prot-client: TX -> service: read data request, data_id: asc_time, status: okay, data: "None"
+2021-01-12 09:13:30,708: root.tcp_socket.example_client - INFO - comm-client: Connection established... (to 127.0.0.1:17017)
+2021-01-12 09:13:30,708: root.socket_protocol.example_client - INFO - prot-client: TX -> service: channel name request, data_id: name, status: okay, data: "'example_client'"
+2021-01-12 09:13:30,708: root.tcp_socket.example_client - INFO - comm-client: TX -> "(74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 78 61 6d 70 6c 65 5f 63 6c 69 65 6e 74 22 7d f5 cd dd e7"
+2021-01-12 09:13:30,758: root.tcp_socket.example_client - INFO - comm-client: TX -> "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 45 05 7b b4"
+2021-01-12 09:13:30,759: root.stringtools.stp - INFO - STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f
+2021-01-12 09:13:30,760: root.tcp_socket.example_client - INFO - comm-client: RX  <- "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f"
+2021-01-12 09:13:30,760: root.socket_protocol.example_client - INFO - prot-client: RX <- service: channel name response, data_id: name, status: okay, data: "None"
+2021-01-12 09:13:30,811: root.stringtools.stp - INFO - STP: message identified - (85): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 54 75 65 20 4a 61 6e 20 31 32 20 30 39 3a 31 33 3a 33 30 20 32 30 32 31 22 7d 2b b5 b2 77
+2021-01-12 09:13:30,812: root.tcp_socket.example_client - INFO - comm-client: RX  <- "(85): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 54 75 65 20 4a 61 6e 20 31 32 20 30 39 3a 31 33 3a 33 30 20 32 30 32 31 22 7d 2b b5 b2 77"
+2021-01-12 09:13:30,812: root.socket_protocol.example_client - INFO - prot-client: RX <- service: read data response, data_id: asc_time, status: okay, data: "'Tue Jan 12 09:13:30 2021'"
+The Client received: 'Tue Jan 12 09:13:30 2021'
 
diff --git a/_docs_/searchindex.js b/_docs_/searchindex.js index a6b2ef1..bd0d6ba 100644 --- a/_docs_/searchindex.js +++ b/_docs_/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["index"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["index.rst"],objects:{"":{socket_protocol:[0,0,0,"-"]},"socket_protocol.data_storage":{get_data:[0,4,1,""],get_data_id:[0,4,1,""],get_service_id:[0,4,1,""],get_status:[0,4,1,""]},"socket_protocol.pure_json_protocol":{add_data:[0,4,1,""],add_msg_to_auth_whitelist_:[0,4,1,""],add_service:[0,4,1,""],add_status:[0,4,1,""],authentificate:[0,4,1,""],check_authentification_state:[0,4,1,""],connection_established:[0,4,1,""],is_connected:[0,4,1,""],receive:[0,4,1,""],reconnect:[0,4,1,""],register_callback:[0,4,1,""],send:[0,4,1,""]},socket_protocol:{AUTH_STATE_KEY_TRANSFERRED:[0,1,1,""],AUTH_STATE_SEED_REQUESTED:[0,1,1,""],AUTH_STATE_SEED_TRANSFERRED:[0,1,1,""],AUTH_STATE_TRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE_UNTRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE__NAMES:[0,1,1,""],DID_AUTH_KEY:[0,1,1,""],DID_AUTH_SEED:[0,1,1,""],DID_CHANNEL_NAME:[0,1,1,""],RequestSidExistsError:[0,2,1,""],ResponseSidExistsError:[0,2,1,""],SID_AUTH_REQUEST:[0,1,1,""],SID_AUTH_RESPONSE:[0,1,1,""],SID_CHANNEL_NAME_REQUEST:[0,1,1,""],SID_CHANNEL_NAME_RESPONSE:[0,1,1,""],SID_EXECUTE_REQUEST:[0,1,1,""],SID_EXECUTE_RESPONSE:[0,1,1,""],SID_READ_REQUEST:[0,1,1,""],SID_READ_RESPONSE:[0,1,1,""],SID_WRITE_REQUEST:[0,1,1,""],SID_WRITE_RESPONSE:[0,1,1,""],STATUS_AUTH_REQUIRED:[0,1,1,""],STATUS_BUFFERING_UNHANDLED_REQUEST:[0,1,1,""],STATUS_CALLBACK_ERROR:[0,1,1,""],STATUS_CHECKSUM_ERROR:[0,1,1,""],STATUS_LOG_LVL:[0,1,1,""],STATUS_OKAY:[0,1,1,""],STATUS_OPERATION_NOT_PERMITTED:[0,1,1,""],STATUS_SERVICE_OR_DATA_UNKNOWN:[0,1,1,""],data_storage:[0,3,1,""],pure_json_protocol:[0,3,1,""],struct_json_protocol:[0,3,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","data","Python data"],"2":["py","exception","Python exception"],"3":["py","class","Python class"],"4":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:data","2":"py:exception","3":"py:class","4":"py:method"},terms:{"boolean":0,"class":0,"default":0,"float":0,"function":0,"import":0,"int":0,"new":0,"null":[],"return":0,"true":0,"while":0,Adding:[],IDs:0,NOT:[],The:0,Will:0,__authentificate_check_key__:[],__authentificate_create_key__:[],__authentificate_create_seed__:[],__authentificate_process_feedback__:[],__channel_name_request__:[],__channel_name_response__:[],add:0,add_data:0,add_msg_to_auth_whitelist_:0,add_servic:0,add_statu:0,after:0,alder:0,all:0,all_oth:[],also:0,ani:0,append:0,arg:0,argument:0,asctim:0,auth_state__nam:0,auth_state_key_transf:0,auth_state_seed_request:0,auth_state_seed_transf:0,auth_state_trusted_connect:0,auth_state_untrusted_connect:0,authentif:0,authentification_feedback:0,authetif:0,authitif:0,author:0,auto_auth:0,automat:0,avail:0,been:0,binascii:0,bool:0,both:0,buffer:[],call:0,callback:0,chang:[],channel:0,channel_nam:0,check_authentification_st:0,checksum:0,clean:[],client:0,comm:0,comm_inst:0,commun:0,compat:0,connect:0,connection_establish:0,constant:0,content:0,cound:[],creat:0,data:0,data_id:0,data_storag:0,debug:[],def:0,defin:0,definit:0,depend:0,deprec:0,descript:0,design:0,did:0,did_auth_kei:0,did_auth_se:0,did_channel_nam:0,differ:0,directli:0,dirk:0,disconnect:0,els:0,enabl:0,end:[],error:0,establish:0,exampl:0,example_cli:0,example_serv:0,except:0,exchang:0,execut:0,fals:0,finish:0,first:0,follow:0,further:0,get:0,get_data:0,get_data_id:0,get_service_id:0,get_statu:0,give:0,given:0,had:0,has:0,have:0,here:0,hexlifi:0,hit:0,identifi:0,incl:0,includ:0,incom:[],index:0,info:0,init_channel_nam:0,initi:0,initialis:0,instanc:0,interfac:0,is_client:0,is_connect:0,issu:0,iter:0,jan:0,json:0,kei:0,keyword:0,kwarg:0,least:0,length:0,less:0,level:0,like:0,list:0,log:0,log_name_lvl:0,lost:[],manual:0,mean:0,messag:0,method:0,mirror_callback:[],mockeri:0,modul:0,mon:0,mount:0,msg:0,name:0,need:0,neg:[],none:0,object:0,okai:0,old:0,onli:0,oper:0,optin:0,option:0,order:0,otherwis:0,out:0,output:0,over:0,page:0,paramet:0,parent:0,path:0,pattern:[],permit:0,point:0,previou:0,print:0,prioris:0,process:0,prot:0,pure_json_protocol:0,read:0,read_request:0,read_respons:0,reason:0,receiv:0,recommend:0,reconnect:0,reduc:0,regist:0,register_callback:0,register_connect_callback:0,register_disconnect_callback:0,registr:0,relev:0,report:0,repr:0,req_nam:0,req_sid:0,request:0,requestsidexistserror:0,requir:0,reset:0,resp_nam:0,resp_sid:0,respond:0,respons:0,response_data:0,response_statu:0,responsesidexistserror:0,result:0,root:0,same:0,search:0,secret:0,see:0,seed:0,send:0,sent:0,serivc:0,server:0,servic:0,service_:0,service_id:0,set:0,should:0,sid:0,sid_:0,sid_auth_request:0,sid_auth_respons:0,sid_channel_name_request:0,sid_channel_name_respons:0,sid_execute_request:0,sid_execute_respons:0,sid_read_request:0,sid_read_respons:0,sid_write_request:0,sid_write_respons:0,side:0,sleep:0,specif:0,sta_:0,start:0,state:0,statu:0,status_:0,status_auth_requir:0,status_buffering_unhandled_request:0,status_callback_error:0,status_checksum_error:0,status_log_lvl:0,status_okai:0,status_operation_not_permit:0,status_service_or_data_unknown:0,stdoutloggingconfigur:0,storag:0,store:[],stp:0,stp_state_escape_1:[],stp_state_escape_2:[],stp_state_idl:[],stp_state_store_data:[],str:0,stringtool:0,struct_json_protocol:0,submodul:0,successful:0,sudo:0,support:0,sync:[],sys:0,taken:0,tcp:[],tcp_client_stp:0,tcp_server_stp:0,tcp_socket:0,than:0,thei:0,thi:0,time:0,time_callback:0,timeout:0,timout:0,transfer:0,trust:0,tupl:0,type:0,unhandl:0,unittest:0,unknown:0,unspecif:0,untrust:0,urandom:0,usag:0,use:0,used:0,using:0,valu:0,via:0,wait:0,warn:0,where:0,whitelist:[],write:0,write_request:0,write_respons:0,x01:[],x88j3:[],you:0},titles:["Welcome to socket_protocol\u2019s documentation!"],titleterms:{document:0,indic:0,protocol:0,socket:0,socket_protocol:0,tabl:0,welcom:0}}) \ No newline at end of file +Search.setIndex({docnames:["index"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["index.rst"],objects:{"":{socket_protocol:[0,0,0,"-"]},"socket_protocol.data_storage":{get_data:[0,4,1,""],get_data_id:[0,4,1,""],get_service_id:[0,4,1,""],get_status:[0,4,1,""]},"socket_protocol.pure_json_protocol":{add_data:[0,4,1,""],add_msg_to_auth_whitelist_:[0,4,1,""],add_service:[0,4,1,""],add_status:[0,4,1,""],authentificate:[0,4,1,""],check_authentification_state:[0,4,1,""],connection_established:[0,4,1,""],is_connected:[0,4,1,""],receive:[0,4,1,""],reconnect:[0,4,1,""],register_callback:[0,4,1,""],send:[0,4,1,""]},socket_protocol:{AUTH_STATE_KEY_TRANSFERRED:[0,1,1,""],AUTH_STATE_SEED_REQUESTED:[0,1,1,""],AUTH_STATE_SEED_TRANSFERRED:[0,1,1,""],AUTH_STATE_TRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE_UNTRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE__NAMES:[0,1,1,""],DID_AUTH_KEY:[0,1,1,""],DID_AUTH_SEED:[0,1,1,""],DID_CHANNEL_NAME:[0,1,1,""],RequestSidExistsError:[0,2,1,""],ResponseSidExistsError:[0,2,1,""],SID_AUTH_REQUEST:[0,1,1,""],SID_AUTH_RESPONSE:[0,1,1,""],SID_CHANNEL_NAME_REQUEST:[0,1,1,""],SID_CHANNEL_NAME_RESPONSE:[0,1,1,""],SID_EXECUTE_REQUEST:[0,1,1,""],SID_EXECUTE_RESPONSE:[0,1,1,""],SID_READ_REQUEST:[0,1,1,""],SID_READ_RESPONSE:[0,1,1,""],SID_WRITE_REQUEST:[0,1,1,""],SID_WRITE_RESPONSE:[0,1,1,""],STATUS_AUTH_REQUIRED:[0,1,1,""],STATUS_BUFFERING_UNHANDLED_REQUEST:[0,1,1,""],STATUS_CALLBACK_ERROR:[0,1,1,""],STATUS_CHECKSUM_ERROR:[0,1,1,""],STATUS_LOG_LVL:[0,1,1,""],STATUS_OKAY:[0,1,1,""],STATUS_OPERATION_NOT_PERMITTED:[0,1,1,""],STATUS_SERVICE_OR_DATA_UNKNOWN:[0,1,1,""],data_storage:[0,3,1,""],pure_json_protocol:[0,3,1,""],struct_json_protocol:[0,3,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","data","Python data"],"2":["py","exception","Python exception"],"3":["py","class","Python class"],"4":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:data","2":"py:exception","3":"py:class","4":"py:method"},terms:{"boolean":0,"class":0,"default":0,"float":0,"function":0,"import":0,"int":0,"new":0,"return":0,"true":0,"while":0,IDs:0,The:0,Will:0,__comm_inst__:0,__init__:0,__main__:0,__name__:0,add:0,add_data:0,add_msg_to_auth_whitelist_:0,add_servic:0,add_statu:0,after:0,alder:0,all:0,also:0,ani:0,append:0,arg:0,argument:0,asc_tim:0,asctim:0,auth_state__nam:0,auth_state_key_transf:0,auth_state_seed_request:0,auth_state_seed_transf:0,auth_state_trusted_connect:0,auth_state_untrusted_connect:0,authentif:0,authentification_feedback:0,authetif:0,authitif:0,author:0,auto_auth:0,automat:0,avail:0,been:0,binascii:0,bool:0,both:0,call:0,callback:0,channel:0,channel_nam:0,check_authentification_st:0,checksum:0,client:0,comm:0,comm_inst:0,commun:0,compat:0,connect:0,connection_establish:0,constant:0,content:0,creat:0,data:0,data_id:0,data_storag:0,def:0,defin:0,definit:0,depend:0,deprec:0,descript:0,design:0,did:0,did_asc_tim:0,did_auth_kei:0,did_auth_se:0,did_channel_nam:0,differ:0,directli:0,dirk:0,disconnect:0,els:0,enabl:0,error:0,establish:0,exampl:0,example_cli:0,example_protocol:0,example_serv:0,except:0,exchang:0,execut:0,fals:0,finish:0,first:0,follow:0,from:0,further:0,get:0,get_data:0,get_data_id:0,get_service_id:0,get_statu:0,give:0,given:0,had:0,has:0,have:0,here:0,hexlifi:0,hit:0,identifi:0,incl:0,includ:0,index:0,info:0,init_channel_nam:0,initi:0,initialis:0,instanc:0,interfac:0,is_client:0,is_connect:0,issu:0,iter:0,jan:0,json:0,kei:0,keyword:0,kwarg:0,least:0,length:0,less:0,level:0,like:0,list:0,log:0,log_name_lvl:0,manual:0,mean:0,messag:0,method:0,mockeri:0,modul:0,mon:[],mount:0,msg:0,name:0,need:0,none:0,object:0,okai:0,old:0,onli:0,oper:0,optin:0,option:0,order:0,otherwis:0,out:0,output:0,over:0,page:0,paramet:0,parent:0,path:0,permit:0,point:0,previou:0,print:0,prioris:0,process:0,prot:0,pure_json_protocol:0,read:0,read_request:0,read_respons:0,reason:0,receiv:0,recommend:0,reconnect:0,reduc:0,regist:0,register_callback:0,register_connect_callback:0,register_disconnect_callback:0,registr:0,relev:0,report:0,repr:0,req_nam:0,req_sid:0,request:0,requestsidexistserror:0,requir:0,reset:0,resp_nam:0,resp_sid:0,respond:0,respons:0,response_data:0,response_statu:0,responsesidexistserror:0,result:0,root:0,same:0,search:0,secret:0,see:0,seed:0,self:0,send:0,sent:0,serivc:0,server:0,servic:0,service_:0,service_id:0,set:0,should:0,sid:0,sid_:0,sid_auth_request:0,sid_auth_respons:0,sid_channel_name_request:0,sid_channel_name_respons:0,sid_execute_request:0,sid_execute_respons:0,sid_read_request:0,sid_read_respons:0,sid_write_request:0,sid_write_respons:0,side:0,sleep:0,socket_protocol_serv:0,specif:0,sta_:0,start:0,state:0,statu:0,status_:0,status_auth_requir:0,status_buffering_unhandled_request:0,status_callback_error:0,status_checksum_error:0,status_log_lvl:0,status_okai:0,status_operation_not_permit:0,status_service_or_data_unknown:0,stdoutloggingconfigur:0,storag:0,stp:0,str:0,stringtool:0,struct_json_protocol:0,submodul:0,successful:0,sudo:0,support:0,sys:0,taken:0,tcp_client_stp:0,tcp_server_stp:0,tcp_socket:0,than:0,thei:0,thi:0,time:0,time_callback:0,timeout:0,timout:0,transfer:0,trust:0,tue:0,tupl:0,type:0,unhandl:0,unittest:0,unknown:0,unspecif:0,untrust:0,urandom:0,usag:0,use:0,used:0,using:0,valu:0,via:0,wait:0,warn:0,where:0,write:0,write_request:0,write_respons:0,you:0},titles:["Welcome to socket_protocol\u2019s documentation!"],titleterms:{document:0,indic:0,protocol:0,socket:0,socket_protocol:0,tabl:0,welcom:0}}) \ No newline at end of file diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index 70ac0b8..32332df 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -580,53 +580,33 @@ }, { "coverage_state": "clean", - "end": 269, + "end": 281, "start": 236 }, { "coverage_state": "covered", - "end": 270, - "start": 270 - }, - { - "coverage_state": "clean", - "end": 271, - "start": 271 - }, - { - "coverage_state": "covered", - "end": 275, - "start": 272 - }, - { - "coverage_state": "clean", - "end": 276, - "start": 276 - }, - { - "coverage_state": "covered", - "end": 280, - "start": 277 - }, - { - "coverage_state": "clean", - "end": 281, - "start": 281 - }, - { - "coverage_state": "covered", - "end": 289, + "end": 282, "start": 282 }, { "coverage_state": "clean", - "end": 290, - "start": 290 + "end": 283, + "start": 283 + }, + { + "coverage_state": "covered", + "end": 287, + "start": 284 + }, + { + "coverage_state": "clean", + "end": 288, + "start": 288 }, { "coverage_state": "covered", "end": 292, - "start": 291 + "start": 289 }, { "coverage_state": "clean", @@ -635,68 +615,58 @@ }, { "coverage_state": "covered", - "end": 294, + "end": 301, "start": 294 }, { "coverage_state": "clean", - "end": 295, - "start": 295 + "end": 302, + "start": 302 }, { "coverage_state": "covered", - "end": 308, - "start": 296 + "end": 304, + "start": 303 }, { "coverage_state": "clean", - "end": 309, - "start": 309 + "end": 305, + "start": 305 }, { "coverage_state": "covered", - "end": 315, - "start": 310 + "end": 306, + "start": 306 }, { "coverage_state": "clean", - "end": 316, - "start": 316 + "end": 307, + "start": 307 }, { "coverage_state": "covered", - "end": 319, - "start": 317 - }, - { - "coverage_state": "clean", "end": 320, - "start": 320 + "start": 308 }, { - "coverage_state": "covered", - "end": 325, + "coverage_state": "clean", + "end": 321, "start": 321 }, - { - "coverage_state": "clean", - "end": 326, - "start": 326 - }, { "coverage_state": "covered", - "end": 329, - "start": 327 + "end": 327, + "start": 322 }, { "coverage_state": "clean", - "end": 330, - "start": 330 + "end": 328, + "start": 328 }, { "coverage_state": "covered", "end": 331, - "start": 331 + "start": 329 }, { "coverage_state": "clean", @@ -715,158 +685,168 @@ }, { "coverage_state": "covered", - "end": 340, + "end": 341, "start": 339 }, { "coverage_state": "clean", - "end": 341, - "start": 341 - }, - { - "coverage_state": "covered", - "end": 346, + "end": 342, "start": 342 }, + { + "coverage_state": "covered", + "end": 343, + "start": 343 + }, { "coverage_state": "clean", - "end": 347, - "start": 347 + "end": 344, + "start": 344 }, { "coverage_state": "covered", - "end": 351, - "start": 348 + "end": 349, + "start": 345 }, { "coverage_state": "clean", + "end": 350, + "start": 350 + }, + { + "coverage_state": "covered", "end": 352, - "start": 352 + "start": 351 }, { - "coverage_state": "covered", - "end": 354, + "coverage_state": "clean", + "end": 353, "start": 353 }, - { - "coverage_state": "clean", - "end": 355, - "start": 355 - }, { "coverage_state": "covered", - "end": 360, - "start": 356 + "end": 358, + "start": 354 }, { "coverage_state": "clean", - "end": 361, - "start": 361 + "end": 359, + "start": 359 }, { "coverage_state": "covered", + "end": 363, + "start": 360 + }, + { + "coverage_state": "clean", "end": 364, - "start": 362 + "start": 364 }, { - "coverage_state": "clean", - "end": 365, + "coverage_state": "covered", + "end": 366, "start": 365 }, + { + "coverage_state": "clean", + "end": 367, + "start": 367 + }, { "coverage_state": "covered", - "end": 368, - "start": 366 + "end": 372, + "start": 368 }, { "coverage_state": "clean", - "end": 369, - "start": 369 + "end": 373, + "start": 373 }, { "coverage_state": "covered", - "end": 370, - "start": 370 + "end": 376, + "start": 374 }, { "coverage_state": "clean", - "end": 371, - "start": 371 - }, - { - "coverage_state": "covered", - "end": 374, - "start": 372 - }, - { - "coverage_state": "clean", - "end": 375, - "start": 375 - }, - { - "coverage_state": "covered", "end": 377, - "start": 376 + "start": 377 }, { - "coverage_state": "clean", - "end": 378, + "coverage_state": "covered", + "end": 380, "start": 378 }, + { + "coverage_state": "clean", + "end": 381, + "start": 381 + }, { "coverage_state": "covered", - "end": 385, - "start": 379 + "end": 382, + "start": 382 }, { "coverage_state": "clean", - "end": 386, - "start": 386 + "end": 383, + "start": 383 }, { "coverage_state": "covered", - "end": 392, + "end": 386, + "start": 384 + }, + { + "coverage_state": "clean", + "end": 387, "start": 387 }, - { - "coverage_state": "clean", - "end": 393, - "start": 393 - }, { "coverage_state": "covered", - "end": 395, - "start": 394 + "end": 389, + "start": 388 }, { "coverage_state": "clean", - "end": 396, - "start": 396 + "end": 390, + "start": 390 }, { "coverage_state": "covered", - "end": 401, - "start": 397 + "end": 397, + "start": 391 }, { "coverage_state": "clean", - "end": 402, - "start": 402 + "end": 398, + "start": 398 }, { "coverage_state": "covered", + "end": 404, + "start": 399 + }, + { + "coverage_state": "clean", + "end": 405, + "start": 405 + }, + { + "coverage_state": "covered", + "end": 407, + "start": 406 + }, + { + "coverage_state": "clean", "end": 408, - "start": 403 - }, - { - "coverage_state": "clean", - "end": 409, - "start": 409 + "start": 408 }, { "coverage_state": "covered", "end": 413, - "start": 410 + "start": 409 }, { "coverage_state": "clean", @@ -875,503 +855,503 @@ }, { "coverage_state": "covered", - "end": 421, + "end": 420, "start": 415 }, { "coverage_state": "clean", - "end": 422, + "end": 421, + "start": 421 + }, + { + "coverage_state": "covered", + "end": 425, "start": 422 }, - { - "coverage_state": "covered", - "end": 424, - "start": 423 - }, { "coverage_state": "clean", - "end": 425, - "start": 425 - }, - { - "coverage_state": "covered", - "end": 428, + "end": 426, "start": 426 }, + { + "coverage_state": "covered", + "end": 433, + "start": 427 + }, { "coverage_state": "clean", - "end": 429, - "start": 429 + "end": 434, + "start": 434 }, { "coverage_state": "covered", - "end": 435, - "start": 430 - }, - { - "coverage_state": "clean", "end": 436, - "start": 436 + "start": 435 }, { - "coverage_state": "covered", - "end": 438, + "coverage_state": "clean", + "end": 437, "start": 437 }, + { + "coverage_state": "covered", + "end": 440, + "start": 438 + }, { "coverage_state": "clean", - "end": 447, - "start": 439 + "end": 441, + "start": 441 }, { "coverage_state": "covered", - "end": 451, + "end": 447, + "start": 442 + }, + { + "coverage_state": "clean", + "end": 448, "start": 448 }, - { - "coverage_state": "clean", - "end": 452, - "start": 452 - }, { "coverage_state": "covered", - "end": 455, - "start": 453 + "end": 450, + "start": 449 }, { "coverage_state": "clean", - "end": 456, - "start": 456 + "end": 459, + "start": 451 }, { "coverage_state": "covered", - "end": 461, - "start": 457 + "end": 463, + "start": 460 }, { "coverage_state": "clean", - "end": 462, - "start": 462 - }, - { - "coverage_state": "covered", "end": 464, - "start": 463 + "start": 464 }, { - "coverage_state": "clean", - "end": 466, + "coverage_state": "covered", + "end": 467, "start": 465 }, + { + "coverage_state": "clean", + "end": 468, + "start": 468 + }, { "coverage_state": "covered", - "end": 469, - "start": 467 + "end": 473, + "start": 469 }, { "coverage_state": "clean", - "end": 472, - "start": 470 + "end": 474, + "start": 474 }, { "coverage_state": "covered", "end": 476, - "start": 473 + "start": 475 }, { "coverage_state": "clean", - "end": 477, + "end": 478, "start": 477 }, { "coverage_state": "covered", - "end": 484, - "start": 478 + "end": 481, + "start": 479 }, { "coverage_state": "clean", + "end": 484, + "start": 482 + }, + { + "coverage_state": "covered", "end": 488, "start": 485 }, { - "coverage_state": "covered", - "end": 490, + "coverage_state": "clean", + "end": 489, "start": 489 }, - { - "coverage_state": "clean", - "end": 491, - "start": 491 - }, { "coverage_state": "covered", - "end": 494, - "start": 492 - }, - { - "coverage_state": "uncovered", "end": 496, - "start": 495 + "start": 490 }, { - "coverage_state": "covered", - "end": 498, + "coverage_state": "clean", + "end": 500, "start": 497 }, + { + "coverage_state": "covered", + "end": 502, + "start": 501 + }, { "coverage_state": "clean", - "end": 499, - "start": 499 + "end": 503, + "start": 503 }, { "coverage_state": "covered", - "end": 501, - "start": 500 + "end": 506, + "start": 504 }, { - "coverage_state": "clean", - "end": 505, - "start": 502 - }, - { - "coverage_state": "covered", - "end": 507, - "start": 506 - }, - { - "coverage_state": "clean", + "coverage_state": "uncovered", "end": 508, - "start": 508 + "start": 507 }, { "coverage_state": "covered", - "end": 513, + "end": 510, "start": 509 }, { "coverage_state": "clean", - "end": 514, + "end": 511, + "start": 511 + }, + { + "coverage_state": "covered", + "end": 513, + "start": 512 + }, + { + "coverage_state": "clean", + "end": 517, "start": 514 }, { "coverage_state": "covered", - "end": 515, - "start": 515 - }, - { - "coverage_state": "clean", - "end": 516, - "start": 516 - }, - { - "coverage_state": "covered", - "end": 518, - "start": 517 - }, - { - "coverage_state": "clean", "end": 519, - "start": 519 + "start": 518 }, { - "coverage_state": "covered", - "end": 521, + "coverage_state": "clean", + "end": 520, "start": 520 }, - { - "coverage_state": "clean", - "end": 522, - "start": 522 - }, { "coverage_state": "covered", - "end": 524, - "start": 523 - }, - { - "coverage_state": "clean", "end": 525, - "start": 525 + "start": 521 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 526, "start": 526 }, { - "coverage_state": "clean", - "end": 536, + "coverage_state": "covered", + "end": 527, "start": 527 }, + { + "coverage_state": "clean", + "end": 528, + "start": 528 + }, { "coverage_state": "covered", - "end": 540, + "end": 530, + "start": 529 + }, + { + "coverage_state": "clean", + "end": 531, + "start": 531 + }, + { + "coverage_state": "covered", + "end": 533, + "start": 532 + }, + { + "coverage_state": "clean", + "end": 534, + "start": 534 + }, + { + "coverage_state": "covered", + "end": 536, + "start": 535 + }, + { + "coverage_state": "clean", + "end": 537, "start": 537 }, + { + "coverage_state": "covered", + "end": 538, + "start": 538 + }, { "coverage_state": "clean", - "end": 541, - "start": 541 + "end": 548, + "start": 539 }, { "coverage_state": "covered", - "end": 545, - "start": 542 + "end": 552, + "start": 549 }, { "coverage_state": "clean", - "end": 546, - "start": 546 + "end": 553, + "start": 553 }, { "coverage_state": "covered", - "end": 547, - "start": 547 + "end": 557, + "start": 554 }, { "coverage_state": "clean", - "end": 555, - "start": 548 + "end": 558, + "start": 558 }, { "coverage_state": "covered", "end": 559, - "start": 556 + "start": 559 }, { "coverage_state": "clean", - "end": 560, + "end": 567, "start": 560 }, { "coverage_state": "covered", - "end": 561, - "start": 561 + "end": 571, + "start": 568 }, { "coverage_state": "clean", - "end": 569, - "start": 562 + "end": 572, + "start": 572 }, { "coverage_state": "covered", - "end": 575, - "start": 570 + "end": 573, + "start": 573 }, { "coverage_state": "clean", - "end": 576, - "start": 576 + "end": 581, + "start": 574 }, { "coverage_state": "covered", - "end": 582, - "start": 577 + "end": 587, + "start": 582 }, { "coverage_state": "clean", - "end": 583, - "start": 583 + "end": 588, + "start": 588 }, { "coverage_state": "covered", - "end": 584, - "start": 584 - }, - { - "coverage_state": "clean", - "end": 592, - "start": 585 - }, - { - "coverage_state": "covered", - "end": 593, - "start": 593 - }, - { - "coverage_state": "clean", "end": 594, - "start": 594 + "start": 589 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 595, "start": 595 }, { - "coverage_state": "clean", - "end": 607, + "coverage_state": "covered", + "end": 596, "start": 596 }, + { + "coverage_state": "clean", + "end": 604, + "start": 597 + }, { "coverage_state": "covered", + "end": 605, + "start": 605 + }, + { + "coverage_state": "clean", + "end": 606, + "start": 606 + }, + { + "coverage_state": "covered", + "end": 607, + "start": 607 + }, + { + "coverage_state": "clean", "end": 619, "start": 608 }, { - "coverage_state": "clean", - "end": 620, + "coverage_state": "covered", + "end": 631, "start": 620 }, + { + "coverage_state": "clean", + "end": 632, + "start": 632 + }, { "coverage_state": "covered", - "end": 621, - "start": 621 + "end": 633, + "start": 633 }, { "coverage_state": "clean", - "end": 627, - "start": 622 - }, - { - "coverage_state": "covered", - "end": 628, - "start": 628 - }, - { - "coverage_state": "clean", - "end": 629, - "start": 629 - }, - { - "coverage_state": "covered", - "end": 630, - "start": 630 - }, - { - "coverage_state": "clean", - "end": 636, - "start": 631 - }, - { - "coverage_state": "covered", - "end": 637, - "start": 637 - }, - { - "coverage_state": "clean", - "end": 638, - "start": 638 - }, - { - "coverage_state": "covered", "end": 639, - "start": 639 + "start": 634 }, { - "coverage_state": "clean", - "end": 645, + "coverage_state": "covered", + "end": 640, "start": 640 }, + { + "coverage_state": "clean", + "end": 641, + "start": 641 + }, { "coverage_state": "covered", - "end": 646, - "start": 646 + "end": 642, + "start": 642 }, { "coverage_state": "clean", - "end": 647, - "start": 647 - }, - { - "coverage_state": "covered", "end": 648, - "start": 648 + "start": 643 }, { - "coverage_state": "clean", - "end": 660, + "coverage_state": "covered", + "end": 649, "start": 649 }, + { + "coverage_state": "clean", + "end": 650, + "start": 650 + }, { "coverage_state": "covered", + "end": 651, + "start": 651 + }, + { + "coverage_state": "clean", + "end": 657, + "start": 652 + }, + { + "coverage_state": "covered", + "end": 658, + "start": 658 + }, + { + "coverage_state": "clean", + "end": 659, + "start": 659 + }, + { + "coverage_state": "covered", + "end": 660, + "start": 660 + }, + { + "coverage_state": "clean", "end": 672, "start": 661 }, { - "coverage_state": "clean", - "end": 673, + "coverage_state": "covered", + "end": 684, "start": 673 }, + { + "coverage_state": "clean", + "end": 685, + "start": 685 + }, { "coverage_state": "covered", - "end": 674, - "start": 674 + "end": 686, + "start": 686 }, { "coverage_state": "clean", - "end": 677, - "start": 675 + "end": 689, + "start": 687 }, { "coverage_state": "covered", - "end": 678, - "start": 678 + "end": 690, + "start": 690 }, { "coverage_state": "clean", - "end": 679, - "start": 679 + "end": 691, + "start": 691 }, { "coverage_state": "covered", - "end": 680, - "start": 680 + "end": 692, + "start": 692 }, { "coverage_state": "clean", - "end": 713, - "start": 681 + "end": 725, + "start": 693 }, { "coverage_state": "covered", - "end": 714, - "start": 714 + "end": 726, + "start": 726 }, { "coverage_state": "clean", - "end": 715, - "start": 715 + "end": 727, + "start": 727 }, { "coverage_state": "covered", - "end": 716, - "start": 716 + "end": 728, + "start": 728 }, { "coverage_state": "clean", - "end": 732, - "start": 717 + "end": 744, + "start": 729 }, { "coverage_state": "covered", - "end": 736, - "start": 733 - }, - { - "coverage_state": "clean", - "end": 738, - "start": 737 - }, - { - "coverage_state": "covered", - "end": 740, - "start": 739 - }, - { - "coverage_state": "clean", - "end": 742, - "start": 741 - }, - { - "coverage_state": "covered", - "end": 743, - "start": 743 + "end": 748, + "start": 745 }, { "coverage_state": "clean", "end": 750, - "start": 744 + "start": 749 }, { "coverage_state": "covered", @@ -1380,73 +1360,63 @@ }, { "coverage_state": "clean", - "end": 753, + "end": 754, "start": 753 }, { "coverage_state": "covered", - "end": 757, - "start": 754 + "end": 755, + "start": 755 }, { "coverage_state": "clean", - "end": 758, - "start": 758 + "end": 762, + "start": 756 }, { "coverage_state": "covered", - "end": 760, - "start": 759 + "end": 764, + "start": 763 }, { "coverage_state": "clean", - "end": 761, - "start": 761 + "end": 765, + "start": 765 }, { "coverage_state": "covered", - "end": 766, - "start": 762 + "end": 769, + "start": 766 }, { "coverage_state": "clean", - "end": 767, - "start": 767 - }, - { - "coverage_state": "covered", "end": 770, - "start": 768 + "start": 770 }, { - "coverage_state": "clean", - "end": 771, + "coverage_state": "covered", + "end": 772, "start": 771 }, - { - "coverage_state": "covered", - "end": 776, - "start": 772 - }, { "coverage_state": "clean", - "end": 777, - "start": 777 + "end": 773, + "start": 773 }, { "coverage_state": "covered", - "end": 780, - "start": 778 + "end": 778, + "start": 774 }, { "coverage_state": "clean", - "end": 781, - "start": 781 + "end": 779, + "start": 779 }, { "coverage_state": "covered", "end": 782, - "start": 782 + "start": 780 }, { "coverage_state": "clean", @@ -1455,13 +1425,43 @@ }, { "coverage_state": "covered", - "end": 785, + "end": 788, "start": 784 }, + { + "coverage_state": "clean", + "end": 789, + "start": 789 + }, + { + "coverage_state": "covered", + "end": 792, + "start": 790 + }, + { + "coverage_state": "clean", + "end": 793, + "start": 793 + }, + { + "coverage_state": "covered", + "end": 794, + "start": 794 + }, + { + "coverage_state": "clean", + "end": 795, + "start": 795 + }, + { + "coverage_state": "covered", + "end": 797, + "start": 796 + }, { "coverage_state": "clean", "end": null, - "start": 786 + "start": 798 } ], "line_coverage": 99.49, @@ -1787,7 +1787,7 @@ "Name": "socket_protocol", "State": "Released", "Supported Interpreters": "python2, python3", - "Version": "46c53c04e2e1e8f0bb8c1b51250a9f84" + "Version": "ef6753738744ce1f4abee68df99df35c" }, "testrun_list": [ { @@ -1836,8 +1836,8 @@ "testcases": { "_-UtxUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.38071, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833047, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -1848,20 +1848,20 @@ "message": "_-UtxUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 380.7098865509033, + "msecs": 833.0469131469727, "msg": "_-UtxUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.119937896728516, + "relativeCreated": 61.54584884643555, "testcaseLogger": [ { "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380822, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833147, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -1872,14 +1872,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 380.82194328308105, + "msecs": 833.1470489501953, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.23199462890625, - "thread": 140379336402752, + "relativeCreated": 61.6459846496582, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -1887,8 +1887,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380972, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833307, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1905,8 +1905,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380894, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1916,14 +1916,14 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 380.8939456939697, + "msecs": 833.2281112670898, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.30399703979492, - "thread": 140379336402752, + "relativeCreated": 61.727046966552734, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -1931,8 +1931,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380934, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.83327, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1942,34 +1942,34 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 380.9340000152588, + "msecs": 833.2700729370117, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.344051361083984, - "thread": 140379336402752, + "relativeCreated": 61.76900863647461, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 380.97190856933594, + "msecs": 833.3070278167725, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.38195991516113, - "thread": 140379336402752, + "relativeCreated": 61.80596351623535, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 3.695487976074219e-05 }, { "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381045, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833382, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -1980,14 +1980,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 381.0451030731201, + "msecs": 833.3818912506104, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.45515441894531, - "thread": 140379336402752, + "relativeCreated": 61.88082695007324, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -1995,8 +1995,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381188, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833528, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2013,8 +2013,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.38111, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833452, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2024,14 +2024,14 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 381.10995292663574, + "msecs": 833.4519863128662, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.52000427246094, - "thread": 140379336402752, + "relativeCreated": 61.9509220123291, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2039,8 +2039,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381149, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833491, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2050,35 +2050,35 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 381.1490535736084, + "msecs": 833.4910869598389, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.559104919433594, - "thread": 140379336402752, + "relativeCreated": 61.99002265930176, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 381.18791580200195, + "msecs": 833.5280418395996, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.59796714782715, - "thread": 140379336402752, + "relativeCreated": 62.0269775390625, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 3.695487976074219e-05 }, { "args": [ "'DID'", "" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381337, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833681, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2095,8 +2095,8 @@ "'DID'", "" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381259, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2106,14 +2106,14 @@ "lineno": 22, "message": "Result (Content in message object for data_id): 'DID' ()", "module": "test", - "msecs": 381.2589645385742, + "msecs": 833.6029052734375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.669015884399414, - "thread": 140379336402752, + "relativeCreated": 62.10184097290039, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2122,8 +2122,8 @@ "'DID'", "" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381298, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833643, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2133,39 +2133,39 @@ "lineno": 26, "message": "Expectation (Content in message object for data_id): result = 'DID' ()", "module": "test", - "msecs": 381.2980651855469, + "msecs": 833.6429595947266, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.70811653137207, - "thread": 140379336402752, + "relativeCreated": 62.14189529418945, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 381.33692741394043, + "msecs": 833.6811065673828, "msg": "Content in message object for data_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.746978759765625, - "thread": 140379336402752, + "relativeCreated": 62.1800422668457, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 3.814697265625e-05 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0006270408630371094, - "time_finished": "2021-01-11 11:37:08,381", - "time_start": "2021-01-11 11:37:08,380" + "time_consumption": 0.0006341934204101562, + "time_finished": "2021-01-14 00:25:50,833", + "time_start": "2021-01-14 00:25:50,833" }, "_2pi_8EzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:08,382", - "created": 1610361428.382163, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834522, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2176,18 +2176,18 @@ "message": "_2pi_8EzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 382.16304779052734, + "msecs": 834.522008895874, "msg": "_2pi_8EzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.57309913635254, + "relativeCreated": 63.020944595336914, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.38554, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837899, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2202,8 +2202,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:08,382", - "created": 1610361428.382531, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834916, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2213,22 +2213,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 382.53092765808105, + "msecs": 834.9161148071289, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.94097900390625, - "thread": 140379336402752, + "relativeCreated": 63.4150505065918, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:08,382", - "created": 1610361428.382924, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835339, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2238,22 +2238,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 382.92407989501953, + "msecs": 835.3390693664551, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.33413124084473, - "thread": 140379336402752, + "relativeCreated": 63.83800506591797, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383067, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835421, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2263,39 +2263,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 383.06689262390137, + "msecs": 835.421085357666, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.47694396972656, - "thread": 140379336402752, + "relativeCreated": 63.920021057128906, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383258, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835563, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 383.2581043243408, + "msecs": 835.5629444122314, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.668155670166016, - "thread": 140379336402752, + "relativeCreated": 64.06188011169434, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2304,25 +2304,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383319, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835624, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 383.3189010620117, + "msecs": 835.6239795684814, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.728952407836914, - "thread": 140379336402752, + "relativeCreated": 64.12291526794434, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2330,25 +2330,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383397, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835703, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 383.39710235595703, + "msecs": 835.7028961181641, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.80715370178223, - "thread": 140379336402752, + "relativeCreated": 64.20183181762695, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2356,25 +2356,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383453, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835762, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 383.4528923034668, + "msecs": 835.7620239257812, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.86294364929199, - "thread": 140379336402752, + "relativeCreated": 64.26095962524414, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2382,25 +2382,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383501, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835809, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 383.5010528564453, + "msecs": 835.8089923858643, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.91110420227051, - "thread": 140379336402752, + "relativeCreated": 64.30792808532715, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2408,25 +2408,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383545, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 383.544921875, + "msecs": 835.853099822998, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 38.954973220825195, - "thread": 140379336402752, + "relativeCreated": 64.35203552246094, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2436,8 +2436,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383593, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835903, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2447,14 +2447,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 383.5930824279785, + "msecs": 835.9029293060303, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.00313377380371, - "thread": 140379336402752, + "relativeCreated": 64.40186500549316, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2464,8 +2464,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383644, + "asctime": "2021-01-14 00:25:50,835", + "created": 1610580350.835955, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2475,14 +2475,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 383.64410400390625, + "msecs": 835.9549045562744, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.054155349731445, - "thread": 140379336402752, + "relativeCreated": 64.4538402557373, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2492,8 +2492,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383697, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836003, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2503,14 +2503,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 383.6970329284668, + "msecs": 836.0030651092529, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.10708427429199, - "thread": 140379336402752, + "relativeCreated": 64.50200080871582, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2520,8 +2520,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383755, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836051, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2531,39 +2531,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 383.7549686431885, + "msecs": 836.0509872436523, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.16501998901367, - "thread": 140379336402752, + "relativeCreated": 64.54992294311523, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383814, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836106, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 383.81409645080566, + "msecs": 836.1060619354248, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.22414779663086, - "thread": 140379336402752, + "relativeCreated": 64.6049976348877, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2572,25 +2572,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383881, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836162, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 383.8810920715332, + "msecs": 836.1620903015137, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.2911434173584, - "thread": 140379336402752, + "relativeCreated": 64.66102600097656, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2598,25 +2598,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383941, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836214, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 383.9409351348877, + "msecs": 836.2140655517578, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.35098648071289, - "thread": 140379336402752, + "relativeCreated": 64.7130012512207, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2624,25 +2624,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:08,383", - "created": 1610361428.383999, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.83626, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 383.9991092681885, + "msecs": 836.2600803375244, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.40916061401367, - "thread": 140379336402752, + "relativeCreated": 64.7590160369873, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2652,8 +2652,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384172, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836449, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2663,14 +2663,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 384.1719627380371, + "msecs": 836.4489078521729, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.582014083862305, - "thread": 140379336402752, + "relativeCreated": 64.94784355163574, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2680,8 +2680,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384234, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836518, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2691,14 +2691,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 384.2339515686035, + "msecs": 836.5180492401123, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.64400291442871, - "thread": 140379336402752, + "relativeCreated": 65.0169849395752, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2707,25 +2707,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384305, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836578, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 384.3050003051758, + "msecs": 836.5778923034668, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.71505165100098, - "thread": 140379336402752, + "relativeCreated": 65.07682800292969, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2734,25 +2734,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384359, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836633, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 384.35888290405273, + "msecs": 836.6329669952393, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.76893424987793, - "thread": 140379336402752, + "relativeCreated": 65.13190269470215, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2761,75 +2761,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384411, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836688, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 384.411096572876, + "msecs": 836.6880416870117, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.82114791870117, - "thread": 140379336402752, + "relativeCreated": 65.18697738647461, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384463, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836746, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 384.4630718231201, + "msecs": 836.7459774017334, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.87312316894531, - "thread": 140379336402752, + "relativeCreated": 65.24491310119629, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384584, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836883, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 384.5839500427246, + "msecs": 836.8830680847168, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 39.994001388549805, - "thread": 140379336402752, + "relativeCreated": 65.38200378417969, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2838,25 +2838,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384636, + "asctime": "2021-01-14 00:25:50,836", + "created": 1610580350.836984, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 384.63592529296875, + "msecs": 836.9839191436768, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.045976638793945, - "thread": 140379336402752, + "relativeCreated": 65.48285484313965, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2864,25 +2864,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384698, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837068, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 384.69791412353516, + "msecs": 837.0680809020996, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.10796546936035, - "thread": 140379336402752, + "relativeCreated": 65.5670166015625, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2890,25 +2890,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384768, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837126, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 384.768009185791, + "msecs": 837.1260166168213, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.17806053161621, - "thread": 140379336402752, + "relativeCreated": 65.62495231628418, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2916,25 +2916,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384814, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.83717, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 384.8140239715576, + "msecs": 837.169885635376, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.22407531738281, - "thread": 140379336402752, + "relativeCreated": 65.66882133483887, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2942,25 +2942,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384856, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837217, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 384.8559856414795, + "msecs": 837.2170925140381, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.26603698730469, - "thread": 140379336402752, + "relativeCreated": 65.71602821350098, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2970,8 +2970,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384901, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837263, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2981,14 +2981,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 384.9010467529297, + "msecs": 837.2631072998047, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.31109809875488, - "thread": 140379336402752, + "relativeCreated": 65.76204299926758, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -2998,8 +2998,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384949, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.83731, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3009,14 +3009,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 384.9489688873291, + "msecs": 837.3100757598877, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.3590202331543, - "thread": 140379336402752, + "relativeCreated": 65.80901145935059, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3026,8 +3026,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:08,384", - "created": 1610361428.384999, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837357, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3037,14 +3037,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 384.99903678894043, + "msecs": 837.3570442199707, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.409088134765625, - "thread": 140379336402752, + "relativeCreated": 65.8559799194336, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3054,8 +3054,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385045, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837402, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3065,39 +3065,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 385.04505157470703, + "msecs": 837.4021053314209, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.45510292053223, - "thread": 140379336402752, + "relativeCreated": 65.90104103088379, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385086, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837446, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 385.0860595703125, + "msecs": 837.4459743499756, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.496110916137695, - "thread": 140379336402752, + "relativeCreated": 65.94491004943848, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3106,25 +3106,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385135, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837495, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 385.1349353790283, + "msecs": 837.4950885772705, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.544986724853516, - "thread": 140379336402752, + "relativeCreated": 65.9940242767334, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3132,25 +3132,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385185, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837543, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 385.18500328063965, + "msecs": 837.5430107116699, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.595054626464844, - "thread": 140379336402752, + "relativeCreated": 66.04194641113281, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3158,25 +3158,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385228, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837586, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 385.22791862487793, + "msecs": 837.5859260559082, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.637969970703125, - "thread": 140379336402752, + "relativeCreated": 66.0848617553711, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3186,8 +3186,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385273, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837635, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3197,14 +3197,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 385.2729797363281, + "msecs": 837.6350402832031, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.68303108215332, - "thread": 140379336402752, + "relativeCreated": 66.13397598266602, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3214,8 +3214,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385319, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837681, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3225,14 +3225,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 385.3189945220947, + "msecs": 837.6810550689697, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.72904586791992, - "thread": 140379336402752, + "relativeCreated": 66.17999076843262, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3241,25 +3241,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385365, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837726, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 385.3650093078613, + "msecs": 837.7261161804199, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.77506065368652, - "thread": 140379336402752, + "relativeCreated": 66.22505187988281, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3268,25 +3268,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385406, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.83777, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 385.4060173034668, + "msecs": 837.7699851989746, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.81606864929199, - "thread": 140379336402752, + "relativeCreated": 66.2689208984375, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3295,68 +3295,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385447, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837811, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 385.44702529907227, + "msecs": 837.8109931945801, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.85707664489746, - "thread": 140379336402752, + "relativeCreated": 66.30992889404297, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385495, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.837856, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 385.4949474334717, + "msecs": 837.8560543060303, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.904998779296875, - "thread": 140379336402752, + "relativeCreated": 66.35499000549316, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 385.5400085449219, + "msecs": 837.8989696502686, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 40.95005989074707, - "thread": 140379336402752, + "relativeCreated": 66.39790534973145, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 4.291534423828125e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:08,728", - "created": 1610361428.728964, + "asctime": "2021-01-14 00:25:51,181", + "created": 1610580351.18137, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3371,8 +3371,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385625, + "asctime": "2021-01-14 00:25:50,837", + "created": 1610580350.83799, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3382,22 +3382,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 385.62488555908203, + "msecs": 837.9900455474854, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.03493690490723, - "thread": 140379336402752, + "relativeCreated": 66.48898124694824, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385672, + "asctime": "2021-01-14 00:25:50,838", + "created": 1610580350.838037, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3407,39 +3407,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 385.67209243774414, + "msecs": 838.0370140075684, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.082143783569336, - "thread": 140379336402752, + "relativeCreated": 66.53594970703125, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385724, + "asctime": "2021-01-14 00:25:50,838", + "created": 1610580350.838085, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 385.7240676879883, + "msecs": 838.0849361419678, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.13411903381348, - "thread": 140379336402752, + "relativeCreated": 66.58387184143066, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3450,33 +3450,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385801, + "asctime": "2021-01-14 00:25:50,838", + "created": 1610580350.838167, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 385.8010768890381, + "msecs": 838.1669521331787, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.21112823486328, - "thread": 140379336402752, + "relativeCreated": 66.6658878326416, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:08,385", - "created": 1610361428.385949, + "asctime": "2021-01-14 00:25:50,838", + "created": 1610580350.838324, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3486,22 +3486,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 385.94889640808105, + "msecs": 838.3240699768066, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.35894775390625, - "thread": 140379336402752, + "relativeCreated": 66.82300567626953, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386004, + "asctime": "2021-01-14 00:25:50,838", + "created": 1610580350.838378, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3511,39 +3511,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 386.0039710998535, + "msecs": 838.3779525756836, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.41402244567871, - "thread": 140379336402752, + "relativeCreated": 66.87688827514648, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386051, + "asctime": "2021-01-14 00:25:50,838", + "created": 1610580350.838425, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 386.0509395599365, + "msecs": 838.4249210357666, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.46099090576172, - "thread": 140379336402752, + "relativeCreated": 66.92385673522949, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -3551,8 +3551,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.38639, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839194, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3562,14 +3562,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 386.38997077941895, + "msecs": 839.1940593719482, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.80002212524414, - "thread": 140379315107584, + "relativeCreated": 67.69299507141113, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3577,8 +3577,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386518, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839348, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3588,14 +3588,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 386.5180015563965, + "msecs": 839.3480777740479, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.92805290222168, - "thread": 140379315107584, + "relativeCreated": 67.84701347351074, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3603,8 +3603,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386586, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839417, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3614,14 +3614,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 386.58595085144043, + "msecs": 839.4169807434082, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 41.996002197265625, - "thread": 140379315107584, + "relativeCreated": 67.9159164428711, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3630,8 +3630,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386654, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839476, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3641,14 +3641,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 386.6539001464844, + "msecs": 839.4761085510254, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.06395149230957, - "thread": 140379315107584, + "relativeCreated": 67.97504425048828, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3656,8 +3656,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386738, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839547, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3667,14 +3667,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 386.7380619049072, + "msecs": 839.5469188690186, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.14811325073242, - "thread": 140379315107584, + "relativeCreated": 68.04585456848145, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3683,8 +3683,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386801, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3694,14 +3694,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 386.80100440979004, + "msecs": 839.5979404449463, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.211055755615234, - "thread": 140379315107584, + "relativeCreated": 68.09687614440918, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3709,8 +3709,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386923, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839669, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3720,14 +3720,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 386.92307472229004, + "msecs": 839.6689891815186, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.333126068115234, - "thread": 140379315107584, + "relativeCreated": 68.16792488098145, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3736,8 +3736,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,386", - "created": 1610361428.386996, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839723, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3747,14 +3747,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 386.9960308074951, + "msecs": 839.7231101989746, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.40608215332031, - "thread": 140379315107584, + "relativeCreated": 68.2220458984375, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3762,8 +3762,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387088, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839783, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3773,14 +3773,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 387.0880603790283, + "msecs": 839.7829532623291, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.498111724853516, - "thread": 140379315107584, + "relativeCreated": 68.28188896179199, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3789,8 +3789,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387159, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.83983, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3800,14 +3800,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 387.1591091156006, + "msecs": 839.8299217224121, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.56916046142578, - "thread": 140379315107584, + "relativeCreated": 68.328857421875, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3815,8 +3815,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387267, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839897, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3826,14 +3826,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 387.2671127319336, + "msecs": 839.8969173431396, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.67716407775879, - "thread": 140379315107584, + "relativeCreated": 68.39585304260254, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3842,8 +3842,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387338, + "asctime": "2021-01-14 00:25:50,839", + "created": 1610580350.839948, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3853,14 +3853,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 387.33792304992676, + "msecs": 839.9479389190674, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.74797439575195, - "thread": 140379315107584, + "relativeCreated": 68.44687461853027, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3868,8 +3868,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387447, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.840022, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3879,14 +3879,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 387.4471187591553, + "msecs": 840.022087097168, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.85717010498047, - "thread": 140379315107584, + "relativeCreated": 68.52102279663086, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3894,8 +3894,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387544, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.84008, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3905,14 +3905,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 387.5439167022705, + "msecs": 840.0800228118896, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 42.9539680480957, - "thread": 140379315107584, + "relativeCreated": 68.57895851135254, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3920,8 +3920,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387602, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.840135, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3931,14 +3931,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 387.6020908355713, + "msecs": 840.1350975036621, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 43.012142181396484, - "thread": 140379315107584, + "relativeCreated": 68.634033203125, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3947,8 +3947,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387654, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.840183, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3958,14 +3958,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 387.65406608581543, + "msecs": 840.1830196380615, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 43.064117431640625, - "thread": 140379315107584, + "relativeCreated": 68.68195533752441, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -3973,8 +3973,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387753, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.840283, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -3984,14 +3984,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 387.7530097961426, + "msecs": 840.2829170227051, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 43.16306114196777, - "thread": 140379315107584, + "relativeCreated": 68.78185272216797, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4002,25 +4002,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387886, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.840414, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 387.88604736328125, + "msecs": 840.4140472412109, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 43.296098709106445, - "thread": 140379315107584, + "relativeCreated": 68.91298294067383, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4028,25 +4028,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:08,387", - "created": 1610361428.387955, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.84048, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 387.9549503326416, + "msecs": 840.4800891876221, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 43.3650016784668, - "thread": 140379315107584, + "relativeCreated": 68.97902488708496, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4057,25 +4057,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:08,388", - "created": 1610361428.388049, + "asctime": "2021-01-14 00:25:50,840", + "created": 1610580350.840566, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 388.0488872528076, + "msecs": 840.5659198760986, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 43.45893859863281, - "thread": 140379315107584, + "relativeCreated": 69.06485557556152, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4083,8 +4083,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:08,391", - "created": 1610361428.391783, + "asctime": "2021-01-14 00:25:50,842", + "created": 1610580350.842749, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4094,14 +4094,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 391.7829990386963, + "msecs": 842.7491188049316, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 47.193050384521484, - "thread": 140379306714880, + "relativeCreated": 71.24805450439453, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4109,8 +4109,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:08,392", - "created": 1610361428.39206, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843082, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4120,14 +4120,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 392.0600414276123, + "msecs": 843.0819511413574, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 47.4700927734375, - "thread": 140379306714880, + "relativeCreated": 71.58088684082031, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4135,8 +4135,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,392", - "created": 1610361428.392219, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843214, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4146,14 +4146,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 392.21906661987305, + "msecs": 843.2140350341797, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 47.62911796569824, - "thread": 140379306714880, + "relativeCreated": 71.71297073364258, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4162,8 +4162,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:08,392", - "created": 1610361428.392517, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843296, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4173,14 +4173,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 392.51708984375, + "msecs": 843.2960510253906, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 47.927141189575195, - "thread": 140379306714880, + "relativeCreated": 71.79498672485352, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4188,8 +4188,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,392", - "created": 1610361428.392838, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843404, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4199,14 +4199,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 392.8380012512207, + "msecs": 843.4040546417236, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.2480525970459, - "thread": 140379306714880, + "relativeCreated": 71.90299034118652, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4215,8 +4215,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,392", - "created": 1610361428.392925, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843487, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4226,14 +4226,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 392.9250240325928, + "msecs": 843.487024307251, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.33507537841797, - "thread": 140379306714880, + "relativeCreated": 71.98596000671387, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4241,8 +4241,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393075, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843607, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4252,14 +4252,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 393.07498931884766, + "msecs": 843.6069488525391, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.48504066467285, - "thread": 140379306714880, + "relativeCreated": 72.10588455200195, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4268,8 +4268,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.39315, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843699, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4279,14 +4279,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 393.15009117126465, + "msecs": 843.6989784240723, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.560142517089844, - "thread": 140379306714880, + "relativeCreated": 72.19791412353516, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4294,8 +4294,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393212, + "asctime": "2021-01-14 00:25:50,843", + "created": 1610580350.843848, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4305,14 +4305,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 393.21208000183105, + "msecs": 843.8479900360107, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.62213134765625, - "thread": 140379306714880, + "relativeCreated": 72.34692573547363, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4321,8 +4321,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393314, + "asctime": "2021-01-14 00:25:50,844", + "created": 1610580350.844233, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4332,14 +4332,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 393.3138847351074, + "msecs": 844.2330360412598, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.72393608093262, - "thread": 140379306714880, + "relativeCreated": 72.73197174072266, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4347,8 +4347,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393399, + "asctime": "2021-01-14 00:25:50,844", + "created": 1610580350.844504, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4358,14 +4358,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 393.3990001678467, + "msecs": 844.5041179656982, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.809051513671875, - "thread": 140379306714880, + "relativeCreated": 73.00305366516113, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4374,8 +4374,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393456, + "asctime": "2021-01-14 00:25:50,844", + "created": 1610580350.844729, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4385,14 +4385,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 393.45598220825195, + "msecs": 844.728946685791, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 48.86603355407715, - "thread": 140379306714880, + "relativeCreated": 73.2278823852539, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4400,8 +4400,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393599, + "asctime": "2021-01-14 00:25:50,845", + "created": 1610580350.84509, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4411,14 +4411,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 393.5990333557129, + "msecs": 845.0899124145508, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 49.009084701538086, - "thread": 140379306714880, + "relativeCreated": 73.58884811401367, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4426,8 +4426,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393689, + "asctime": "2021-01-14 00:25:50,845", + "created": 1610580350.8455, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4437,14 +4437,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 393.6889171600342, + "msecs": 845.4999923706055, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 49.098968505859375, - "thread": 140379306714880, + "relativeCreated": 73.99892807006836, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4452,8 +4452,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.39378, + "asctime": "2021-01-14 00:25:50,845", + "created": 1610580350.845794, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4463,14 +4463,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 393.779993057251, + "msecs": 845.7939624786377, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 49.19004440307617, - "thread": 140379306714880, + "relativeCreated": 74.29289817810059, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4479,8 +4479,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393862, + "asctime": "2021-01-14 00:25:50,846", + "created": 1610580350.846016, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4490,14 +4490,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 393.8620090484619, + "msecs": 846.0159301757812, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 49.27206039428711, - "thread": 140379306714880, + "relativeCreated": 74.51486587524414, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4505,8 +4505,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:08,393", - "created": 1610361428.393999, + "asctime": "2021-01-14 00:25:50,846", + "created": 1610580350.846217, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4516,14 +4516,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 393.9990997314453, + "msecs": 846.2169170379639, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 49.40915107727051, - "thread": 140379306714880, + "relativeCreated": 74.71585273742676, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4534,25 +4534,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:08,394", - "created": 1610361428.3943, + "asctime": "2021-01-14 00:25:50,846", + "created": 1610580350.846433, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 394.2999839782715, + "msecs": 846.4329242706299, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 49.71003532409668, - "thread": 140379306714880, + "relativeCreated": 74.93185997009277, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -4560,43 +4560,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:08,394", - "created": 1610361428.394403, + "asctime": "2021-01-14 00:25:50,846", + "created": 1610580350.846537, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 394.40298080444336, + "msecs": 846.5371131896973, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 49.813032150268555, - "thread": 140379306714880, + "relativeCreated": 75.03604888916016, + "thread": 140019675506432, "threadName": "Thread-2" } ], - "msecs": 728.96409034729, + "msecs": 181.37001991271973, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 384.37414169311523, - "thread": 140379336402752, + "relativeCreated": 409.8689556121826, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3345611095428467 + "time_consumption": 0.33483290672302246 }, { "args": [], - "asctime": "2021-01-11 11:37:08,930", - "created": 1610361428.930757, + "asctime": "2021-01-14 00:25:51,383", + "created": 1610580351.383412, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -4615,25 +4615,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:08,729", - "created": 1610361428.729577, + "asctime": "2021-01-14 00:25:51,182", + "created": 1610580351.182075, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 729.5770645141602, + "msecs": 182.07502365112305, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 384.98711585998535, - "thread": 140379336402752, + "relativeCreated": 410.57395935058594, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -4641,8 +4641,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:08,753", - "created": 1610361428.753625, + "asctime": "2021-01-14 00:25:51,206", + "created": 1610580351.206276, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4652,14 +4652,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 753.6249160766602, + "msecs": 206.27593994140625, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 409.03496742248535, - "thread": 140379315107584, + "relativeCreated": 434.77487564086914, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4667,8 +4667,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:08,754", - "created": 1610361428.754244, + "asctime": "2021-01-14 00:25:51,206", + "created": 1610580351.206809, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4678,14 +4678,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 754.2440891265869, + "msecs": 206.80904388427734, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 409.6541404724121, - "thread": 140379315107584, + "relativeCreated": 435.30797958374023, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4693,8 +4693,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,754", - "created": 1610361428.754468, + "asctime": "2021-01-14 00:25:51,207", + "created": 1610580351.207023, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4704,14 +4704,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 754.4679641723633, + "msecs": 207.02290534973145, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 409.8780155181885, - "thread": 140379315107584, + "relativeCreated": 435.52184104919434, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4720,8 +4720,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:08,754", - "created": 1610361428.754669, + "asctime": "2021-01-14 00:25:51,207", + "created": 1610580351.207213, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4731,14 +4731,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 754.6689510345459, + "msecs": 207.2129249572754, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 410.0790023803711, - "thread": 140379315107584, + "relativeCreated": 435.7118606567383, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4746,8 +4746,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,754", - "created": 1610361428.754882, + "asctime": "2021-01-14 00:25:51,207", + "created": 1610580351.207429, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4757,14 +4757,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 754.8820972442627, + "msecs": 207.4289321899414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 410.2921485900879, - "thread": 140379315107584, + "relativeCreated": 435.9278678894043, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4773,8 +4773,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,755", - "created": 1610361428.755044, + "asctime": "2021-01-14 00:25:51,207", + "created": 1610580351.207606, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4784,14 +4784,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.0439834594727, + "msecs": 207.60607719421387, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 410.45403480529785, - "thread": 140379315107584, + "relativeCreated": 436.10501289367676, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4799,8 +4799,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,755", - "created": 1610361428.755272, + "asctime": "2021-01-14 00:25:51,207", + "created": 1610580351.207832, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4810,14 +4810,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.2719116210938, + "msecs": 207.83209800720215, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 410.68196296691895, - "thread": 140379315107584, + "relativeCreated": 436.33103370666504, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4826,8 +4826,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,755", - "created": 1610361428.755429, + "asctime": "2021-01-14 00:25:51,207", + "created": 1610580351.207989, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4837,14 +4837,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.4290294647217, + "msecs": 207.98897743225098, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 410.8390808105469, - "thread": 140379315107584, + "relativeCreated": 436.48791313171387, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4852,8 +4852,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,755", - "created": 1610361428.755644, + "asctime": "2021-01-14 00:25:51,208", + "created": 1610580351.208195, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4863,14 +4863,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.6440830230713, + "msecs": 208.19497108459473, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 411.0541343688965, - "thread": 140379315107584, + "relativeCreated": 436.6939067840576, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4879,8 +4879,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,755", - "created": 1610361428.7558, + "asctime": "2021-01-14 00:25:51,208", + "created": 1610580351.208368, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4890,14 +4890,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.8000087738037, + "msecs": 208.36806297302246, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 411.2100601196289, - "thread": 140379315107584, + "relativeCreated": 436.86699867248535, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4905,8 +4905,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:08,756", - "created": 1610361428.756166, + "asctime": "2021-01-14 00:25:51,208", + "created": 1610580351.208735, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4916,14 +4916,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 756.1659812927246, + "msecs": 208.73498916625977, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 411.5760326385498, - "thread": 140379315107584, + "relativeCreated": 437.23392486572266, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4931,8 +4931,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:08,756", - "created": 1610361428.756424, + "asctime": "2021-01-14 00:25:51,208", + "created": 1610580351.208993, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4942,14 +4942,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 756.4239501953125, + "msecs": 208.99295806884766, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 411.8340015411377, - "thread": 140379315107584, + "relativeCreated": 437.49189376831055, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4957,8 +4957,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,756", - "created": 1610361428.75667, + "asctime": "2021-01-14 00:25:51,209", + "created": 1610580351.209261, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4968,14 +4968,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 756.6699981689453, + "msecs": 209.2609405517578, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 412.0800495147705, - "thread": 140379315107584, + "relativeCreated": 437.7598762512207, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -4984,8 +4984,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,756", - "created": 1610361428.756868, + "asctime": "2021-01-14 00:25:51,209", + "created": 1610580351.209424, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4995,14 +4995,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 756.8678855895996, + "msecs": 209.42401885986328, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 412.2779369354248, - "thread": 140379315107584, + "relativeCreated": 437.9229545593262, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -5010,8 +5010,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,757", - "created": 1610361428.757056, + "asctime": "2021-01-14 00:25:51,209", + "created": 1610580351.209632, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5021,14 +5021,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 757.0559978485107, + "msecs": 209.63191986083984, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 412.46604919433594, - "thread": 140379315107584, + "relativeCreated": 438.13085556030273, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -5037,8 +5037,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:08,757", - "created": 1610361428.75721, + "asctime": "2021-01-14 00:25:51,209", + "created": 1610580351.209788, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5048,14 +5048,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 757.2100162506104, + "msecs": 209.78808403015137, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 412.62006759643555, - "thread": 140379315107584, + "relativeCreated": 438.28701972961426, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -5063,8 +5063,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" ], - "asctime": "2021-01-11 11:37:08,757", - "created": 1610361428.757616, + "asctime": "2021-01-14 00:25:51,210", + "created": 1610580351.210177, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5074,14 +5074,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", "module": "stp", - "msecs": 757.6160430908203, + "msecs": 210.17694473266602, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 413.0260944366455, - "thread": 140379315107584, + "relativeCreated": 438.6758804321289, + "thread": 140019683899136, "threadName": "Thread-1" }, { @@ -5092,71 +5092,71 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:08,758", - "created": 1610361428.75803, + "asctime": "2021-01-14 00:25:51,210", + "created": 1610580351.210591, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 758.0299377441406, + "msecs": 210.59107780456543, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 413.4399890899658, - "thread": 140379315107584, + "relativeCreated": 439.0900135040283, + "thread": 140019683899136, "threadName": "Thread-1" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:08,758", - "created": 1610361428.758292, + "asctime": "2021-01-14 00:25:51,210", + "created": 1610580351.210866, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 758.2919597625732, + "msecs": 210.86597442626953, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 413.70201110839844, - "thread": 140379315107584, + "relativeCreated": 439.3649101257324, + "thread": 140019683899136, "threadName": "Thread-1" } ], - "msecs": 930.7570457458496, + "msecs": 383.4118843078613, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 586.1670970916748, - "thread": 140379336402752, + "relativeCreated": 611.9108200073242, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.17246508598327637 + "time_consumption": 0.1725459098815918 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:08,931", - "created": 1610361428.931651, + "asctime": "2021-01-14 00:25:51,384", + "created": 1610580351.384365, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5173,8 +5173,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:08,931", - "created": 1610361428.931262, + "asctime": "2021-01-14 00:25:51,383", + "created": 1610580351.383964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5184,14 +5184,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 931.2620162963867, + "msecs": 383.96406173706055, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 586.6720676422119, - "thread": 140379336402752, + "relativeCreated": 612.4629974365234, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -5200,8 +5200,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:08,931", - "created": 1610361428.931467, + "asctime": "2021-01-14 00:25:51,384", + "created": 1610580351.384174, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5211,35 +5211,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 931.4670562744141, + "msecs": 384.174108505249, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 586.8771076202393, - "thread": 140379336402752, + "relativeCreated": 612.6730442047119, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 931.6511154174805, + "msecs": 384.3650817871094, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 587.0611667633057, - "thread": 140379336402752, + "relativeCreated": 612.8640174865723, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018405914306640625 + "time_consumption": 0.00019097328186035156 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:08,932", - "created": 1610361428.932277, + "asctime": "2021-01-14 00:25:51,385", + "created": 1610580351.385008, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5256,8 +5256,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:08,931", - "created": 1610361428.931926, + "asctime": "2021-01-14 00:25:51,384", + "created": 1610580351.384647, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5267,14 +5267,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 931.9260120391846, + "msecs": 384.6468925476074, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 587.3360633850098, - "thread": 140379336402752, + "relativeCreated": 613.1458282470703, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -5283,8 +5283,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:08,932", - "created": 1610361428.932101, + "asctime": "2021-01-14 00:25:51,384", + "created": 1610580351.384828, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5294,32 +5294,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 932.1010112762451, + "msecs": 384.8280906677246, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 587.5110626220703, - "thread": 140379336402752, + "relativeCreated": 613.3270263671875, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 932.2769641876221, + "msecs": 385.0080966949463, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 587.6870155334473, - "thread": 140379336402752, + "relativeCreated": 613.5070323944092, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017595291137695312 + "time_consumption": 0.0001800060272216797 }, { "args": [], - "asctime": "2021-01-11 11:37:09,133", - "created": 1610361429.133803, + "asctime": "2021-01-14 00:25:51,586", + "created": 1610580351.58658, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -5338,25 +5338,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:08,932", - "created": 1610361428.932665, + "asctime": "2021-01-14 00:25:51,385", + "created": 1610580351.385434, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 932.6651096343994, + "msecs": 385.4339122772217, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 588.0751609802246, - "thread": 140379336402752, + "relativeCreated": 613.9328479766846, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -5364,8 +5364,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:08,960", - "created": 1610361428.960728, + "asctime": "2021-01-14 00:25:51,412", + "created": 1610580351.412666, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5375,14 +5375,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 960.7279300689697, + "msecs": 412.66608238220215, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 616.1379814147949, - "thread": 140379306714880, + "relativeCreated": 641.165018081665, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5390,8 +5390,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:08,961", - "created": 1610361428.961476, + "asctime": "2021-01-14 00:25:51,413", + "created": 1610580351.41332, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5401,14 +5401,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 961.4760875701904, + "msecs": 413.32006454467773, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 616.8861389160156, - "thread": 140379306714880, + "relativeCreated": 641.8190002441406, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5416,8 +5416,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,961", - "created": 1610361428.961766, + "asctime": "2021-01-14 00:25:51,413", + "created": 1610580351.413571, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5427,14 +5427,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 961.7660045623779, + "msecs": 413.5708808898926, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 617.1760559082031, - "thread": 140379306714880, + "relativeCreated": 642.0698165893555, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5443,8 +5443,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:08,962", - "created": 1610361428.962014, + "asctime": "2021-01-14 00:25:51,413", + "created": 1610580351.413793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5454,14 +5454,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 962.0139598846436, + "msecs": 413.79308700561523, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 617.4240112304688, - "thread": 140379306714880, + "relativeCreated": 642.2920227050781, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5469,8 +5469,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,962", - "created": 1610361428.962336, + "asctime": "2021-01-14 00:25:51,414", + "created": 1610580351.414061, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5480,14 +5480,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 962.3360633850098, + "msecs": 414.0610694885254, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 617.746114730835, - "thread": 140379306714880, + "relativeCreated": 642.5600051879883, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5496,8 +5496,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,962", - "created": 1610361428.962586, + "asctime": "2021-01-14 00:25:51,414", + "created": 1610580351.414287, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5507,14 +5507,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 962.5859260559082, + "msecs": 414.2870903015137, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 617.9959774017334, - "thread": 140379306714880, + "relativeCreated": 642.7860260009766, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5522,8 +5522,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,962", - "created": 1610361428.962949, + "asctime": "2021-01-14 00:25:51,414", + "created": 1610580351.414581, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5533,14 +5533,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 962.9490375518799, + "msecs": 414.5810604095459, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 618.3590888977051, - "thread": 140379306714880, + "relativeCreated": 643.0799961090088, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5549,8 +5549,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,963", - "created": 1610361428.963183, + "asctime": "2021-01-14 00:25:51,414", + "created": 1610580351.414782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5560,14 +5560,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 963.1829261779785, + "msecs": 414.7820472717285, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 618.5929775238037, - "thread": 140379306714880, + "relativeCreated": 643.2809829711914, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5575,8 +5575,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,963", - "created": 1610361428.9635, + "asctime": "2021-01-14 00:25:51,415", + "created": 1610580351.415071, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5586,14 +5586,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 963.5000228881836, + "msecs": 415.0710105895996, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 618.9100742340088, - "thread": 140379306714880, + "relativeCreated": 643.5699462890625, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5602,8 +5602,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,963", - "created": 1610361428.963744, + "asctime": "2021-01-14 00:25:51,415", + "created": 1610580351.415245, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5613,14 +5613,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 963.7439250946045, + "msecs": 415.24505615234375, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 619.1539764404297, - "thread": 140379306714880, + "relativeCreated": 643.7439918518066, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5628,8 +5628,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:08,964", - "created": 1610361428.964325, + "asctime": "2021-01-14 00:25:51,415", + "created": 1610580351.415613, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5639,14 +5639,14 @@ "lineno": 284, "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 964.324951171875, + "msecs": 415.61293601989746, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 619.7350025177002, - "thread": 140379306714880, + "relativeCreated": 644.1118717193604, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5654,8 +5654,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:08,964", - "created": 1610361428.964654, + "asctime": "2021-01-14 00:25:51,415", + "created": 1610580351.415871, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5665,14 +5665,14 @@ "lineno": 414, "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 964.6539688110352, + "msecs": 415.87090492248535, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 620.0640201568604, - "thread": 140379306714880, + "relativeCreated": 644.3698406219482, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5680,8 +5680,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,964", - "created": 1610361428.964807, + "asctime": "2021-01-14 00:25:51,416", + "created": 1610580351.416108, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5691,14 +5691,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 964.8070335388184, + "msecs": 416.1078929901123, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 620.2170848846436, - "thread": 140379306714880, + "relativeCreated": 644.6068286895752, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5707,8 +5707,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:08,964", - "created": 1610361428.964896, + "asctime": "2021-01-14 00:25:51,416", + "created": 1610580351.416266, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5718,14 +5718,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 964.8959636688232, + "msecs": 416.26596450805664, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 620.3060150146484, - "thread": 140379306714880, + "relativeCreated": 644.7649002075195, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5733,8 +5733,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:08,965", - "created": 1610361428.965005, + "asctime": "2021-01-14 00:25:51,416", + "created": 1610580351.416462, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5744,14 +5744,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 965.0049209594727, + "msecs": 416.4619445800781, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 620.4149723052979, - "thread": 140379306714880, + "relativeCreated": 644.960880279541, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5760,8 +5760,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:08,965", - "created": 1610361428.965088, + "asctime": "2021-01-14 00:25:51,416", + "created": 1610580351.416617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5771,14 +5771,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 965.087890625, + "msecs": 416.61691665649414, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 620.4979419708252, - "thread": 140379306714880, + "relativeCreated": 645.115852355957, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5786,8 +5786,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" ], - "asctime": "2021-01-11 11:37:08,965", - "created": 1610361428.965308, + "asctime": "2021-01-14 00:25:51,417", + "created": 1610580351.417033, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5797,14 +5797,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", "module": "stp", - "msecs": 965.3079509735107, + "msecs": 417.03295707702637, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 620.7180023193359, - "thread": 140379306714880, + "relativeCreated": 645.5318927764893, + "thread": 140019675506432, "threadName": "Thread-2" }, { @@ -5815,71 +5815,71 @@ "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:08,965", - "created": 1610361428.96554, + "asctime": "2021-01-14 00:25:51,417", + "created": 1610580351.417561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 965.5399322509766, + "msecs": 417.5610542297363, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 620.9499835968018, - "thread": 140379306714880, + "relativeCreated": 646.0599899291992, + "thread": 140019675506432, "threadName": "Thread-2" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:08,965", - "created": 1610361428.96568, + "asctime": "2021-01-14 00:25:51,417", + "created": 1610580351.417873, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 965.6798839569092, + "msecs": 417.8729057312012, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 621.0899353027344, - "thread": 140379306714880, + "relativeCreated": 646.3718414306641, + "thread": 140019675506432, "threadName": "Thread-2" } ], - "msecs": 133.8028907775879, + "msecs": 586.5800380706787, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 789.2129421234131, - "thread": 140379336402752, + "relativeCreated": 815.0789737701416, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.1681230068206787 + "time_consumption": 0.16870713233947754 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:09,134", - "created": 1610361429.134713, + "asctime": "2021-01-14 00:25:51,587", + "created": 1610580351.587519, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5896,8 +5896,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:09,134", - "created": 1610361429.134328, + "asctime": "2021-01-14 00:25:51,587", + "created": 1610580351.58712, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5907,14 +5907,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 134.32788848876953, + "msecs": 587.1200561523438, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 789.7379398345947, - "thread": 140379336402752, + "relativeCreated": 815.6189918518066, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -5923,8 +5923,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:09,134", - "created": 1610361429.13453, + "asctime": "2021-01-14 00:25:51,587", + "created": 1610580351.587323, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5934,35 +5934,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 134.53006744384766, + "msecs": 587.3229503631592, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 789.9401187896729, - "thread": 140379336402752, + "relativeCreated": 815.8218860626221, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 134.71293449401855, + "msecs": 587.5189304351807, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 790.1229858398438, - "thread": 140379336402752, + "relativeCreated": 816.0178661346436, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018286705017089844 + "time_consumption": 0.00019598007202148438 }, { "args": [ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:09,135", - "created": 1610361429.135354, + "asctime": "2021-01-14 00:25:51,588", + "created": 1610580351.588174, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5979,8 +5979,8 @@ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:09,134", - "created": 1610361429.134998, + "asctime": "2021-01-14 00:25:51,587", + "created": 1610580351.587814, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5990,14 +5990,14 @@ "lineno": 22, "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", "module": "test", - "msecs": 134.99808311462402, + "msecs": 587.8140926361084, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 790.4081344604492, - "thread": 140379336402752, + "relativeCreated": 816.3130283355713, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6006,8 +6006,8 @@ "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:09,135", - "created": 1610361429.135177, + "asctime": "2021-01-14 00:25:51,587", + "created": 1610580351.587994, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6017,39 +6017,39 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 135.1768970489502, + "msecs": 587.9940986633301, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 790.5869483947754, - "thread": 140379336402752, + "relativeCreated": 816.493034362793, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 135.35404205322266, + "msecs": 588.1741046905518, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 790.7640933990479, - "thread": 140379336402752, + "relativeCreated": 816.6730403900146, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017714500427246094 + "time_consumption": 0.0001800060272216797 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.7531909942626953, - "time_finished": "2021-01-11 11:37:09,135", - "time_start": "2021-01-11 11:37:08,382" + "time_consumption": 0.7536520957946777, + "time_finished": "2021-01-14 00:25:51,588", + "time_start": "2021-01-14 00:25:50,834" }, "_4w4SsE1DEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:11,065", - "created": 1610361431.065443, + "asctime": "2021-01-14 00:25:53,629", + "created": 1610580353.629331, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6060,18 +6060,18 @@ "message": "_4w4SsE1DEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 65.44303894042969, + "msecs": 629.331111907959, "msg": "_4w4SsE1DEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2720.853090286255, + "relativeCreated": 2857.830047607422, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:11,073", - "created": 1610361431.073354, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637979, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6086,8 +6086,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:11,066", - "created": 1610361431.066525, + "asctime": "2021-01-14 00:25:53,630", + "created": 1610580353.630463, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6097,22 +6097,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 66.52498245239258, + "msecs": 630.4628849029541, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2721.935033798218, - "thread": 140379336402752, + "relativeCreated": 2858.961820602417, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:11,067", - "created": 1610361431.067183, + "asctime": "2021-01-14 00:25:53,631", + "created": 1610580353.631562, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6122,22 +6122,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 67.18301773071289, + "msecs": 631.5619945526123, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2722.593069076538, - "thread": 140379336402752, + "relativeCreated": 2860.060930252075, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:11,067", - "created": 1610361431.067391, + "asctime": "2021-01-14 00:25:53,631", + "created": 1610580353.631939, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6147,39 +6147,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 67.39091873168945, + "msecs": 631.9389343261719, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2722.8009700775146, - "thread": 140379336402752, + "relativeCreated": 2860.4378700256348, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:11,067", - "created": 1610361431.067769, + "asctime": "2021-01-14 00:25:53,632", + "created": 1610580353.632674, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 67.76905059814453, + "msecs": 632.673978805542, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2723.1791019439697, - "thread": 140379336402752, + "relativeCreated": 2861.172914505005, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6188,25 +6188,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:11,067", - "created": 1610361431.0679, + "asctime": "2021-01-14 00:25:53,632", + "created": 1610580353.632912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 67.89994239807129, + "msecs": 632.9119205474854, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2723.3099937438965, - "thread": 140379336402752, + "relativeCreated": 2861.4108562469482, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6214,25 +6214,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.068052, + "asctime": "2021-01-14 00:25:53,633", + "created": 1610580353.633211, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 68.05205345153809, + "msecs": 633.2108974456787, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2723.4621047973633, - "thread": 140379336402752, + "relativeCreated": 2861.7098331451416, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6240,25 +6240,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.068177, + "asctime": "2021-01-14 00:25:53,633", + "created": 1610580353.633488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 68.1769847869873, + "msecs": 633.4879398345947, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2723.5870361328125, - "thread": 140379336402752, + "relativeCreated": 2861.9868755340576, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6266,25 +6266,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.068288, + "asctime": "2021-01-14 00:25:53,633", + "created": 1610580353.633779, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 68.28808784484863, + "msecs": 633.7790489196777, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2723.698139190674, - "thread": 140379336402752, + "relativeCreated": 2862.2779846191406, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6292,25 +6292,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.068416, + "asctime": "2021-01-14 00:25:53,633", + "created": 1610580353.633999, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 68.41611862182617, + "msecs": 633.9991092681885, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2723.8261699676514, - "thread": 140379336402752, + "relativeCreated": 2862.4980449676514, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6320,8 +6320,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.068537, + "asctime": "2021-01-14 00:25:53,634", + "created": 1610580353.634258, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6331,14 +6331,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 68.53699684143066, + "msecs": 634.2580318450928, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2723.947048187256, - "thread": 140379336402752, + "relativeCreated": 2862.7569675445557, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6348,8 +6348,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.06866, + "asctime": "2021-01-14 00:25:53,634", + "created": 1610580353.634452, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6359,14 +6359,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 68.66002082824707, + "msecs": 634.4521045684814, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2724.0700721740723, - "thread": 140379336402752, + "relativeCreated": 2862.9510402679443, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6376,8 +6376,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.0688, + "asctime": "2021-01-14 00:25:53,634", + "created": 1610580353.634663, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6387,14 +6387,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 68.79997253417969, + "msecs": 634.6631050109863, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2724.210023880005, - "thread": 140379336402752, + "relativeCreated": 2863.162040710449, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6404,8 +6404,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:11,068", - "created": 1610361431.068938, + "asctime": "2021-01-14 00:25:53,634", + "created": 1610580353.634885, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6415,39 +6415,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 68.93801689147949, + "msecs": 634.8850727081299, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2724.3480682373047, - "thread": 140379336402752, + "relativeCreated": 2863.384008407593, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.069065, + "asctime": "2021-01-14 00:25:53,635", + "created": 1610580353.635107, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 69.06509399414062, + "msecs": 635.1070404052734, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2724.475145339966, - "thread": 140379336402752, + "relativeCreated": 2863.6059761047363, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6456,25 +6456,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.069209, + "asctime": "2021-01-14 00:25:53,635", + "created": 1610580353.635347, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 69.20909881591797, + "msecs": 635.3468894958496, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2724.619150161743, - "thread": 140379336402752, + "relativeCreated": 2863.8458251953125, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6482,25 +6482,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.069342, + "asctime": "2021-01-14 00:25:53,635", + "created": 1610580353.635642, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 69.34189796447754, + "msecs": 635.6420516967773, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2724.7519493103027, - "thread": 140379336402752, + "relativeCreated": 2864.1409873962402, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6508,25 +6508,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.069468, + "asctime": "2021-01-14 00:25:53,635", + "created": 1610580353.635889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 69.46802139282227, + "msecs": 635.8890533447266, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2724.8780727386475, - "thread": 140379336402752, + "relativeCreated": 2864.3879890441895, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6536,8 +6536,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.069602, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636144, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6547,14 +6547,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 69.60201263427734, + "msecs": 636.1439228057861, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2725.0120639801025, - "thread": 140379336402752, + "relativeCreated": 2864.642858505249, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6564,8 +6564,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.069738, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636333, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6575,14 +6575,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 69.73791122436523, + "msecs": 636.3329887390137, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2725.1479625701904, - "thread": 140379336402752, + "relativeCreated": 2864.8319244384766, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6591,25 +6591,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.06986, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636388, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 69.85998153686523, + "msecs": 636.3880634307861, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2725.2700328826904, - "thread": 140379336402752, + "relativeCreated": 2864.886999130249, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6618,25 +6618,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:11,069", - "created": 1610361431.069971, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636441, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 69.97108459472656, + "msecs": 636.4409923553467, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2725.3811359405518, - "thread": 140379336402752, + "relativeCreated": 2864.9399280548096, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6645,75 +6645,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:11,070", - "created": 1610361431.070092, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.63649, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 70.09196281433105, + "msecs": 636.4901065826416, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2725.5020141601562, - "thread": 140379336402752, + "relativeCreated": 2864.9890422821045, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:11,070", - "created": 1610361431.070208, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636541, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 70.20807266235352, + "msecs": 636.5408897399902, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2725.6181240081787, - "thread": 140379336402752, + "relativeCreated": 2865.039825439453, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:11,070", - "created": 1610361431.070535, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636667, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 70.53494453430176, + "msecs": 636.667013168335, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2725.944995880127, - "thread": 140379336402752, + "relativeCreated": 2865.165948867798, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6722,25 +6722,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:11,070", - "created": 1610361431.070665, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636725, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 70.66488265991211, + "msecs": 636.7249488830566, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.0749340057373, - "thread": 140379336402752, + "relativeCreated": 2865.2238845825195, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6748,25 +6748,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:11,070", - "created": 1610361431.070812, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636795, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 70.81198692321777, + "msecs": 636.7950439453125, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.222038269043, - "thread": 140379336402752, + "relativeCreated": 2865.2939796447754, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6774,25 +6774,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:11,070", - "created": 1610361431.070925, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636849, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 70.92499732971191, + "msecs": 636.8489265441895, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.335048675537, - "thread": 140379336402752, + "relativeCreated": 2865.3478622436523, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6800,25 +6800,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071033, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 71.03300094604492, + "msecs": 636.8980407714844, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.44305229187, - "thread": 140379336402752, + "relativeCreated": 2865.3969764709473, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6826,25 +6826,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071144, + "asctime": "2021-01-14 00:25:53,636", + "created": 1610580353.636955, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 71.14410400390625, + "msecs": 636.9550228118896, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.5541553497314, - "thread": 140379336402752, + "relativeCreated": 2865.4539585113525, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6854,8 +6854,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.07126, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637008, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6865,14 +6865,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 71.25997543334961, + "msecs": 637.0079517364502, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.670026779175, - "thread": 140379336402752, + "relativeCreated": 2865.506887435913, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6882,8 +6882,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071378, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637063, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6893,14 +6893,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 71.37799263000488, + "msecs": 637.0630264282227, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.78804397583, - "thread": 140379336402752, + "relativeCreated": 2865.5619621276855, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6910,8 +6910,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071493, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637127, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6921,14 +6921,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 71.49291038513184, + "msecs": 637.1269226074219, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2726.902961730957, - "thread": 140379336402752, + "relativeCreated": 2865.6258583068848, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6938,8 +6938,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071617, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637186, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6949,39 +6949,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 71.61688804626465, + "msecs": 637.1860504150391, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2727.02693939209, - "thread": 140379336402752, + "relativeCreated": 2865.684986114502, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071722, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 71.72203063964844, + "msecs": 637.2349262237549, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2727.1320819854736, - "thread": 140379336402752, + "relativeCreated": 2865.733861923218, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -6990,25 +6990,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071848, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637292, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 71.84791564941406, + "msecs": 637.2919082641602, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2727.2579669952393, - "thread": 140379336402752, + "relativeCreated": 2865.790843963623, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7016,25 +7016,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:11,071", - "created": 1610361431.071976, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637354, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 71.9759464263916, + "msecs": 637.3538970947266, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2727.385997772217, - "thread": 140379336402752, + "relativeCreated": 2865.8528327941895, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7042,25 +7042,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:11,072", - "created": 1610361431.072084, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637408, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 72.08395004272461, + "msecs": 637.4080181121826, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2727.49400138855, - "thread": 140379336402752, + "relativeCreated": 2865.9069538116455, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7070,8 +7070,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:11,072", - "created": 1610361431.072499, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.63765, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7081,14 +7081,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 72.49903678894043, + "msecs": 637.6500129699707, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2727.9090881347656, - "thread": 140379336402752, + "relativeCreated": 2866.1489486694336, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7098,8 +7098,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:11,072", - "created": 1610361431.072636, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637714, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7109,14 +7109,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 72.63588905334473, + "msecs": 637.7139091491699, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2728.04594039917, - "thread": 140379336402752, + "relativeCreated": 2866.212844848633, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7125,25 +7125,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:11,072", - "created": 1610361431.07278, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.63777, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 72.77989387512207, + "msecs": 637.7699375152588, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2728.1899452209473, - "thread": 140379336402752, + "relativeCreated": 2866.2688732147217, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7152,25 +7152,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:11,072", - "created": 1610361431.072904, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 72.90410995483398, + "msecs": 637.8250122070312, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2728.314161300659, - "thread": 140379336402752, + "relativeCreated": 2866.323947906494, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7179,68 +7179,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:11,073", - "created": 1610361431.073041, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637875, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 73.04096221923828, + "msecs": 637.8750801086426, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2728.4510135650635, - "thread": 140379336402752, + "relativeCreated": 2866.3740158081055, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:11,073", - "created": 1610361431.073258, + "asctime": "2021-01-14 00:25:53,637", + "created": 1610580353.637926, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 73.2579231262207, + "msecs": 637.9261016845703, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2728.667974472046, - "thread": 140379336402752, + "relativeCreated": 2866.425037384033, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 73.35400581359863, + "msecs": 637.9790306091309, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2728.764057159424, - "thread": 140379336402752, + "relativeCreated": 2866.4779663085938, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 9.608268737792969e-05 + "time_consumption": 5.2928924560546875e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:11,417", - "created": 1610361431.417729, + "asctime": "2021-01-14 00:25:53,981", + "created": 1610580353.98135, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7255,8 +7255,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:11,073", - "created": 1610361431.073544, + "asctime": "2021-01-14 00:25:53,638", + "created": 1610580353.638081, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7266,22 +7266,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 73.54402542114258, + "msecs": 638.0810737609863, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2728.954076766968, - "thread": 140379336402752, + "relativeCreated": 2866.580009460449, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:11,073", - "created": 1610361431.073641, + "asctime": "2021-01-14 00:25:53,638", + "created": 1610580353.638127, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7291,39 +7291,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 73.64106178283691, + "msecs": 638.1270885467529, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2729.051113128662, - "thread": 140379336402752, + "relativeCreated": 2866.626024246216, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:11,073", - "created": 1610361431.073734, + "asctime": "2021-01-14 00:25:53,638", + "created": 1610580353.638178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 73.73404502868652, + "msecs": 638.1781101226807, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2729.1440963745117, - "thread": 140379336402752, + "relativeCreated": 2866.6770458221436, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7334,33 +7334,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,073", - "created": 1610361431.073887, + "asctime": "2021-01-14 00:25:53,638", + "created": 1610580353.638257, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 73.88710975646973, + "msecs": 638.2570266723633, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2729.297161102295, - "thread": 140379336402752, + "relativeCreated": 2866.755962371826, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:11,074", - "created": 1610361431.07417, + "asctime": "2021-01-14 00:25:53,638", + "created": 1610580353.638409, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7370,22 +7370,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 74.17011260986328, + "msecs": 638.408899307251, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2729.5801639556885, - "thread": 140379336402752, + "relativeCreated": 2866.907835006714, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:11,074", - "created": 1610361431.074306, + "asctime": "2021-01-14 00:25:53,638", + "created": 1610580353.63846, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7395,39 +7395,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 74.30601119995117, + "msecs": 638.4599208831787, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2729.7160625457764, - "thread": 140379336402752, + "relativeCreated": 2866.9588565826416, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:11,074", - "created": 1610361431.074442, + "asctime": "2021-01-14 00:25:53,638", + "created": 1610580353.63851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 74.44190979003906, + "msecs": 638.50998878479, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2729.8519611358643, - "thread": 140379336402752, + "relativeCreated": 2867.008924484253, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -7435,8 +7435,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077386, + "asctime": "2021-01-14 00:25:53,640", + "created": 1610580353.640483, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7446,14 +7446,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 77.38590240478516, + "msecs": 640.4829025268555, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2732.7959537506104, - "thread": 140378925692672, + "relativeCreated": 2868.9818382263184, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7461,8 +7461,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077572, + "asctime": "2021-01-14 00:25:53,640", + "created": 1610580353.64064, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7472,14 +7472,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 77.57210731506348, + "msecs": 640.6400203704834, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2732.9821586608887, - "thread": 140378925692672, + "relativeCreated": 2869.1389560699463, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7487,8 +7487,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077646, + "asctime": "2021-01-14 00:25:53,640", + "created": 1610580353.640706, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7498,14 +7498,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 77.64601707458496, + "msecs": 640.7060623168945, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.05606842041, - "thread": 140378925692672, + "relativeCreated": 2869.2049980163574, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7514,8 +7514,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077703, + "asctime": "2021-01-14 00:25:53,640", + "created": 1610580353.640763, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7525,14 +7525,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 77.70299911499023, + "msecs": 640.7630443572998, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.1130504608154, - "thread": 140378925692672, + "relativeCreated": 2869.2619800567627, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7540,8 +7540,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077772, + "asctime": "2021-01-14 00:25:53,640", + "created": 1610580353.640834, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7551,14 +7551,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 77.77190208435059, + "msecs": 640.8340930938721, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.181953430176, - "thread": 140378925692672, + "relativeCreated": 2869.333028793335, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7567,8 +7567,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077822, + "asctime": "2021-01-14 00:25:53,640", + "created": 1610580353.640885, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7578,14 +7578,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 77.82196998596191, + "msecs": 640.8851146697998, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.232021331787, - "thread": 140378925692672, + "relativeCreated": 2869.3840503692627, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7593,8 +7593,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077889, + "asctime": "2021-01-14 00:25:53,640", + "created": 1610580353.640952, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7604,14 +7604,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 77.88896560668945, + "msecs": 640.9521102905273, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.2990169525146, - "thread": 140378925692672, + "relativeCreated": 2869.4510459899902, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7620,8 +7620,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077937, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641001, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7631,14 +7631,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 77.93688774108887, + "msecs": 641.0009860992432, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.346939086914, - "thread": 140378925692672, + "relativeCreated": 2869.499921798706, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7646,8 +7646,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,077", - "created": 1610361431.077999, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641064, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7657,14 +7657,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 77.99911499023438, + "msecs": 641.063928604126, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.4091663360596, - "thread": 140378925692672, + "relativeCreated": 2869.562864303589, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7673,8 +7673,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078054, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641126, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7684,14 +7684,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 78.05395126342773, + "msecs": 641.1259174346924, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.464002609253, - "thread": 140378925692672, + "relativeCreated": 2869.6248531341553, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7699,8 +7699,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078119, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641197, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7710,14 +7710,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 78.11903953552246, + "msecs": 641.1969661712646, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.5290908813477, - "thread": 140378925692672, + "relativeCreated": 2869.6959018707275, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7726,8 +7726,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078169, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641248, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7737,14 +7737,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 78.16910743713379, + "msecs": 641.2479877471924, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.579158782959, - "thread": 140378925692672, + "relativeCreated": 2869.7469234466553, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7752,8 +7752,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078243, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641321, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7763,14 +7763,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 78.24301719665527, + "msecs": 641.3209438323975, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.6530685424805, - "thread": 140378925692672, + "relativeCreated": 2869.8198795318604, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7778,8 +7778,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078304, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641384, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7789,14 +7789,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 78.30405235290527, + "msecs": 641.3838863372803, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.7141036987305, - "thread": 140378925692672, + "relativeCreated": 2869.882822036743, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7804,8 +7804,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078359, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641439, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7815,14 +7815,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 78.35888862609863, + "msecs": 641.4389610290527, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.768939971924, - "thread": 140378925692672, + "relativeCreated": 2869.9378967285156, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7831,8 +7831,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078406, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641487, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7842,14 +7842,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 78.40609550476074, + "msecs": 641.4868831634521, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.816146850586, - "thread": 140378925692672, + "relativeCreated": 2869.985818862915, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7857,8 +7857,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078508, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.64159, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7868,14 +7868,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 78.50790023803711, + "msecs": 641.5901184082031, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2733.9179515838623, - "thread": 140378925692672, + "relativeCreated": 2870.089054107666, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7886,25 +7886,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078637, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641722, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 78.63688468933105, + "msecs": 641.7219638824463, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2734.0469360351562, - "thread": 140378925692672, + "relativeCreated": 2870.220899581909, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7912,25 +7912,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078692, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641788, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 78.69195938110352, + "msecs": 641.7880058288574, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2734.1020107269287, - "thread": 140378925692672, + "relativeCreated": 2870.2869415283203, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7941,25 +7941,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,078", - "created": 1610361431.078762, + "asctime": "2021-01-14 00:25:53,641", + "created": 1610580353.641871, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 78.76205444335938, + "msecs": 641.8709754943848, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2734.1721057891846, - "thread": 140378925692672, + "relativeCreated": 2870.3699111938477, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -7967,8 +7967,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:11,085", - "created": 1610361431.085466, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.648537, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7978,14 +7978,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 85.46590805053711, + "msecs": 648.5369205474854, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2740.8759593963623, - "thread": 140378917299968, + "relativeCreated": 2877.0358562469482, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -7993,8 +7993,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:11,085", - "created": 1610361431.085617, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.648661, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8004,14 +8004,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 85.6170654296875, + "msecs": 648.6608982086182, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.0271167755127, - "thread": 140378917299968, + "relativeCreated": 2877.159833908081, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8019,8 +8019,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,085", - "created": 1610361431.085689, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.648714, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8030,14 +8030,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 85.68906784057617, + "msecs": 648.7140655517578, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.0991191864014, - "thread": 140378917299968, + "relativeCreated": 2877.2130012512207, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8046,8 +8046,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:11,085", - "created": 1610361431.085762, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.648764, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8057,14 +8057,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 85.76202392578125, + "msecs": 648.76389503479, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.1720752716064, - "thread": 140378917299968, + "relativeCreated": 2877.262830734253, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8072,8 +8072,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,085", - "created": 1610361431.085869, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.64883, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8083,14 +8083,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 85.86907386779785, + "msecs": 648.8299369812012, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.279125213623, - "thread": 140378917299968, + "relativeCreated": 2877.328872680664, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8099,8 +8099,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,085", - "created": 1610361431.085922, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.648879, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8110,14 +8110,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 85.9220027923584, + "msecs": 648.8790512084961, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.3320541381836, - "thread": 140378917299968, + "relativeCreated": 2877.377986907959, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8125,8 +8125,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,085", - "created": 1610361431.08599, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.648946, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8136,14 +8136,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 85.98995208740234, + "msecs": 648.9460468292236, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.4000034332275, - "thread": 140378917299968, + "relativeCreated": 2877.4449825286865, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8152,8 +8152,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086039, + "asctime": "2021-01-14 00:25:53,648", + "created": 1610580353.648994, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8163,14 +8163,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 86.03906631469727, + "msecs": 648.993968963623, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.4491176605225, - "thread": 140378917299968, + "relativeCreated": 2877.492904663086, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8178,8 +8178,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086098, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649053, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8189,14 +8189,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 86.09795570373535, + "msecs": 649.0530967712402, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.5080070495605, - "thread": 140378917299968, + "relativeCreated": 2877.552032470703, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8205,8 +8205,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086177, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649104, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8216,14 +8216,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 86.17711067199707, + "msecs": 649.104118347168, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.5871620178223, - "thread": 140378917299968, + "relativeCreated": 2877.603054046631, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8231,8 +8231,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086245, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649222, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8242,14 +8242,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 86.24505996704102, + "msecs": 649.2218971252441, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.655111312866, - "thread": 140378917299968, + "relativeCreated": 2877.720832824707, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8258,8 +8258,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086296, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649351, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8269,14 +8269,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 86.29608154296875, + "msecs": 649.3508815765381, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.706132888794, - "thread": 140378917299968, + "relativeCreated": 2877.849817276001, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8284,8 +8284,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.08637, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649471, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8295,14 +8295,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 86.36999130249023, + "msecs": 649.4710445404053, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.7800426483154, - "thread": 140378917299968, + "relativeCreated": 2877.969980239868, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8310,8 +8310,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.08643, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649567, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8321,14 +8321,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 86.43007278442383, + "msecs": 649.5668888092041, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.840124130249, - "thread": 140378917299968, + "relativeCreated": 2878.065824508667, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8336,8 +8336,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086484, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.64965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8347,14 +8347,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 86.48395538330078, + "msecs": 649.6500968933105, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.894006729126, - "thread": 140378917299968, + "relativeCreated": 2878.1490325927734, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8363,8 +8363,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086531, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649723, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8374,14 +8374,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 86.53092384338379, + "msecs": 649.7230529785156, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2741.940975189209, - "thread": 140378917299968, + "relativeCreated": 2878.2219886779785, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8389,8 +8389,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.08663, + "asctime": "2021-01-14 00:25:53,649", + "created": 1610580353.649875, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8400,14 +8400,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 86.63010597229004, + "msecs": 649.8749256134033, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2742.0401573181152, - "thread": 140378917299968, + "relativeCreated": 2878.373861312866, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8418,25 +8418,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086745, + "asctime": "2021-01-14 00:25:53,650", + "created": 1610580353.650069, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 86.74502372741699, + "msecs": 650.068998336792, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2742.155075073242, - "thread": 140378917299968, + "relativeCreated": 2878.567934036255, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -8444,43 +8444,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:11,086", - "created": 1610361431.086814, + "asctime": "2021-01-14 00:25:53,650", + "created": 1610580353.650187, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 86.81392669677734, + "msecs": 650.1870155334473, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2742.2239780426025, - "thread": 140378917299968, + "relativeCreated": 2878.68595123291, + "thread": 140019280897792, "threadName": "Thread-8" } ], - "msecs": 417.7289009094238, + "msecs": 981.3499450683594, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3073.138952255249, - "thread": 140379336402752, + "relativeCreated": 3209.8488807678223, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3309149742126465 + "time_consumption": 0.3311629295349121 }, { "args": [], - "asctime": "2021-01-11 11:37:11,418", - "created": 1610361431.418267, + "asctime": "2021-01-14 00:25:53,981", + "created": 1610580353.981922, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8491,14 +8491,14 @@ "message": "Identical secrets set and automatic authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 418.26701164245605, + "msecs": 981.921911239624, "msg": "Identical secrets set and automatic authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3073.6770629882812, - "thread": 140379336402752, + "relativeCreated": 3210.420846939087, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -8507,8 +8507,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,418", - "created": 1610361431.418968, + "asctime": "2021-01-14 00:25:53,982", + "created": 1610580353.982609, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8525,8 +8525,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,418", - "created": 1610361431.418597, + "asctime": "2021-01-14 00:25:53,982", + "created": 1610580353.982233, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8536,14 +8536,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 418.5969829559326, + "msecs": 982.2330474853516, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3074.007034301758, - "thread": 140379336402752, + "relativeCreated": 3210.7319831848145, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -8552,8 +8552,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,418", - "created": 1610361431.41879, + "asctime": "2021-01-14 00:25:53,982", + "created": 1610580353.982422, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8563,35 +8563,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 418.7901020050049, + "msecs": 982.4221134185791, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3074.20015335083, - "thread": 140379336402752, + "relativeCreated": 3210.921049118042, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 418.96796226501465, + "msecs": 982.6090335845947, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3074.37801361084, - "thread": 140379336402752, + "relativeCreated": 3211.1079692840576, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017786026000976562 + "time_consumption": 0.000186920166015625 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:11,419", - "created": 1610361431.419585, + "asctime": "2021-01-14 00:25:53,983", + "created": 1610580353.983389, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8608,8 +8608,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,419", - "created": 1610361431.419234, + "asctime": "2021-01-14 00:25:53,982", + "created": 1610580353.982891, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8619,14 +8619,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 419.234037399292, + "msecs": 982.8910827636719, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3074.644088745117, - "thread": 140379336402752, + "relativeCreated": 3211.3900184631348, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -8635,8 +8635,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,419", - "created": 1610361431.419394, + "asctime": "2021-01-14 00:25:53,983", + "created": 1610580353.98314, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8646,32 +8646,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 419.39401626586914, + "msecs": 983.1399917602539, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3074.8040676116943, - "thread": 140379336402752, + "relativeCreated": 3211.638927459717, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 419.5849895477295, + "msecs": 983.3889007568359, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3074.9950408935547, - "thread": 140379336402752, + "relativeCreated": 3211.887836456299, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00019097328186035156 + "time_consumption": 0.00024890899658203125 }, { "args": [], - "asctime": "2021-01-11 11:37:13,771", - "created": 1610361433.771839, + "asctime": "2021-01-14 00:25:56,336", + "created": 1610580356.336123, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8686,8 +8686,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:11,419", - "created": 1610361431.419904, + "asctime": "2021-01-14 00:25:53,983", + "created": 1610580353.983802, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8697,47 +8697,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 419.9039936065674, + "msecs": 983.802080154419, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3075.3140449523926, - "thread": 140379336402752, + "relativeCreated": 3212.301015853882, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:11,420", - "created": 1610361431.420212, + "asctime": "2021-01-14 00:25:53,984", + "created": 1610580353.984121, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 420.2120304107666, + "msecs": 984.1210842132568, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3075.622081756592, - "thread": 140379336402752, + "relativeCreated": 3212.6200199127197, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:11,420", - "created": 1610361431.420396, + "asctime": "2021-01-14 00:25:53,984", + "created": 1610580353.984396, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8747,47 +8747,47 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 420.396089553833, + "msecs": 984.3959808349609, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3075.806140899658, - "thread": 140379336402752, + "relativeCreated": 3212.894916534424, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:11,420", - "created": 1610361431.420587, + "asctime": "2021-01-14 00:25:53,984", + "created": 1610580353.984659, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 420.58706283569336, + "msecs": 984.65895652771, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3075.9971141815186, - "thread": 140379336402752, + "relativeCreated": 3213.157892227173, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:11,420", - "created": 1610361431.420803, + "asctime": "2021-01-14 00:25:53,985", + "created": 1610580353.985026, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8797,22 +8797,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 420.8030700683594, + "msecs": 985.0258827209473, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3076.2131214141846, - "thread": 140379336402752, + "relativeCreated": 3213.52481842041, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:11,420", - "created": 1610361431.420975, + "asctime": "2021-01-14 00:25:53,985", + "created": 1610580353.985245, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8822,39 +8822,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 420.9749698638916, + "msecs": 985.2449893951416, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3076.385021209717, - "thread": 140379336402752, + "relativeCreated": 3213.7439250946045, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:11,421", - "created": 1610361431.421145, + "asctime": "2021-01-14 00:25:53,985", + "created": 1610580353.985422, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 421.144962310791, + "msecs": 985.421895980835, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3076.555013656616, - "thread": 140379336402752, + "relativeCreated": 3213.920831680298, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -8865,25 +8865,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,421", - "created": 1610361431.421437, + "asctime": "2021-01-14 00:25:53,985", + "created": 1610580353.985715, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 421.43702507019043, + "msecs": 985.7149124145508, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3076.8470764160156, - "thread": 140379336402752, + "relativeCreated": 3214.2138481140137, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -8894,25 +8894,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,422", - "created": 1610361431.422047, + "asctime": "2021-01-14 00:25:53,986", + "created": 1610580353.986366, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 422.0468997955322, + "msecs": 986.3660335540771, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3077.4569511413574, - "thread": 140379336402752, + "relativeCreated": 3214.86496925354, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -8920,8 +8920,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:11,444", - "created": 1610361431.444249, + "asctime": "2021-01-14 00:25:54,007", + "created": 1610580354.007446, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8931,14 +8931,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 444.24891471862793, + "msecs": 7.446050643920898, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3099.658966064453, - "thread": 140378925692672, + "relativeCreated": 3235.944986343384, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -8946,8 +8946,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:11,444", - "created": 1610361431.444873, + "asctime": "2021-01-14 00:25:54,008", + "created": 1610580354.008024, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8957,14 +8957,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 444.8730945587158, + "msecs": 8.023977279663086, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3100.283145904541, - "thread": 140378925692672, + "relativeCreated": 3236.522912979126, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -8972,8 +8972,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,445", - "created": 1610361431.445133, + "asctime": "2021-01-14 00:25:54,008", + "created": 1610580354.008328, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8983,14 +8983,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 445.1329708099365, + "msecs": 8.327960968017578, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3100.5430221557617, - "thread": 140378925692672, + "relativeCreated": 3236.8268966674805, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -8999,8 +8999,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:11,445", - "created": 1610361431.445312, + "asctime": "2021-01-14 00:25:54,008", + "created": 1610580354.008615, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9010,14 +9010,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 445.3120231628418, + "msecs": 8.61501693725586, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3100.722074508667, - "thread": 140378925692672, + "relativeCreated": 3237.1139526367188, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9025,8 +9025,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,445", - "created": 1610361431.445513, + "asctime": "2021-01-14 00:25:54,008", + "created": 1610580354.00889, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9036,14 +9036,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 445.5130100250244, + "msecs": 8.889913558959961, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3100.9230613708496, - "thread": 140378925692672, + "relativeCreated": 3237.388849258423, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9052,8 +9052,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,445", - "created": 1610361431.445684, + "asctime": "2021-01-14 00:25:54,009", + "created": 1610580354.009095, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9063,14 +9063,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 445.68395614624023, + "msecs": 9.094953536987305, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3101.0940074920654, - "thread": 140378925692672, + "relativeCreated": 3237.59388923645, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9078,8 +9078,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,445", - "created": 1610361431.445865, + "asctime": "2021-01-14 00:25:54,009", + "created": 1610580354.009439, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9089,14 +9089,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 445.8649158477783, + "msecs": 9.43899154663086, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3101.2749671936035, - "thread": 140378925692672, + "relativeCreated": 3237.9379272460938, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9105,8 +9105,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446, + "asctime": "2021-01-14 00:25:54,009", + "created": 1610580354.00964, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9116,14 +9116,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 446.0000991821289, + "msecs": 9.639978408813477, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3101.410150527954, - "thread": 140378925692672, + "relativeCreated": 3238.1389141082764, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9131,8 +9131,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446148, + "asctime": "2021-01-14 00:25:54,009", + "created": 1610580354.009897, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9142,14 +9142,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 446.1479187011719, + "msecs": 9.896993637084961, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3101.557970046997, - "thread": 140378925692672, + "relativeCreated": 3238.395929336548, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9158,8 +9158,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446255, + "asctime": "2021-01-14 00:25:54,010", + "created": 1610580354.010103, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9169,14 +9169,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 446.2549686431885, + "msecs": 10.102987289428711, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3101.6650199890137, - "thread": 140378925692672, + "relativeCreated": 3238.6019229888916, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9184,8 +9184,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446406, + "asctime": "2021-01-14 00:25:54,010", + "created": 1610580354.010387, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9195,14 +9195,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 446.40588760375977, + "msecs": 10.386943817138672, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3101.815938949585, - "thread": 140378925692672, + "relativeCreated": 3238.8858795166016, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9211,8 +9211,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446512, + "asctime": "2021-01-14 00:25:54,010", + "created": 1610580354.010582, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9222,14 +9222,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 446.51198387145996, + "msecs": 10.58197021484375, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3101.922035217285, - "thread": 140378925692672, + "relativeCreated": 3239.0809059143066, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9237,8 +9237,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446686, + "asctime": "2021-01-14 00:25:54,010", + "created": 1610580354.010897, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9248,14 +9248,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 446.6860294342041, + "msecs": 10.896921157836914, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3102.0960807800293, - "thread": 140378925692672, + "relativeCreated": 3239.3958568573, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9263,8 +9263,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446825, + "asctime": "2021-01-14 00:25:54,011", + "created": 1610580354.011137, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9274,14 +9274,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 446.8250274658203, + "msecs": 11.137008666992188, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3102.2350788116455, - "thread": 140378925692672, + "relativeCreated": 3239.635944366455, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9289,8 +9289,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:11,446", - "created": 1610361431.446949, + "asctime": "2021-01-14 00:25:54,011", + "created": 1610580354.011378, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9300,14 +9300,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 446.9490051269531, + "msecs": 11.378049850463867, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3102.3590564727783, - "thread": 140378925692672, + "relativeCreated": 3239.8769855499268, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9316,8 +9316,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:11,447", - "created": 1610361431.447064, + "asctime": "2021-01-14 00:25:54,011", + "created": 1610580354.011588, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9327,14 +9327,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 447.0639228820801, + "msecs": 11.588096618652344, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3102.4739742279053, - "thread": 140378925692672, + "relativeCreated": 3240.0870323181152, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9342,8 +9342,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:11,447", - "created": 1610361431.447291, + "asctime": "2021-01-14 00:25:54,011", + "created": 1610580354.011989, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9353,14 +9353,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 447.29089736938477, + "msecs": 11.989116668701172, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3102.70094871521, - "thread": 140378925692672, + "relativeCreated": 3240.488052368164, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9371,25 +9371,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,447", - "created": 1610361431.447631, + "asctime": "2021-01-14 00:25:54,012", + "created": 1610580354.012553, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 447.6308822631836, + "msecs": 12.552976608276367, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3103.040933609009, - "thread": 140378925692672, + "relativeCreated": 3241.0519123077393, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9397,25 +9397,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:11,447", - "created": 1610361431.447847, + "asctime": "2021-01-14 00:25:54,012", + "created": 1610580354.012777, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 447.8468894958496, + "msecs": 12.777090072631836, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3103.256940841675, - "thread": 140378925692672, + "relativeCreated": 3241.2760257720947, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9426,33 +9426,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:11,448", - "created": 1610361431.448118, + "asctime": "2021-01-14 00:25:54,013", + "created": 1610580354.013062, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 448.1179714202881, + "msecs": 13.062000274658203, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 3103.5280227661133, - "thread": 140378925692672, + "relativeCreated": 3241.560935974121, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:13,427", - "created": 1610361433.427887, + "asctime": "2021-01-14 00:25:55,992", + "created": 1610580355.992158, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9462,22 +9462,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 427.886962890625, + "msecs": 992.1579360961914, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5083.29701423645, - "thread": 140379336402752, + "relativeCreated": 5220.656871795654, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:13,428", - "created": 1610361433.428258, + "asctime": "2021-01-14 00:25:55,992", + "created": 1610580355.992526, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9487,39 +9487,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 428.25794219970703, + "msecs": 992.5260543823242, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5083.667993545532, - "thread": 140379336402752, + "relativeCreated": 5221.024990081787, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:13,428", - "created": 1610361433.428499, + "asctime": "2021-01-14 00:25:55,992", + "created": 1610580355.992752, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 428.4989833831787, + "msecs": 992.7520751953125, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5083.909034729004, - "thread": 140379336402752, + "relativeCreated": 5221.251010894775, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -9527,8 +9527,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:13,453", - "created": 1610361433.45346, + "asctime": "2021-01-14 00:25:56,018", + "created": 1610580356.018953, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9538,14 +9538,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 453.4599781036377, + "msecs": 18.95308494567871, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5108.870029449463, - "thread": 140378925692672, + "relativeCreated": 5247.452020645142, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9553,8 +9553,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:13,454", - "created": 1610361433.454044, + "asctime": "2021-01-14 00:25:56,019", + "created": 1610580356.019473, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9564,14 +9564,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 454.0441036224365, + "msecs": 19.47307586669922, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5109.454154968262, - "thread": 140378925692672, + "relativeCreated": 5247.972011566162, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9579,8 +9579,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,454", - "created": 1610361433.454313, + "asctime": "2021-01-14 00:25:56,019", + "created": 1610580356.01968, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9590,14 +9590,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 454.3130397796631, + "msecs": 19.680023193359375, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5109.723091125488, - "thread": 140378925692672, + "relativeCreated": 5248.178958892822, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9606,8 +9606,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:13,454", - "created": 1610361433.45453, + "asctime": "2021-01-14 00:25:56,019", + "created": 1610580356.019873, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9617,14 +9617,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 454.5300006866455, + "msecs": 19.87290382385254, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5109.940052032471, - "thread": 140378925692672, + "relativeCreated": 5248.371839523315, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9632,8 +9632,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,454", - "created": 1610361433.454793, + "asctime": "2021-01-14 00:25:56,020", + "created": 1610580356.020091, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9643,14 +9643,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 454.79297637939453, + "msecs": 20.09105682373047, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5110.20302772522, - "thread": 140378925692672, + "relativeCreated": 5248.589992523193, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9659,8 +9659,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,454", - "created": 1610361433.45499, + "asctime": "2021-01-14 00:25:56,020", + "created": 1610580356.020257, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9670,14 +9670,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 454.9899101257324, + "msecs": 20.256996154785156, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5110.399961471558, - "thread": 140378925692672, + "relativeCreated": 5248.755931854248, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9685,8 +9685,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,455", - "created": 1610361433.455264, + "asctime": "2021-01-14 00:25:56,020", + "created": 1610580356.020476, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9696,14 +9696,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 455.2640914916992, + "msecs": 20.476102828979492, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5110.674142837524, - "thread": 140378925692672, + "relativeCreated": 5248.975038528442, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9712,8 +9712,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,455", - "created": 1610361433.455466, + "asctime": "2021-01-14 00:25:56,020", + "created": 1610580356.020634, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9723,14 +9723,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 455.46603202819824, + "msecs": 20.633935928344727, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5110.876083374023, - "thread": 140378925692672, + "relativeCreated": 5249.132871627808, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9738,8 +9738,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,455", - "created": 1610361433.455709, + "asctime": "2021-01-14 00:25:56,020", + "created": 1610580356.02084, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9749,14 +9749,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 455.70898056030273, + "msecs": 20.839929580688477, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5111.119031906128, - "thread": 140378925692672, + "relativeCreated": 5249.338865280151, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9765,8 +9765,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,455", - "created": 1610361433.455897, + "asctime": "2021-01-14 00:25:56,021", + "created": 1610580356.021007, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9776,14 +9776,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 455.89709281921387, + "msecs": 21.007061004638672, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5111.307144165039, - "thread": 140378925692672, + "relativeCreated": 5249.505996704102, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9791,8 +9791,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,456", - "created": 1610361433.456172, + "asctime": "2021-01-14 00:25:56,021", + "created": 1610580356.02126, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9802,14 +9802,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 456.17198944091797, + "msecs": 21.26002311706543, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5111.582040786743, - "thread": 140378925692672, + "relativeCreated": 5249.758958816528, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9818,8 +9818,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,456", - "created": 1610361433.456372, + "asctime": "2021-01-14 00:25:56,021", + "created": 1610580356.021536, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9829,14 +9829,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 456.3720226287842, + "msecs": 21.53611183166504, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5111.782073974609, - "thread": 140378925692672, + "relativeCreated": 5250.035047531128, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9844,8 +9844,8 @@ "comm-client:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:13,456", - "created": 1610361433.456682, + "asctime": "2021-01-14 00:25:56,021", + "created": 1610580356.021913, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9855,14 +9855,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 456.6819667816162, + "msecs": 21.91305160522461, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5112.092018127441, - "thread": 140378925692672, + "relativeCreated": 5250.4119873046875, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9870,8 +9870,8 @@ "comm-server:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:13,456", - "created": 1610361433.45695, + "asctime": "2021-01-14 00:25:56,022", + "created": 1610580356.022292, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9881,14 +9881,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 456.94994926452637, + "msecs": 22.291898727416992, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5112.360000610352, - "thread": 140378925692672, + "relativeCreated": 5250.79083442688, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9896,8 +9896,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,457", - "created": 1610361433.457172, + "asctime": "2021-01-14 00:25:56,022", + "created": 1610580356.022576, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9907,14 +9907,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 457.1719169616699, + "msecs": 22.576093673706055, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5112.581968307495, - "thread": 140378925692672, + "relativeCreated": 5251.075029373169, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9923,8 +9923,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:13,457", - "created": 1610361433.457374, + "asctime": "2021-01-14 00:25:56,022", + "created": 1610580356.022826, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9934,14 +9934,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 457.37409591674805, + "msecs": 22.825956344604492, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5112.784147262573, - "thread": 140378925692672, + "relativeCreated": 5251.324892044067, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -9949,8 +9949,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" ], - "asctime": "2021-01-11 11:37:13,457", - "created": 1610361433.457797, + "asctime": "2021-01-14 00:25:56,023", + "created": 1610580356.023305, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -9960,42 +9960,16 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", "module": "stp", - "msecs": 457.7970504760742, + "msecs": 23.30493927001953, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5113.207101821899, - "thread": 140378925692672, + "relativeCreated": 5251.803874969482, + "thread": 140019289290496, "threadName": "Thread-7" }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-01-11 11:37:13,458", - "created": 1610361433.458319, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 458.31894874572754, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "src/helpers/__init__.py", - "process": 36164, - "processName": "MainProcess", - "relativeCreated": 5113.729000091553, - "thread": 140378917299968, - "threadName": "Thread-8" - }, { "args": [ "prot-server:", @@ -10004,25 +9978,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:13,458", - "created": 1610361433.45899, + "asctime": "2021-01-14 00:25:56,023", + "created": 1610580356.023829, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 458.99009704589844, + "msecs": 23.828983306884766, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5114.400148391724, - "thread": 140378925692672, + "relativeCreated": 5252.327919006348, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -10030,25 +10004,80 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:13,459", - "created": 1610361433.459481, + "asctime": "2021-01-14 00:25:56,024", + "created": 1610580356.024125, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 459.48100090026855, + "msecs": 24.125099182128906, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5114.891052246094, - "thread": 140378925692672, + "relativeCreated": 5252.624034881592, + "thread": 140019289290496, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-14 00:25:56,024", + "created": 1610580356.024518, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 24.51801300048828, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 5213, + "processName": "MainProcess", + "relativeCreated": 5253.016948699951, + "thread": 140019280897792, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: authentification response, data_id: seed", + "status: okay", + "'bf329bbd77793fb1bc3649da46b75eea905e42b069b668a521c1e4840e565078'" + ], + "asctime": "2021-01-14 00:25:56,024", + "created": 1610580356.024685, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 457, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'bf329bbd77793fb1bc3649da46b75eea905e42b069b668a521c1e4840e565078'\"", + "module": "__init__", + "msecs": 24.684906005859375, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 5213, + "processName": "MainProcess", + "relativeCreated": 5253.183841705322, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -10056,8 +10085,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:13,459", - "created": 1610361433.459906, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.02515, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10067,14 +10096,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 459.90610122680664, + "msecs": 25.150060653686523, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5115.316152572632, - "thread": 140378917299968, + "relativeCreated": 5253.648996353149, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10082,8 +10111,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,460", - "created": 1610361433.460009, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025239, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10093,14 +10122,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 460.0090980529785, + "msecs": 25.238990783691406, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5115.419149398804, - "thread": 140378917299968, + "relativeCreated": 5253.737926483154, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10109,8 +10138,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:13,460", - "created": 1610361433.460093, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025303, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10120,52 +10149,23 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 460.09302139282227, + "msecs": 25.302886962890625, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5115.5030727386475, - "thread": 140378917299968, + "relativeCreated": 5253.8018226623535, + "thread": 140019280897792, "threadName": "Thread-8" }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'4718ac4339ae9701389536651908e3bef259633b193ab7016b0e12d54fccbfb4'" - ], - "asctime": "2021-01-11 11:37:13,460", - "created": 1610361433.460193, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'4718ac4339ae9701389536651908e3bef259633b193ab7016b0e12d54fccbfb4'\"", - "module": "__init__", - "msecs": 460.1929187774658, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 36164, - "processName": "MainProcess", - "relativeCreated": 5115.602970123291, - "thread": 140378925692672, - "threadName": "Thread-7" - }, { "args": [ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,460", - "created": 1610361433.460314, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025379, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10175,14 +10175,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 460.3140354156494, + "msecs": 25.378942489624023, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5115.724086761475, - "thread": 140378917299968, + "relativeCreated": 5253.877878189087, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10191,8 +10191,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,460", - "created": 1610361433.460645, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025437, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10202,14 +10202,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 460.6449604034424, + "msecs": 25.437116622924805, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.055011749268, - "thread": 140378917299968, + "relativeCreated": 5253.936052322388, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10217,8 +10217,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,460", - "created": 1610361433.460865, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025528, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10228,14 +10228,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 460.8650207519531, + "msecs": 25.5279541015625, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.275072097778, - "thread": 140378917299968, + "relativeCreated": 5254.026889801025, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10244,8 +10244,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,460", - "created": 1610361433.460937, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025586, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10255,14 +10255,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 460.9370231628418, + "msecs": 25.58588981628418, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.347074508667, - "thread": 140378917299968, + "relativeCreated": 5254.084825515747, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10270,8 +10270,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.46101, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10281,14 +10281,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 461.0099792480469, + "msecs": 25.65598487854004, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.420030593872, - "thread": 140378917299968, + "relativeCreated": 5254.154920578003, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10297,8 +10297,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461067, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025712, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10308,14 +10308,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 461.06696128845215, + "msecs": 25.712013244628906, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.477012634277, - "thread": 140378917299968, + "relativeCreated": 5254.210948944092, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10323,8 +10323,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.46115, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10334,14 +10334,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 461.1499309539795, + "msecs": 25.793075561523438, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.559982299805, - "thread": 140378917299968, + "relativeCreated": 5254.292011260986, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10350,8 +10350,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461205, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025849, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10361,14 +10361,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 461.20500564575195, + "msecs": 25.849103927612305, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.615056991577, - "thread": 140378917299968, + "relativeCreated": 5254.348039627075, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10376,8 +10376,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461291, + "asctime": "2021-01-14 00:25:56,025", + "created": 1610580356.025941, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10387,14 +10387,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 461.2910747528076, + "msecs": 25.940895080566406, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.701126098633, - "thread": 140378917299968, + "relativeCreated": 5254.439830780029, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10402,8 +10402,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461359, + "asctime": "2021-01-14 00:25:56,026", + "created": 1610580356.026011, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10413,14 +10413,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 461.35902404785156, + "msecs": 26.010990142822266, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.769075393677, - "thread": 140378917299968, + "relativeCreated": 5254.509925842285, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10428,8 +10428,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461426, + "asctime": "2021-01-14 00:25:56,026", + "created": 1610580356.026076, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10439,14 +10439,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 461.4260196685791, + "msecs": 26.076078414916992, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.836071014404, - "thread": 140378917299968, + "relativeCreated": 5254.57501411438, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10455,8 +10455,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461484, + "asctime": "2021-01-14 00:25:56,026", + "created": 1610580356.026148, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10466,14 +10466,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 461.4839553833008, + "msecs": 26.148080825805664, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5116.894006729126, - "thread": 140378917299968, + "relativeCreated": 5254.647016525269, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10481,8 +10481,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461597, + "asctime": "2021-01-14 00:25:56,026", + "created": 1610580356.026328, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10492,14 +10492,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 461.5969657897949, + "msecs": 26.328086853027344, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.00701713562, - "thread": 140378917299968, + "relativeCreated": 5254.82702255249, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10510,25 +10510,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461725, + "asctime": "2021-01-14 00:25:56,026", + "created": 1610580356.0265, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 461.72499656677246, + "msecs": 26.49998664855957, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.135047912598, - "thread": 140378917299968, + "relativeCreated": 5254.9989223480225, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10536,34 +10536,34 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461796, + "asctime": "2021-01-14 00:25:56,026", + "created": 1610580356.026609, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 461.7960453033447, + "msecs": 26.608943939208984, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.20609664917, - "thread": 140378917299968, + "relativeCreated": 5255.107879638672, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 31 38 61 63 34 33 33 39 61 65 39 37 30 31 33 38 39" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 66 33 32 39 62 62 64 37 37 37 39 33 66 62 31 62 63 33" ], - "asctime": "2021-01-11 11:37:13,461", - "created": 1610361433.461987, + "asctime": "2021-01-14 00:25:56,026", + "created": 1610580356.026838, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10571,25 +10571,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 31 38 61 63 34 33 33 39 61 65 39 37 30 31 33 38 39", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 66 33 32 39 62 62 64 37 37 37 39 33 66 62 31 62 63 33", "module": "__init__", - "msecs": 461.9870185852051, + "msecs": 26.838064193725586, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.39706993103, - "thread": 140378917299968, + "relativeCreated": 5255.3369998931885, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 31 38 61 63 34 33 33 39 61 65 39 37 30 31 33 38 39" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 66 33 32 39 62 62 64 37 37 37 39 33 66 62 31 62 63 33" ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462111, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027012, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10597,16 +10597,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 31 38 61 63 34 33 33 39 61 65 39 37 30 31 33 38 39", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 66 33 32 39 62 62 64 37 37 37 39 33 66 62 31 62 63 33", "module": "__init__", - "msecs": 462.1109962463379, + "msecs": 27.012109756469727, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.521047592163, - "thread": 140378917299968, + "relativeCreated": 5255.511045455933, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10614,8 +10614,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.46217, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027079, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10625,14 +10625,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 462.169885635376, + "msecs": 27.079105377197266, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.579936981201, - "thread": 140378917299968, + "relativeCreated": 5255.57804107666, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10641,8 +10641,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462229, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10652,14 +10652,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 462.22901344299316, + "msecs": 27.14395523071289, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.639064788818, - "thread": 140378917299968, + "relativeCreated": 5255.642890930176, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10667,8 +10667,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462302, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027218, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10678,14 +10678,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 462.30196952819824, + "msecs": 27.218103408813477, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.712020874023, - "thread": 140378917299968, + "relativeCreated": 5255.717039108276, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10694,8 +10694,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462355, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027296, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10705,14 +10705,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 462.3548984527588, + "msecs": 27.296066284179688, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.764949798584, - "thread": 140378917299968, + "relativeCreated": 5255.795001983643, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10720,8 +10720,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.46243, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.02748, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10731,14 +10731,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 462.4300003051758, + "msecs": 27.479887008666992, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.840051651001, - "thread": 140378917299968, + "relativeCreated": 5255.97882270813, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10747,8 +10747,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462483, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027555, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10758,14 +10758,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 462.4829292297363, + "msecs": 27.554988861083984, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.8929805755615, - "thread": 140378917299968, + "relativeCreated": 5256.053924560547, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10773,8 +10773,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462549, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027647, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10784,14 +10784,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 462.54897117614746, + "msecs": 27.647018432617188, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5117.959022521973, - "thread": 140378917299968, + "relativeCreated": 5256.14595413208, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10800,8 +10800,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462611, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027722, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10811,23 +10811,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 462.61096000671387, + "msecs": 27.721881866455078, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.021011352539, - "thread": 140378917299968, + "relativeCreated": 5256.220817565918, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "comm-server:", - "(64): 35 33 36 36 35 31 39 30 38 65 33 62 65 66 32 35 39 36 33 33 62 31 39 33 61 62 37 30 31 36 62 30 65 31 32 64 35 34 66 63 63 62 66 62 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d0 dd" + "(64): 36 34 39 64 61 34 36 62 37 35 65 65 61 39 30 35 65 34 32 62 30 36 39 62 36 36 38 61 35 32 31 63 31 65 34 38 34 30 65 35 36 35 30 37 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 53 32" ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462766, + "asctime": "2021-01-14 00:25:56,027", + "created": 1610580356.027954, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10835,25 +10835,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 35 33 36 36 35 31 39 30 38 65 33 62 65 66 32 35 39 36 33 33 62 31 39 33 61 62 37 30 31 36 62 30 65 31 32 64 35 34 66 63 63 62 66 62 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d0 dd", + "message": "comm-server: TX -> (64): 36 34 39 64 61 34 36 62 37 35 65 65 61 39 30 35 65 34 32 62 30 36 39 62 36 36 38 61 35 32 31 63 31 65 34 38 34 30 65 35 36 35 30 37 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 53 32", "module": "__init__", - "msecs": 462.7659320831299, + "msecs": 27.9541015625, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.175983428955, - "thread": 140378917299968, + "relativeCreated": 5256.453037261963, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(64): 35 33 36 36 35 31 39 30 38 65 33 62 65 66 32 35 39 36 33 33 62 31 39 33 61 62 37 30 31 36 62 30 65 31 32 64 35 34 66 63 63 62 66 62 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d0 dd" + "(64): 36 34 39 64 61 34 36 62 37 35 65 65 61 39 30 35 65 34 32 62 30 36 39 62 36 36 38 61 35 32 31 63 31 65 34 38 34 30 65 35 36 35 30 37 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 53 32" ], - "asctime": "2021-01-11 11:37:13,462", - "created": 1610361433.462889, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028095, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10861,16 +10861,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 35 33 36 36 35 31 39 30 38 65 33 62 65 66 32 35 39 36 33 33 62 31 39 33 61 62 37 30 31 36 62 30 65 31 32 64 35 34 66 63 63 62 66 62 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d0 dd", + "message": "comm-client: RX <- (64): 36 34 39 64 61 34 36 62 37 35 65 65 61 39 30 35 65 34 32 62 30 36 39 62 36 36 38 61 35 32 31 63 31 65 34 38 34 30 65 35 36 35 30 37 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 53 32", "module": "__init__", - "msecs": 462.8889560699463, + "msecs": 28.095006942749023, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.2990074157715, - "thread": 140378917299968, + "relativeCreated": 5256.593942642212, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10878,8 +10878,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463019, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028234, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10889,14 +10889,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 463.01889419555664, + "msecs": 28.234004974365234, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.428945541382, - "thread": 140378917299968, + "relativeCreated": 5256.732940673828, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10905,8 +10905,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463079, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10916,23 +10916,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 463.07897567749023, + "msecs": 28.29289436340332, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.489027023315, - "thread": 140378917299968, + "relativeCreated": 5256.791830062866, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "comm-server:", - "(4): 77 4c 3a 3e" + "(4): d6 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463159, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028382, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10940,25 +10940,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): 77 4c 3a 3e", + "message": "comm-server: TX -> (4): d6 9b 3a 3e", "module": "__init__", - "msecs": 463.15908432006836, + "msecs": 28.382062911987305, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.569135665894, - "thread": 140378917299968, + "relativeCreated": 5256.88099861145, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(4): 77 4c 3a 3e" + "(4): d6 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463221, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028448, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10966,16 +10966,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): 77 4c 3a 3e", + "message": "comm-client: RX <- (4): d6 9b 3a 3e", "module": "__init__", - "msecs": 463.22107315063477, + "msecs": 28.448104858398438, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.63112449646, - "thread": 140378917299968, + "relativeCreated": 5256.947040557861, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -10983,8 +10983,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.46328, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028509, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10994,14 +10994,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 463.27996253967285, + "msecs": 28.508901596069336, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.690013885498, - "thread": 140378917299968, + "relativeCreated": 5257.007837295532, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11010,8 +11010,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463336, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028565, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11021,23 +11021,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 463.3359909057617, + "msecs": 28.564929962158203, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.746042251587, - "thread": 140378917299968, + "relativeCreated": 5257.063865661621, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "STP:", - "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 34 37 31 38 61 63 34 33 33 39 61 65 39 37 30 31 33 38 39 35 33 36 36 35 31 39 30 38 65 33 62 65 66 32 35 39 36 33 33 62 31 39 33 61 62 37 30 31 36 62 30 65 31 32 64 35 34 66 63 63 62 66 62 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d0 dd 77 4c" + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 62 66 33 32 39 62 62 64 37 37 37 39 33 66 62 31 62 63 33 36 34 39 64 61 34 36 62 37 35 65 65 61 39 30 35 65 34 32 62 30 36 39 62 36 36 38 61 35 32 31 63 31 65 34 38 34 30 65 35 36 35 30 37 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 53 32 d6 9b" ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463503, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028742, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11045,16 +11045,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 34 37 31 38 61 63 34 33 33 39 61 65 39 37 30 31 33 38 39 35 33 36 36 35 31 39 30 38 65 33 62 65 66 32 35 39 36 33 33 62 31 39 33 61 62 37 30 31 36 62 30 65 31 32 64 35 34 66 63 63 62 66 62 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d0 dd 77 4c", + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 62 66 33 32 39 62 62 64 37 37 37 39 33 66 62 31 62 63 33 36 34 39 64 61 34 36 62 37 35 65 65 61 39 30 35 65 34 32 62 30 36 39 62 36 36 38 61 35 32 31 63 31 65 34 38 34 30 65 35 36 35 30 37 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 53 32 d6 9b", "module": "stp", - "msecs": 463.5028839111328, + "msecs": 28.742074966430664, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5118.912935256958, - "thread": 140378917299968, + "relativeCreated": 5257.241010665894, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11063,27 +11063,27 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "u'4718ac4339ae9701389536651908e3bef259633b193ab7016b0e12d54fccbfb4'" + "u'bf329bbd77793fb1bc3649da46b75eea905e42b069b668a521c1e4840e565078'" ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463626, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028881, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'4718ac4339ae9701389536651908e3bef259633b193ab7016b0e12d54fccbfb4'\"", + "lineno": 457, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'bf329bbd77793fb1bc3649da46b75eea905e42b069b668a521c1e4840e565078'\"", "module": "__init__", - "msecs": 463.6259078979492, + "msecs": 28.881072998046875, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5119.035959243774, - "thread": 140378917299968, + "relativeCreated": 5257.38000869751, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11091,25 +11091,25 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463699, + "asctime": "2021-01-14 00:25:56,028", + "created": 1610580356.028965, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 463.6991024017334, + "msecs": 28.964996337890625, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5119.109153747559, - "thread": 140378917299968, + "relativeCreated": 5257.4639320373535, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11118,36 +11118,36 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'8f9705e924e3ea7503ffbfbf0857fbeb544a7c930502e888d37cab234903b1f7c2b5a3d25a0033f4a953095e25923f042bc051fc713e405f3c1a8c6218de53ba'" + "'d07b71e43499a4d36bbfc6be15bb79ad03d84efaf1057d576102661f164748d3c757b6f6ecafb28862f8a1423d629edf1f50b49778de6ed8d8ecc2e45c44ea8a'" ], - "asctime": "2021-01-11 11:37:13,463", - "created": 1610361433.463807, + "asctime": "2021-01-14 00:25:56,029", + "created": 1610580356.029139, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'8f9705e924e3ea7503ffbfbf0857fbeb544a7c930502e888d37cab234903b1f7c2b5a3d25a0033f4a953095e25923f042bc051fc713e405f3c1a8c6218de53ba'\"", + "lineno": 457, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'d07b71e43499a4d36bbfc6be15bb79ad03d84efaf1057d576102661f164748d3c757b6f6ecafb28862f8a1423d629edf1f50b49778de6ed8d8ecc2e45c44ea8a'\"", "module": "__init__", - "msecs": 463.8071060180664, + "msecs": 29.139041900634766, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5119.217157363892, - "thread": 140378917299968, + "relativeCreated": 5257.637977600098, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 66 39 37 30 35 65 39 32 34 65 33 65 61 37 35 30 33 66" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 30 37 62 37 31 65 34 33 34 39 39 61 34 64 33 36 62 62" ], - "asctime": "2021-01-11 11:37:13,464", - "created": 1610361433.464239, + "asctime": "2021-01-14 00:25:56,033", + "created": 1610580356.033219, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11155,25 +11155,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 66 39 37 30 35 65 39 32 34 65 33 65 61 37 35 30 33 66", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 30 37 62 37 31 65 34 33 34 39 39 61 34 64 33 36 62 62", "module": "__init__", - "msecs": 464.23888206481934, + "msecs": 33.219099044799805, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5119.6489334106445, - "thread": 140378925692672, + "relativeCreated": 5261.718034744263, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 66 39 37 30 35 65 39 32 34 65 33 65 61 37 35 30 33 66" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 30 37 62 37 31 65 34 33 34 39 39 61 34 64 33 36 62 62" ], - "asctime": "2021-01-11 11:37:13,464", - "created": 1610361433.46447, + "asctime": "2021-01-14 00:25:56,033", + "created": 1610580356.033401, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11181,16 +11181,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 66 39 37 30 35 65 39 32 34 65 33 65 61 37 35 30 33 66", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 30 37 62 37 31 65 34 33 34 39 39 61 34 64 33 36 62 62", "module": "__init__", - "msecs": 464.46990966796875, + "msecs": 33.4010124206543, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5119.879961013794, - "thread": 140378925692672, + "relativeCreated": 5261.899948120117, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11198,8 +11198,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,464", - "created": 1610361433.464562, + "asctime": "2021-01-14 00:25:56,033", + "created": 1610580356.033482, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11209,14 +11209,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 464.56193923950195, + "msecs": 33.48207473754883, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5119.971990585327, - "thread": 140378925692672, + "relativeCreated": 5261.981010437012, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11225,8 +11225,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:13,464", - "created": 1610361433.464643, + "asctime": "2021-01-14 00:25:56,033", + "created": 1610580356.033564, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11236,14 +11236,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 464.6430015563965, + "msecs": 33.564090728759766, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.053052902222, - "thread": 140378925692672, + "relativeCreated": 5262.063026428223, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11251,8 +11251,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,464", - "created": 1610361433.464756, + "asctime": "2021-01-14 00:25:56,033", + "created": 1610580356.033657, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11262,14 +11262,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 464.7560119628906, + "msecs": 33.657073974609375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.166063308716, - "thread": 140378925692672, + "relativeCreated": 5262.156009674072, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11278,8 +11278,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,464", - "created": 1610361433.46485, + "asctime": "2021-01-14 00:25:56,033", + "created": 1610580356.033835, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11289,14 +11289,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 464.84994888305664, + "msecs": 33.83493423461914, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.260000228882, - "thread": 140378925692672, + "relativeCreated": 5262.333869934082, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11304,8 +11304,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,464", - "created": 1610361433.464965, + "asctime": "2021-01-14 00:25:56,033", + "created": 1610580356.033965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11315,14 +11315,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 464.9651050567627, + "msecs": 33.965110778808594, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.375156402588, - "thread": 140378925692672, + "relativeCreated": 5262.4640464782715, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11331,8 +11331,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,465", - "created": 1610361433.46504, + "asctime": "2021-01-14 00:25:56,034", + "created": 1610580356.034051, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11342,14 +11342,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 465.0399684906006, + "msecs": 34.050941467285156, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.450019836426, - "thread": 140378925692672, + "relativeCreated": 5262.549877166748, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11357,8 +11357,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,465", - "created": 1610361433.465139, + "asctime": "2021-01-14 00:25:56,034", + "created": 1610580356.034149, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11368,14 +11368,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 465.13891220092773, + "msecs": 34.1489315032959, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.548963546753, - "thread": 140378925692672, + "relativeCreated": 5262.647867202759, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11384,8 +11384,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,465", - "created": 1610361433.465219, + "asctime": "2021-01-14 00:25:56,034", + "created": 1610580356.034217, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11395,23 +11395,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 465.21902084350586, + "msecs": 34.216880798339844, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.629072189331, - "thread": 140378925692672, + "relativeCreated": 5262.715816497803, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-client:", - "(64): 66 62 66 62 66 30 38 35 37 66 62 65 62 35 34 34 61 37 63 39 33 30 35 30 32 65 38 38 38 64 33 37 63 61 62 32 33 34 39 30 33 62 31 66 37 63 32 62 35 61 33 64 32 35 61 30 30 33 33 66 34 61 39 35" + "(64): 66 63 36 62 65 31 35 62 62 37 39 61 64 30 33 64 38 34 65 66 61 66 31 30 35 37 64 35 37 36 31 30 32 36 36 31 66 31 36 34 37 34 38 64 33 63 37 35 37 62 36 66 36 65 63 61 66 62 32 38 38 36 32 66" ], - "asctime": "2021-01-11 11:37:13,465", - "created": 1610361433.465433, + "asctime": "2021-01-14 00:25:56,034", + "created": 1610580356.03439, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11419,25 +11419,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 66 62 66 62 66 30 38 35 37 66 62 65 62 35 34 34 61 37 63 39 33 30 35 30 32 65 38 38 38 64 33 37 63 61 62 32 33 34 39 30 33 62 31 66 37 63 32 62 35 61 33 64 32 35 61 30 30 33 33 66 34 61 39 35", + "message": "comm-client: TX -> (64): 66 63 36 62 65 31 35 62 62 37 39 61 64 30 33 64 38 34 65 66 61 66 31 30 35 37 64 35 37 36 31 30 32 36 36 31 66 31 36 34 37 34 38 64 33 63 37 35 37 62 36 66 36 65 63 61 66 62 32 38 38 36 32 66", "module": "__init__", - "msecs": 465.43288230895996, + "msecs": 34.38997268676758, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.842933654785, - "thread": 140378925692672, + "relativeCreated": 5262.8889083862305, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(64): 66 62 66 62 66 30 38 35 37 66 62 65 62 35 34 34 61 37 63 39 33 30 35 30 32 65 38 38 38 64 33 37 63 61 62 32 33 34 39 30 33 62 31 66 37 63 32 62 35 61 33 64 32 35 61 30 30 33 33 66 34 61 39 35" + "(64): 66 63 36 62 65 31 35 62 62 37 39 61 64 30 33 64 38 34 65 66 61 66 31 30 35 37 64 35 37 36 31 30 32 36 36 31 66 31 36 34 37 34 38 64 33 63 37 35 37 62 36 66 36 65 63 61 66 62 32 38 38 36 32 66" ], - "asctime": "2021-01-11 11:37:13,465", - "created": 1610361433.465582, + "asctime": "2021-01-14 00:25:56,034", + "created": 1610580356.034518, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11445,25 +11445,25 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 66 62 66 62 66 30 38 35 37 66 62 65 62 35 34 34 61 37 63 39 33 30 35 30 32 65 38 38 38 64 33 37 63 61 62 32 33 34 39 30 33 62 31 66 37 63 32 62 35 61 33 64 32 35 61 30 30 33 33 66 34 61 39 35", + "message": "comm-server: RX <- (64): 66 63 36 62 65 31 35 62 62 37 39 61 64 30 33 64 38 34 65 66 61 66 31 30 35 37 64 35 37 36 31 30 32 36 36 31 66 31 36 34 37 34 38 64 33 63 37 35 37 62 36 66 36 65 63 61 66 62 32 38 38 36 32 66", "module": "__init__", - "msecs": 465.58189392089844, + "msecs": 34.51800346374512, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5120.991945266724, - "thread": 140378925692672, + "relativeCreated": 5263.016939163208, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-client:", - "(64): 33 30 39 35 65 32 35 39 32 33 66 30 34 32 62 63 30 35 31 66 63 37 31 33 65 34 30 35 66 33 63 31 61 38 63 36 32 31 38 64 65 35 33 62 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 7e a7" + "(64): 38 61 31 34 32 33 64 36 32 39 65 64 66 31 66 35 30 62 34 39 37 37 38 64 65 36 65 64 38 64 38 65 63 63 32 65 34 35 63 34 34 65 61 38 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 37 c3" ], - "asctime": "2021-01-11 11:37:13,465", - "created": 1610361433.46586, + "asctime": "2021-01-14 00:25:56,034", + "created": 1610580356.034744, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11471,25 +11471,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 33 30 39 35 65 32 35 39 32 33 66 30 34 32 62 63 30 35 31 66 63 37 31 33 65 34 30 35 66 33 63 31 61 38 63 36 32 31 38 64 65 35 33 62 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 7e a7", + "message": "comm-client: TX -> (64): 38 61 31 34 32 33 64 36 32 39 65 64 66 31 66 35 30 62 34 39 37 37 38 64 65 36 65 64 38 64 38 65 63 63 32 65 34 35 63 34 34 65 61 38 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 37 c3", "module": "__init__", - "msecs": 465.85988998413086, + "msecs": 34.7440242767334, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5121.269941329956, - "thread": 140378925692672, + "relativeCreated": 5263.242959976196, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(64): 33 30 39 35 65 32 35 39 32 33 66 30 34 32 62 63 30 35 31 66 63 37 31 33 65 34 30 35 66 33 63 31 61 38 63 36 32 31 38 64 65 35 33 62 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 7e a7" + "(64): 38 61 31 34 32 33 64 36 32 39 65 64 66 31 66 35 30 62 34 39 37 37 38 64 65 36 65 64 38 64 38 65 63 63 32 65 34 35 63 34 34 65 61 38 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 37 c3" ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.466004, + "asctime": "2021-01-14 00:25:56,034", + "created": 1610580356.03487, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11497,16 +11497,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 33 30 39 35 65 32 35 39 32 33 66 30 34 32 62 63 30 35 31 66 63 37 31 33 65 34 30 35 66 33 63 31 61 38 63 36 32 31 38 64 65 35 33 62 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 7e a7", + "message": "comm-server: RX <- (64): 38 61 31 34 32 33 64 36 32 39 65 64 66 31 66 35 30 62 34 39 37 37 38 64 65 36 65 64 38 64 38 65 63 63 32 65 34 35 63 34 34 65 61 38 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 37 c3", "module": "__init__", - "msecs": 466.0038948059082, + "msecs": 34.86990928649902, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5121.413946151733, - "thread": 140378925692672, + "relativeCreated": 5263.368844985962, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11514,8 +11514,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.46618, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.03501, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11525,14 +11525,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 466.18008613586426, + "msecs": 35.01009941101074, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5121.590137481689, - "thread": 140378925692672, + "relativeCreated": 5263.509035110474, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11541,8 +11541,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.466246, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.035076, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11552,23 +11552,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 466.2458896636963, + "msecs": 35.07590293884277, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5121.6559410095215, - "thread": 140378925692672, + "relativeCreated": 5263.574838638306, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-client:", - "(4): a4 01 3a 3e" + "(4): 51 9c 3a 3e" ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.466368, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.035165, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11576,25 +11576,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): a4 01 3a 3e", + "message": "comm-client: TX -> (4): 51 9c 3a 3e", "module": "__init__", - "msecs": 466.3679599761963, + "msecs": 35.16507148742676, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5121.7780113220215, - "thread": 140378925692672, + "relativeCreated": 5263.66400718689, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(4): a4 01 3a 3e" + "(4): 51 9c 3a 3e" ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.466448, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.035249, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11602,16 +11602,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): a4 01 3a 3e", + "message": "comm-server: RX <- (4): 51 9c 3a 3e", "module": "__init__", - "msecs": 466.4480686187744, + "msecs": 35.24899482727051, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5121.8581199646, - "thread": 140378925692672, + "relativeCreated": 5263.747930526733, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11619,8 +11619,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.466527, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.035325, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11630,14 +11630,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 466.52698516845703, + "msecs": 35.325050354003906, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5121.937036514282, - "thread": 140378925692672, + "relativeCreated": 5263.823986053467, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11646,8 +11646,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.466598, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.035423, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11657,23 +11657,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 466.5980339050293, + "msecs": 35.42304039001465, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5122.0080852508545, - "thread": 140378925692672, + "relativeCreated": 5263.9219760894775, + "thread": 140019289290496, "threadName": "Thread-7" }, { "args": [ "STP:", - "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 66 39 37 30 35 65 39 32 34 65 33 65 61 37 35 30 33 66 66 62 66 62 66 30 38 35 37 66 62 65 62 35 34 34 61 37 63 39 33 30 35 30 32 65 38 38 38 64 33 37 63 61 62 32 33 34 39 30 33 62 31 66 37 63 32 62 35 61 33 64 32 35 61 30 30 33 33 66 34 61 39 35 33 30 39 35 65 32 35 39 32 33 66 30 34 32 62 63 30 35 31 66 63 37 31 33 65 34 30 35 66 33 63 31 61 38 63 36 32 31 38 64 65 35 33 62 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 7e a7 a4 01" + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 30 37 62 37 31 65 34 33 34 39 39 61 34 64 33 36 62 62 66 63 36 62 65 31 35 62 62 37 39 61 64 30 33 64 38 34 65 66 61 66 31 30 35 37 64 35 37 36 31 30 32 36 36 31 66 31 36 34 37 34 38 64 33 63 37 35 37 62 36 66 36 65 63 61 66 62 32 38 38 36 32 66 38 61 31 34 32 33 64 36 32 39 65 64 66 31 66 35 30 62 34 39 37 37 38 64 65 36 65 64 38 64 38 65 63 63 32 65 34 35 63 34 34 65 61 38 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 37 c3 51 9c" ], - "asctime": "2021-01-11 11:37:13,466", - "created": 1610361433.466878, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.035696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11681,16 +11681,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 66 39 37 30 35 65 39 32 34 65 33 65 61 37 35 30 33 66 66 62 66 62 66 30 38 35 37 66 62 65 62 35 34 34 61 37 63 39 33 30 35 30 32 65 38 38 38 64 33 37 63 61 62 32 33 34 39 30 33 62 31 66 37 63 32 62 35 61 33 64 32 35 61 30 30 33 33 66 34 61 39 35 33 30 39 35 65 32 35 39 32 33 66 30 34 32 62 63 30 35 31 66 63 37 31 33 65 34 30 35 66 33 63 31 61 38 63 36 32 31 38 64 65 35 33 62 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 7e a7 a4 01", + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 30 37 62 37 31 65 34 33 34 39 39 61 34 64 33 36 62 62 66 63 36 62 65 31 35 62 62 37 39 61 64 30 33 64 38 34 65 66 61 66 31 30 35 37 64 35 37 36 31 30 32 36 36 31 66 31 36 34 37 34 38 64 33 63 37 35 37 62 36 66 36 65 63 61 66 62 32 38 38 36 32 66 38 61 31 34 32 33 64 36 32 39 65 64 66 31 66 35 30 62 34 39 37 37 38 64 65 36 65 64 38 64 38 65 63 63 32 65 34 35 63 34 34 65 61 38 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 37 c3 51 9c", "module": "stp", - "msecs": 466.87793731689453, + "msecs": 35.69602966308594, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5122.28798866272, - "thread": 140378925692672, + "relativeCreated": 5264.194965362549, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11699,27 +11699,27 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "u'8f9705e924e3ea7503ffbfbf0857fbeb544a7c930502e888d37cab234903b1f7c2b5a3d25a0033f4a953095e25923f042bc051fc713e405f3c1a8c6218de53ba'" + "u'd07b71e43499a4d36bbfc6be15bb79ad03d84efaf1057d576102661f164748d3c757b6f6ecafb28862f8a1423d629edf1f50b49778de6ed8d8ecc2e45c44ea8a'" ], - "asctime": "2021-01-11 11:37:13,467", - "created": 1610361433.467031, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.035857, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'8f9705e924e3ea7503ffbfbf0857fbeb544a7c930502e888d37cab234903b1f7c2b5a3d25a0033f4a953095e25923f042bc051fc713e405f3c1a8c6218de53ba'\"", + "lineno": 457, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'd07b71e43499a4d36bbfc6be15bb79ad03d84efaf1057d576102661f164748d3c757b6f6ecafb28862f8a1423d629edf1f50b49778de6ed8d8ecc2e45c44ea8a'\"", "module": "__init__", - "msecs": 467.03100204467773, + "msecs": 35.85696220397949, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5122.441053390503, - "thread": 140378925692672, + "relativeCreated": 5264.355897903442, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11727,25 +11727,25 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:13,467", - "created": 1610361433.467117, + "asctime": "2021-01-14 00:25:56,035", + "created": 1610580356.03594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 467.1170711517334, + "msecs": 35.939931869506836, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5122.527122497559, - "thread": 140378925692672, + "relativeCreated": 5264.43886756897, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11756,25 +11756,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:13,467", - "created": 1610361433.467241, + "asctime": "2021-01-14 00:25:56,036", + "created": 1610580356.036054, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 467.2410488128662, + "msecs": 36.05389595031738, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5122.651100158691, - "thread": 140378925692672, + "relativeCreated": 5264.55283164978, + "thread": 140019289290496, "threadName": "Thread-7" }, { @@ -11782,8 +11782,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:13,468", - "created": 1610361433.468491, + "asctime": "2021-01-14 00:25:56,036", + "created": 1610580356.036847, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11793,14 +11793,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 468.4910774230957, + "msecs": 36.84711456298828, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5123.901128768921, - "thread": 140378917299968, + "relativeCreated": 5265.346050262451, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11808,8 +11808,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:13,468", - "created": 1610361433.468693, + "asctime": "2021-01-14 00:25:56,036", + "created": 1610580356.037, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11819,14 +11819,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 468.6930179595947, + "msecs": 36.99994087219238, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.10306930542, - "thread": 140378917299968, + "relativeCreated": 5265.498876571655, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11834,8 +11834,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,468", - "created": 1610361433.46879, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037069, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11845,14 +11845,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 468.79005432128906, + "msecs": 37.069082260131836, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.200105667114, - "thread": 140378917299968, + "relativeCreated": 5265.568017959595, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11861,8 +11861,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:13,468", - "created": 1610361433.468874, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037155, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11872,14 +11872,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 468.8739776611328, + "msecs": 37.1549129486084, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.284029006958, - "thread": 140378917299968, + "relativeCreated": 5265.653848648071, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11887,8 +11887,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,468", - "created": 1610361433.468979, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037233, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11898,14 +11898,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 468.9788818359375, + "msecs": 37.23311424255371, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.388933181763, - "thread": 140378917299968, + "relativeCreated": 5265.732049942017, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11914,8 +11914,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469061, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037294, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11925,14 +11925,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 469.06089782714844, + "msecs": 37.29391098022461, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.470949172974, - "thread": 140378917299968, + "relativeCreated": 5265.7928466796875, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11940,8 +11940,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469176, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037407, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11951,14 +11951,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 469.1760540008545, + "msecs": 37.40692138671875, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.58610534668, - "thread": 140378917299968, + "relativeCreated": 5265.905857086182, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11967,8 +11967,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469265, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037483, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11978,14 +11978,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 469.2649841308594, + "msecs": 37.48297691345215, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.675035476685, - "thread": 140378917299968, + "relativeCreated": 5265.981912612915, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -11993,8 +11993,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469369, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037581, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12004,14 +12004,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 469.36893463134766, + "msecs": 37.58096694946289, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.778985977173, - "thread": 140378917299968, + "relativeCreated": 5266.079902648926, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12020,8 +12020,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469448, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037654, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12031,14 +12031,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 469.4480895996094, + "msecs": 37.65392303466797, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.858140945435, - "thread": 140378917299968, + "relativeCreated": 5266.152858734131, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12046,8 +12046,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469571, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.03776, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12057,14 +12057,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 469.5711135864258, + "msecs": 37.760019302368164, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5124.981164932251, - "thread": 140378917299968, + "relativeCreated": 5266.258955001831, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12073,8 +12073,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469651, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037833, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12084,14 +12084,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 469.6509838104248, + "msecs": 37.83297538757324, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.06103515625, - "thread": 140378917299968, + "relativeCreated": 5266.331911087036, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12099,8 +12099,8 @@ "comm-server:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469773, + "asctime": "2021-01-14 00:25:56,037", + "created": 1610580356.037958, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -12110,14 +12110,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 469.7730541229248, + "msecs": 37.95790672302246, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.18310546875, - "thread": 140378917299968, + "relativeCreated": 5266.456842422485, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12125,8 +12125,8 @@ "comm-client:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469873, + "asctime": "2021-01-14 00:25:56,038", + "created": 1610580356.038031, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -12136,14 +12136,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 469.87295150756836, + "msecs": 38.03110122680664, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.283002853394, - "thread": 140378917299968, + "relativeCreated": 5266.5300369262695, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12151,8 +12151,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,469", - "created": 1610361433.469964, + "asctime": "2021-01-14 00:25:56,038", + "created": 1610580356.038099, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12162,14 +12162,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 469.96402740478516, + "msecs": 38.099050521850586, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.37407875061, - "thread": 140378917299968, + "relativeCreated": 5266.5979862213135, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12178,8 +12178,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:13,470", - "created": 1610361433.470044, + "asctime": "2021-01-14 00:25:56,038", + "created": 1610580356.038158, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12189,14 +12189,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 470.0438976287842, + "msecs": 38.15793991088867, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.453948974609, - "thread": 140378917299968, + "relativeCreated": 5266.656875610352, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12204,8 +12204,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" ], - "asctime": "2021-01-11 11:37:13,470", - "created": 1610361433.470214, + "asctime": "2021-01-14 00:25:56,038", + "created": 1610580356.03828, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12215,14 +12215,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", "module": "stp", - "msecs": 470.2138900756836, + "msecs": 38.28001022338867, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.623941421509, - "thread": 140378917299968, + "relativeCreated": 5266.778945922852, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12233,25 +12233,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:13,470", - "created": 1610361433.47037, + "asctime": "2021-01-14 00:25:56,038", + "created": 1610580356.038417, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 470.3700542449951, + "msecs": 38.41710090637207, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.78010559082, - "thread": 140378917299968, + "relativeCreated": 5266.916036605835, + "thread": 140019280897792, "threadName": "Thread-8" }, { @@ -12259,71 +12259,71 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:13,470", - "created": 1610361433.470467, + "asctime": "2021-01-14 00:25:56,038", + "created": 1610580356.038495, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 470.46709060668945, + "msecs": 38.49506378173828, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.877141952515, - "thread": 140378917299968, + "relativeCreated": 5266.993999481201, + "thread": 140019280897792, "threadName": "Thread-8" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:13,470", - "created": 1610361433.470553, + "asctime": "2021-01-14 00:25:56,038", + "created": 1610580356.038561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 470.552921295166, + "msecs": 38.561105728149414, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5125.962972640991, - "thread": 140378917299968, + "relativeCreated": 5267.060041427612, + "thread": 140019280897792, "threadName": "Thread-8" } ], - "msecs": 771.838903427124, + "msecs": 336.122989654541, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5427.248954772949, - "thread": 140379336402752, + "relativeCreated": 5564.621925354004, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.301285982131958 + "time_consumption": 0.2975618839263916 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:13,773", - "created": 1610361433.773053, + "asctime": "2021-01-14 00:25:56,337", + "created": 1610580356.337964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12340,8 +12340,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:13,772", - "created": 1610361433.772559, + "asctime": "2021-01-14 00:25:56,337", + "created": 1610580356.337189, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12351,14 +12351,14 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 772.5589275360107, + "msecs": 337.1889591217041, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5427.968978881836, - "thread": 140379336402752, + "relativeCreated": 5565.687894821167, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -12367,8 +12367,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:13,772", - "created": 1610361433.772825, + "asctime": "2021-01-14 00:25:56,337", + "created": 1610580356.337693, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12378,35 +12378,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 772.8250026702881, + "msecs": 337.6929759979248, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5428.235054016113, - "thread": 140379336402752, + "relativeCreated": 5566.191911697388, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 773.0529308319092, + "msecs": 337.9640579223633, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5428.462982177734, - "thread": 140379336402752, + "relativeCreated": 5566.462993621826, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00022792816162109375 + "time_consumption": 0.00027108192443847656 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:13,773", - "created": 1610361433.773826, + "asctime": "2021-01-14 00:25:56,338", + "created": 1610580356.338888, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12423,8 +12423,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:13,773", - "created": 1610361433.773476, + "asctime": "2021-01-14 00:25:56,338", + "created": 1610580356.338507, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12434,14 +12434,14 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 773.4758853912354, + "msecs": 338.50693702697754, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5428.885936737061, - "thread": 140379336402752, + "relativeCreated": 5567.00587272644, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -12450,8 +12450,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:13,773", - "created": 1610361433.773658, + "asctime": "2021-01-14 00:25:56,338", + "created": 1610580356.338704, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12461,39 +12461,39 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 773.658037185669, + "msecs": 338.70410919189453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5429.068088531494, - "thread": 140379336402752, + "relativeCreated": 5567.203044891357, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 773.8258838653564, + "msecs": 338.88792991638184, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5429.235935211182, - "thread": 140379336402752, + "relativeCreated": 5567.386865615845, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001678466796875 + "time_consumption": 0.0001838207244873047 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 2.7083828449249268, - "time_finished": "2021-01-11 11:37:13,773", - "time_start": "2021-01-11 11:37:11,065" + "time_consumption": 2.709556818008423, + "time_finished": "2021-01-14 00:25:56,338", + "time_start": "2021-01-14 00:25:53,629" }, "_7izDUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379988, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832321, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -12504,20 +12504,20 @@ "message": "_7izDUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 379.9879550933838, + "msecs": 832.3209285736084, "msg": "_7izDUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.398006439208984, + "relativeCreated": 60.81986427307129, "testcaseLogger": [ { "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380065, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832397, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -12528,14 +12528,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 380.0649642944336, + "msecs": 832.3969841003418, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.47501564025879, - "thread": 140379336402752, + "relativeCreated": 60.89591979980469, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -12543,8 +12543,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380219, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832553, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12561,8 +12561,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.38014, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832473, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12572,14 +12572,14 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 380.1400661468506, + "msecs": 832.4730396270752, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.55011749267578, - "thread": 140379336402752, + "relativeCreated": 60.971975326538086, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -12587,8 +12587,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380181, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12598,25 +12598,25 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 380.18107414245605, + "msecs": 832.5150012969971, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.59112548828125, - "thread": 140379336402752, + "relativeCreated": 61.01393699645996, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 380.2189826965332, + "msecs": 832.5529098510742, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.6290340423584, - "thread": 140379336402752, + "relativeCreated": 61.05184555053711, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 3.790855407714844e-05 }, @@ -12624,8 +12624,8 @@ "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380295, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832627, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -12636,14 +12636,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 380.2950382232666, + "msecs": 832.6270580291748, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.7050895690918, - "thread": 140379336402752, + "relativeCreated": 61.125993728637695, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -12651,8 +12651,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380441, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832776, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12669,8 +12669,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380365, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832699, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12680,14 +12680,14 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 380.36489486694336, + "msecs": 832.6990604400635, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.774946212768555, - "thread": 140379336402752, + "relativeCreated": 61.19799613952637, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -12695,8 +12695,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380405, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832739, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12706,35 +12706,35 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 380.4049491882324, + "msecs": 832.7391147613525, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.81500053405762, - "thread": 140379336402752, + "relativeCreated": 61.23805046081543, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 380.44095039367676, + "msecs": 832.7760696411133, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.85100173950195, - "thread": 140379336402752, + "relativeCreated": 61.27500534057617, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 3.695487976074219e-05 }, { "args": [ "'SID'", "" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380592, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832929, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12751,8 +12751,8 @@ "'SID'", "" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380513, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.83285, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12762,14 +12762,14 @@ "lineno": 22, "message": "Result (Content in message object for service_id): 'SID' ()", "module": "test", - "msecs": 380.51295280456543, + "msecs": 832.8499794006348, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.923004150390625, - "thread": 140379336402752, + "relativeCreated": 61.348915100097656, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -12778,8 +12778,8 @@ "'SID'", "" ], - "asctime": "2021-01-11 11:37:08,380", - "created": 1610361428.380553, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.83289, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12789,39 +12789,39 @@ "lineno": 26, "message": "Expectation (Content in message object for service_id): result = 'SID' ()", "module": "test", - "msecs": 380.5530071258545, + "msecs": 832.8900337219238, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.96305847167969, - "thread": 140379336402752, + "relativeCreated": 61.38896942138672, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 380.59210777282715, + "msecs": 832.9288959503174, "msg": "Content in message object for service_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.002159118652344, - "thread": 140379336402752, + "relativeCreated": 61.42783164978027, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 3.886222839355469e-05 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0006041526794433594, - "time_finished": "2021-01-11 11:37:08,380", - "time_start": "2021-01-11 11:37:08,379" + "time_consumption": 0.0006079673767089844, + "time_finished": "2021-01-14 00:25:50,832", + "time_start": "2021-01-14 00:25:50,832" }, "_AlIUwEzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381454, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833798, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -12832,20 +12832,20 @@ "message": "_AlIUwEzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 381.4539909362793, + "msecs": 833.7979316711426, "msg": "_AlIUwEzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.86404228210449, + "relativeCreated": 62.29686737060547, "testcaseLogger": [ { "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381531, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833875, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -12856,14 +12856,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 381.5310001373291, + "msecs": 833.8749408721924, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 36.9410514831543, - "thread": 140379336402752, + "relativeCreated": 62.37387657165527, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -12871,8 +12871,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381677, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834027, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12889,8 +12889,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381597, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833948, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12900,14 +12900,14 @@ "lineno": 22, "message": "Result (data is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 381.59704208374023, + "msecs": 833.9478969573975, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.00709342956543, - "thread": 140379336402752, + "relativeCreated": 62.44683265686035, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -12915,8 +12915,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381637, + "asctime": "2021-01-14 00:25:50,833", + "created": 1610580350.833989, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12926,34 +12926,34 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 381.6370964050293, + "msecs": 833.9889049530029, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.04714775085449, - "thread": 140379336402752, + "relativeCreated": 62.48784065246582, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 381.67691230773926, + "msecs": 834.0270519256592, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.08696365356445, - "thread": 140379336402752, + "relativeCreated": 62.52598762512207, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 3.981590270996094e-05 + "time_consumption": 3.814697265625e-05 }, { "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381749, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834103, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -12964,14 +12964,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 381.74891471862793, + "msecs": 834.1031074523926, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.158966064453125, - "thread": 140379336402752, + "relativeCreated": 62.60204315185547, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -12979,8 +12979,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381896, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.83425, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12997,8 +12997,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381817, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834172, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13008,14 +13008,14 @@ "lineno": 22, "message": "Result (data is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 381.817102432251, + "msecs": 834.1720104217529, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.22715377807617, - "thread": 140379336402752, + "relativeCreated": 62.67094612121582, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13023,8 +13023,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381856, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834212, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13034,35 +13034,35 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 381.85596466064453, + "msecs": 834.212064743042, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.26601600646973, - "thread": 140379336402752, + "relativeCreated": 62.71100044250488, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 381.8960189819336, + "msecs": 834.2499732971191, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.30607032775879, - "thread": 140379336402752, + "relativeCreated": 62.74890899658203, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 3.790855407714844e-05 }, { "args": [ "'D'", "" ], - "asctime": "2021-01-11 11:37:08,382", - "created": 1610361428.382044, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834402, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13079,8 +13079,8 @@ "'D'", "" ], - "asctime": "2021-01-11 11:37:08,381", - "created": 1610361428.381966, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834323, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13090,14 +13090,14 @@ "lineno": 22, "message": "Result (Content in message object for data): 'D' ()", "module": "test", - "msecs": 381.96611404418945, + "msecs": 834.3229293823242, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.37616539001465, - "thread": 140379336402752, + "relativeCreated": 62.82186508178711, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13106,8 +13106,8 @@ "'D'", "" ], - "asctime": "2021-01-11 11:37:08,382", - "created": 1610361428.382005, + "asctime": "2021-01-14 00:25:50,834", + "created": 1610580350.834362, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13117,39 +13117,39 @@ "lineno": 26, "message": "Expectation (Content in message object for data): result = 'D' ()", "module": "test", - "msecs": 382.004976272583, + "msecs": 834.3620300292969, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.4150276184082, - "thread": 140379336402752, + "relativeCreated": 62.860965728759766, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 382.04407691955566, + "msecs": 834.4020843505859, "msg": "Content in message object for data is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 37.45412826538086, - "thread": 140379336402752, + "relativeCreated": 62.90102005004883, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 4.00543212890625e-05 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0005900859832763672, - "time_finished": "2021-01-11 11:37:08,382", - "time_start": "2021-01-11 11:37:08,381" + "time_consumption": 0.0006041526794433594, + "time_finished": "2021-01-14 00:25:50,834", + "time_start": "2021-01-14 00:25:50,833" }, "_CZeooE0YEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:15,751", - "created": 1610361435.751079, + "asctime": "2021-01-14 00:25:58,318", + "created": 1610580358.318982, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13160,18 +13160,18 @@ "message": "_CZeooE0YEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 751.0790824890137, + "msecs": 318.9818859100342, "msg": "_CZeooE0YEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7406.489133834839, + "relativeCreated": 7547.480821609497, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760335, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328877, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -13186,8 +13186,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:15,752", - "created": 1610361435.752833, + "asctime": "2021-01-14 00:25:58,320", + "created": 1610580358.320752, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13197,22 +13197,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 752.8328895568848, + "msecs": 320.7519054412842, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7408.24294090271, - "thread": 140379336402752, + "relativeCreated": 7549.250841140747, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:15,754", - "created": 1610361435.754266, + "asctime": "2021-01-14 00:25:58,322", + "created": 1610580358.322041, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13222,22 +13222,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 754.2660236358643, + "msecs": 322.0410346984863, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7409.676074981689, - "thread": 140379336402752, + "relativeCreated": 7550.539970397949, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:15,754", - "created": 1610361435.75456, + "asctime": "2021-01-14 00:25:58,322", + "created": 1610580358.322323, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13247,39 +13247,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 754.5599937438965, + "msecs": 322.3230838775635, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7409.970045089722, - "thread": 140379336402752, + "relativeCreated": 7550.822019577026, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:15,755", - "created": 1610361435.755217, + "asctime": "2021-01-14 00:25:58,323", + "created": 1610580358.323039, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 755.2170753479004, + "msecs": 323.03905487060547, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7410.627126693726, - "thread": 140379336402752, + "relativeCreated": 7551.537990570068, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13288,25 +13288,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:15,755", - "created": 1610361435.755457, + "asctime": "2021-01-14 00:25:58,323", + "created": 1610580358.323352, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 755.4569244384766, + "msecs": 323.3520984649658, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7410.866975784302, - "thread": 140379336402752, + "relativeCreated": 7551.851034164429, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13314,25 +13314,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:15,755", - "created": 1610361435.755729, + "asctime": "2021-01-14 00:25:58,323", + "created": 1610580358.323718, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 755.7289600372314, + "msecs": 323.7180709838867, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7411.139011383057, - "thread": 140379336402752, + "relativeCreated": 7552.21700668335, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13340,25 +13340,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:15,755", - "created": 1610361435.755916, + "asctime": "2021-01-14 00:25:58,323", + "created": 1610580358.323979, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 755.9161186218262, + "msecs": 323.9789009094238, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7411.326169967651, - "thread": 140379336402752, + "relativeCreated": 7552.477836608887, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13366,25 +13366,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:15,756", - "created": 1610361435.756106, + "asctime": "2021-01-14 00:25:58,324", + "created": 1610580358.324221, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 756.105899810791, + "msecs": 324.2208957672119, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7411.515951156616, - "thread": 140379336402752, + "relativeCreated": 7552.719831466675, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13392,25 +13392,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:15,756", - "created": 1610361435.756293, + "asctime": "2021-01-14 00:25:58,324", + "created": 1610580358.324461, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 756.2930583953857, + "msecs": 324.4609832763672, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7411.703109741211, - "thread": 140379336402752, + "relativeCreated": 7552.95991897583, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13420,8 +13420,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:15,756", - "created": 1610361435.756516, + "asctime": "2021-01-14 00:25:58,324", + "created": 1610580358.324726, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13431,14 +13431,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 756.5159797668457, + "msecs": 324.7261047363281, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7411.926031112671, - "thread": 140379336402752, + "relativeCreated": 7553.225040435791, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13448,8 +13448,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:15,756", - "created": 1610361435.756802, + "asctime": "2021-01-14 00:25:58,324", + "created": 1610580358.324977, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13459,14 +13459,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 756.8020820617676, + "msecs": 324.97692108154297, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7412.212133407593, - "thread": 140379336402752, + "relativeCreated": 7553.475856781006, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13476,8 +13476,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:15,757", - "created": 1610361435.757007, + "asctime": "2021-01-14 00:25:58,325", + "created": 1610580358.325259, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13487,14 +13487,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 757.0068836212158, + "msecs": 325.2589702606201, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7412.416934967041, - "thread": 140379336402752, + "relativeCreated": 7553.757905960083, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13504,8 +13504,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:15,757", - "created": 1610361435.757195, + "asctime": "2021-01-14 00:25:58,325", + "created": 1610580358.325553, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13515,39 +13515,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 757.194995880127, + "msecs": 325.55294036865234, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7412.605047225952, - "thread": 140379336402752, + "relativeCreated": 7554.051876068115, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:15,757", - "created": 1610361435.757398, + "asctime": "2021-01-14 00:25:58,325", + "created": 1610580358.325798, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 757.3978900909424, + "msecs": 325.79803466796875, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7412.807941436768, - "thread": 140379336402752, + "relativeCreated": 7554.296970367432, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13556,25 +13556,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:15,757", - "created": 1610361435.757643, + "asctime": "2021-01-14 00:25:58,326", + "created": 1610580358.326084, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 757.6429843902588, + "msecs": 326.0838985443115, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7413.053035736084, - "thread": 140379336402752, + "relativeCreated": 7554.582834243774, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13582,25 +13582,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:15,757", - "created": 1610361435.757887, + "asctime": "2021-01-14 00:25:58,326", + "created": 1610580358.326367, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 757.8868865966797, + "msecs": 326.3669013977051, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7413.296937942505, - "thread": 140379336402752, + "relativeCreated": 7554.865837097168, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13608,25 +13608,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:15,758", - "created": 1610361435.758087, + "asctime": "2021-01-14 00:25:58,326", + "created": 1610580358.326613, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 758.0869197845459, + "msecs": 326.6129493713379, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7413.496971130371, - "thread": 140379336402752, + "relativeCreated": 7555.111885070801, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13636,8 +13636,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:15,758", - "created": 1610361435.758294, + "asctime": "2021-01-14 00:25:58,326", + "created": 1610580358.32687, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13647,14 +13647,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 758.2941055297852, + "msecs": 326.8699645996094, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7413.70415687561, - "thread": 140379336402752, + "relativeCreated": 7555.368900299072, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13664,8 +13664,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:15,758", - "created": 1610361435.758508, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327159, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13675,14 +13675,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 758.5079669952393, + "msecs": 327.15892791748047, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7413.918018341064, - "thread": 140379336402752, + "relativeCreated": 7555.657863616943, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13691,25 +13691,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:15,758", - "created": 1610361435.758725, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327414, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 758.7249279022217, + "msecs": 327.41403579711914, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.134979248047, - "thread": 140379336402752, + "relativeCreated": 7555.912971496582, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13718,25 +13718,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:15,758", - "created": 1610361435.758887, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 758.8870525360107, + "msecs": 327.5940418243408, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.297103881836, - "thread": 140379336402752, + "relativeCreated": 7556.092977523804, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13745,75 +13745,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:15,758", - "created": 1610361435.75895, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327645, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 758.9499950408936, + "msecs": 327.64506340026855, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.360046386719, - "thread": 140379336402752, + "relativeCreated": 7556.143999099731, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759005, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327702, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 759.005069732666, + "msecs": 327.7020454406738, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.415121078491, - "thread": 140379336402752, + "relativeCreated": 7556.200981140137, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759141, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 759.1409683227539, + "msecs": 327.82506942749023, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.551019668579, - "thread": 140379336402752, + "relativeCreated": 7556.324005126953, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13822,25 +13822,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759206, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327887, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 759.2060565948486, + "msecs": 327.88705825805664, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.616107940674, - "thread": 140379336402752, + "relativeCreated": 7556.3859939575195, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13848,25 +13848,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759285, + "asctime": "2021-01-14 00:25:58,327", + "created": 1610580358.327962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 759.2849731445312, + "msecs": 327.96192169189453, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.695024490356, - "thread": 140379336402752, + "relativeCreated": 7556.460857391357, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13874,25 +13874,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759346, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328015, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 759.3460083007812, + "msecs": 328.0150890350342, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.756059646606, - "thread": 140379336402752, + "relativeCreated": 7556.514024734497, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13900,25 +13900,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759399, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328065, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 759.3989372253418, + "msecs": 328.0649185180664, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.808988571167, - "thread": 140379336402752, + "relativeCreated": 7556.563854217529, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13926,25 +13926,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759453, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328113, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 759.4530582427979, + "msecs": 328.1130790710449, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.863109588623, - "thread": 140379336402752, + "relativeCreated": 7556.612014770508, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13954,8 +13954,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.75951, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328169, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13965,14 +13965,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 759.5100402832031, + "msecs": 328.1691074371338, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.920091629028, - "thread": 140379336402752, + "relativeCreated": 7556.668043136597, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -13982,8 +13982,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759578, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328227, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13993,14 +13993,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 759.5779895782471, + "msecs": 328.22704315185547, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7414.988040924072, - "thread": 140379336402752, + "relativeCreated": 7556.725978851318, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14010,8 +14010,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759637, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328281, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14021,14 +14021,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 759.6371173858643, + "msecs": 328.2809257507324, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.047168731689, - "thread": 140379336402752, + "relativeCreated": 7556.779861450195, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14038,8 +14038,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759698, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328337, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14049,39 +14049,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 759.6979141235352, + "msecs": 328.3369541168213, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.10796546936, - "thread": 140379336402752, + "relativeCreated": 7556.835889816284, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759751, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328389, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 759.7510814666748, + "msecs": 328.38892936706543, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.1611328125, - "thread": 140379336402752, + "relativeCreated": 7556.887865066528, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14090,25 +14090,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759813, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328445, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 759.8130702972412, + "msecs": 328.4449577331543, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.223121643066, - "thread": 140379336402752, + "relativeCreated": 7556.943893432617, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14116,25 +14116,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759881, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328502, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 759.8810195922852, + "msecs": 328.50193977355957, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.29107093811, - "thread": 140379336402752, + "relativeCreated": 7557.0008754730225, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14142,25 +14142,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759936, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 759.9360942840576, + "msecs": 328.5539150238037, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.346145629883, - "thread": 140379336402752, + "relativeCreated": 7557.052850723267, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14170,8 +14170,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:15,759", - "created": 1610361435.759993, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328609, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14181,14 +14181,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 759.9930763244629, + "msecs": 328.6089897155762, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.403127670288, - "thread": 140379336402752, + "relativeCreated": 7557.107925415039, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14198,8 +14198,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760051, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328658, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14209,14 +14209,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 760.0510120391846, + "msecs": 328.6581039428711, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.46106338501, - "thread": 140379336402752, + "relativeCreated": 7557.157039642334, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14225,25 +14225,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760107, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328703, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 760.1070404052734, + "msecs": 328.7029266357422, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.517091751099, - "thread": 140379336402752, + "relativeCreated": 7557.201862335205, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14252,25 +14252,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760168, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328748, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 760.1680755615234, + "msecs": 328.7479877471924, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.578126907349, - "thread": 140379336402752, + "relativeCreated": 7557.246923446655, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14279,68 +14279,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.76022, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328792, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 760.2200508117676, + "msecs": 328.7920951843262, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.630102157593, - "thread": 140379336402752, + "relativeCreated": 7557.291030883789, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760278, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328834, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 760.2779865264893, + "msecs": 328.83405685424805, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.688037872314, - "thread": 140379336402752, + "relativeCreated": 7557.332992553711, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 760.3349685668945, + "msecs": 328.8769721984863, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.74501991272, - "thread": 140379336402752, + "relativeCreated": 7557.375907897949, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 5.698204040527344e-05 + "time_consumption": 4.291534423828125e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:16,104", - "created": 1610361436.104679, + "asctime": "2021-01-14 00:25:58,672", + "created": 1610580358.672607, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -14355,8 +14355,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760451, + "asctime": "2021-01-14 00:25:58,328", + "created": 1610580358.328967, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14366,22 +14366,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 760.451078414917, + "msecs": 328.9670944213867, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.861129760742, - "thread": 140379336402752, + "relativeCreated": 7557.46603012085, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.76051, + "asctime": "2021-01-14 00:25:58,329", + "created": 1610580358.329014, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14391,39 +14391,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 760.5099678039551, + "msecs": 329.0140628814697, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.92001914978, - "thread": 140379336402752, + "relativeCreated": 7557.512998580933, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760568, + "asctime": "2021-01-14 00:25:58,329", + "created": 1610580358.329059, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 760.5679035186768, + "msecs": 329.0588855743408, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7415.977954864502, - "thread": 140379336402752, + "relativeCreated": 7557.557821273804, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -14434,33 +14434,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760663, + "asctime": "2021-01-14 00:25:58,329", + "created": 1610580358.329149, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 760.6630325317383, + "msecs": 329.1490077972412, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7416.0730838775635, - "thread": 140379336402752, + "relativeCreated": 7557.647943496704, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:15,760", - "created": 1610361435.760865, + "asctime": "2021-01-14 00:25:58,329", + "created": 1610580358.3293, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14470,48 +14470,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 760.8649730682373, + "msecs": 329.2999267578125, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7416.2750244140625, - "thread": 140379336402752, + "relativeCreated": 7557.798862457275, + "thread": 140019705194304, "threadName": "MainThread" }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761044, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 761.0440254211426, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "src/helpers/__init__.py", - "process": 36164, - "processName": "MainProcess", - "relativeCreated": 7416.454076766968, - "thread": 140378892121856, - "threadName": "Thread-11" - }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761144, + "asctime": "2021-01-14 00:25:58,329", + "created": 1610580358.329352, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14521,48 +14495,74 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 761.1439228057861, + "msecs": 329.35190200805664, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7416.553974151611, - "thread": 140379336402752, + "relativeCreated": 7557.8508377075195, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761279, + "asctime": "2021-01-14 00:25:58,329", + "created": 1610580358.329402, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 761.2791061401367, + "msecs": 329.40196990966797, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7416.689157485962, - "thread": 140379336402752, + "relativeCreated": 7557.900905609131, + "thread": 140019705194304, "threadName": "MainThread" }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-14 00:25:58,331", + "created": 1610580358.331777, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 331.77709579467773, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 5213, + "processName": "MainProcess", + "relativeCreated": 7560.276031494141, + "thread": 140019255719680, + "threadName": "Thread-11" + }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761406, + "asctime": "2021-01-14 00:25:58,331", + "created": 1610580358.331932, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14572,14 +14572,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 761.4059448242188, + "msecs": 331.93206787109375, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7416.815996170044, - "thread": 140378892121856, + "relativeCreated": 7560.431003570557, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14587,8 +14587,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761535, + "asctime": "2021-01-14 00:25:58,331", + "created": 1610580358.331999, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14598,14 +14598,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 761.5349292755127, + "msecs": 331.9990634918213, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7416.944980621338, - "thread": 140378892121856, + "relativeCreated": 7560.497999191284, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14614,8 +14614,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761597, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332059, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14625,14 +14625,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 761.5969181060791, + "msecs": 332.0589065551758, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.006969451904, - "thread": 140378892121856, + "relativeCreated": 7560.557842254639, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14640,8 +14640,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761672, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332128, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14651,14 +14651,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 761.6720199584961, + "msecs": 332.12804794311523, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.082071304321, - "thread": 140378892121856, + "relativeCreated": 7560.626983642578, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14667,8 +14667,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.76173, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332179, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14678,14 +14678,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 761.7299556732178, + "msecs": 332.17906951904297, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.140007019043, - "thread": 140378892121856, + "relativeCreated": 7560.678005218506, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14693,8 +14693,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761809, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.33225, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14704,14 +14704,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 761.8091106414795, + "msecs": 332.25011825561523, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.219161987305, - "thread": 140378892121856, + "relativeCreated": 7560.749053955078, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14720,8 +14720,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761862, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332299, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14731,14 +14731,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 761.86203956604, + "msecs": 332.29899406433105, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.272090911865, - "thread": 140378892121856, + "relativeCreated": 7560.797929763794, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14746,8 +14746,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.761928, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332358, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14757,14 +14757,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 761.9280815124512, + "msecs": 332.35788345336914, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.338132858276, - "thread": 140378892121856, + "relativeCreated": 7560.856819152832, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14773,8 +14773,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,761", - "created": 1610361435.76198, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332405, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14784,14 +14784,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 761.9800567626953, + "msecs": 332.40509033203125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.3901081085205, - "thread": 140378892121856, + "relativeCreated": 7560.904026031494, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14799,8 +14799,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762052, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332471, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14810,14 +14810,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 762.052059173584, + "msecs": 332.4708938598633, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.462110519409, - "thread": 140378892121856, + "relativeCreated": 7560.969829559326, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14826,8 +14826,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762107, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332523, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14837,14 +14837,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 762.1068954467773, + "msecs": 332.5231075286865, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.5169467926025, - "thread": 140378892121856, + "relativeCreated": 7561.022043228149, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14852,8 +14852,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.76219, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332598, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14863,14 +14863,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 762.1901035308838, + "msecs": 332.5979709625244, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.600154876709, - "thread": 140378892121856, + "relativeCreated": 7561.096906661987, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14878,8 +14878,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762254, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332662, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14889,14 +14889,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 762.253999710083, + "msecs": 332.66210556030273, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.664051055908, - "thread": 140378892121856, + "relativeCreated": 7561.161041259766, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14904,8 +14904,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762313, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332709, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14915,14 +14915,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 762.3128890991211, + "msecs": 332.70907402038574, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.722940444946, - "thread": 140378892121856, + "relativeCreated": 7561.208009719849, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14931,8 +14931,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762368, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332756, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14942,14 +14942,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 762.3679637908936, + "msecs": 332.75604248046875, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.778015136719, - "thread": 140378892121856, + "relativeCreated": 7561.254978179932, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14957,8 +14957,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762481, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.332844, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -14968,14 +14968,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 762.4809741973877, + "msecs": 332.8440189361572, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7417.891025543213, - "thread": 140378892121856, + "relativeCreated": 7561.34295463562, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -14986,25 +14986,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762612, + "asctime": "2021-01-14 00:25:58,332", + "created": 1610580358.33296, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 762.6121044158936, + "msecs": 332.9598903656006, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.022155761719, - "thread": 140378892121856, + "relativeCreated": 7561.4588260650635, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -15012,25 +15012,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762682, + "asctime": "2021-01-14 00:25:58,333", + "created": 1610580358.333019, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 762.6819610595703, + "msecs": 333.0190181732178, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.0920124053955, - "thread": 140378892121856, + "relativeCreated": 7561.517953872681, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -15041,25 +15041,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:15,762", - "created": 1610361435.762771, + "asctime": "2021-01-14 00:25:58,333", + "created": 1610580358.33309, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 762.7708911895752, + "msecs": 333.09006690979004, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.1809425354, - "thread": 140378892121856, + "relativeCreated": 7561.589002609253, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -15067,8 +15067,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763077, + "asctime": "2021-01-14 00:25:58,333", + "created": 1610580358.333768, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15078,14 +15078,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 763.0770206451416, + "msecs": 333.7678909301758, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.487071990967, - "thread": 140378883729152, + "relativeCreated": 7562.266826629639, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15093,8 +15093,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763237, + "asctime": "2021-01-14 00:25:58,333", + "created": 1610580358.333894, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15104,14 +15104,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 763.2369995117188, + "msecs": 333.8940143585205, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.647050857544, - "thread": 140378883729152, + "relativeCreated": 7562.392950057983, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15119,8 +15119,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763303, + "asctime": "2021-01-14 00:25:58,333", + "created": 1610580358.333948, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15130,14 +15130,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 763.3030414581299, + "msecs": 333.94789695739746, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.713092803955, - "thread": 140378883729152, + "relativeCreated": 7562.44683265686, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15146,8 +15146,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763358, + "asctime": "2021-01-14 00:25:58,333", + "created": 1610580358.333999, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15157,14 +15157,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 763.3581161499023, + "msecs": 333.9989185333252, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.7681674957275, - "thread": 140378883729152, + "relativeCreated": 7562.497854232788, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15172,8 +15172,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763426, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334061, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15183,14 +15183,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 763.4260654449463, + "msecs": 334.0609073638916, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.8361167907715, - "thread": 140378883729152, + "relativeCreated": 7562.5598430633545, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15199,8 +15199,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763478, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.33411, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15210,14 +15210,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 763.4780406951904, + "msecs": 334.1100215911865, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.888092041016, - "thread": 140378883729152, + "relativeCreated": 7562.608957290649, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15225,8 +15225,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.76355, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334186, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15236,14 +15236,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 763.5500431060791, + "msecs": 334.1860771179199, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7418.960094451904, - "thread": 140378883729152, + "relativeCreated": 7562.685012817383, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15252,8 +15252,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763607, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334239, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15263,14 +15263,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 763.6070251464844, + "msecs": 334.23900604248047, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.01707649231, - "thread": 140378883729152, + "relativeCreated": 7562.737941741943, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15278,8 +15278,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763674, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334298, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15289,14 +15289,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 763.6740207672119, + "msecs": 334.29789543151855, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.084072113037, - "thread": 140378883729152, + "relativeCreated": 7562.796831130981, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15305,8 +15305,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763726, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334363, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15316,14 +15316,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 763.725996017456, + "msecs": 334.3629837036133, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.136047363281, - "thread": 140378883729152, + "relativeCreated": 7562.861919403076, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15331,8 +15331,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763798, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334464, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15342,14 +15342,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 763.7979984283447, + "msecs": 334.46407318115234, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.20804977417, - "thread": 140378883729152, + "relativeCreated": 7562.963008880615, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15358,8 +15358,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763849, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334521, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15369,14 +15369,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 763.8490200042725, + "msecs": 334.5210552215576, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.259071350098, - "thread": 140378883729152, + "relativeCreated": 7563.0199909210205, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15384,8 +15384,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763925, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334594, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15395,14 +15395,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 763.9250755310059, + "msecs": 334.5940113067627, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.335126876831, - "thread": 140378883729152, + "relativeCreated": 7563.092947006226, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15410,8 +15410,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:15,763", - "created": 1610361435.763991, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334662, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15421,14 +15421,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 763.991117477417, + "msecs": 334.66196060180664, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.401168823242, - "thread": 140378883729152, + "relativeCreated": 7563.1608963012695, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15436,8 +15436,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,764", - "created": 1610361435.764072, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334709, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15447,14 +15447,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 764.0719413757324, + "msecs": 334.70892906188965, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.481992721558, - "thread": 140378883729152, + "relativeCreated": 7563.2078647613525, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15463,8 +15463,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,764", - "created": 1610361435.764128, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334752, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15474,14 +15474,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 764.1279697418213, + "msecs": 334.75208282470703, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.5380210876465, - "thread": 140378883729152, + "relativeCreated": 7563.25101852417, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15489,8 +15489,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:15,764", - "created": 1610361435.764236, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334835, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -15500,14 +15500,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 764.2359733581543, + "msecs": 334.8350524902344, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.6460247039795, - "thread": 140378883729152, + "relativeCreated": 7563.333988189697, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15518,25 +15518,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:15,764", - "created": 1610361435.764351, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334923, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 764.3508911132812, + "msecs": 334.92302894592285, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.760942459106, - "thread": 140378883729152, + "relativeCreated": 7563.421964645386, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -15544,43 +15544,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:15,764", - "created": 1610361435.76442, + "asctime": "2021-01-14 00:25:58,334", + "created": 1610580358.334976, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 764.4200325012207, + "msecs": 334.9759578704834, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7419.830083847046, - "thread": 140378883729152, + "relativeCreated": 7563.474893569946, + "thread": 140019247326976, "threadName": "Thread-12" } ], - "msecs": 104.67910766601562, + "msecs": 672.6069450378418, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7760.089159011841, - "thread": 140379336402752, + "relativeCreated": 7901.105880737305, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3402590751647949 + "time_consumption": 0.3376309871673584 }, { "args": [], - "asctime": "2021-01-11 11:37:16,105", - "created": 1610361436.105329, + "asctime": "2021-01-14 00:25:58,673", + "created": 1610580358.673215, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -15591,21 +15591,21 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 105.32903671264648, + "msecs": 673.2149124145508, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7760.739088058472, - "thread": 140379336402752, + "relativeCreated": 7901.713848114014, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:16,407", - "created": 1610361436.407541, + "asctime": "2021-01-14 00:25:58,975", + "created": 1610580358.97521, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -15623,25 +15623,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:16,105", - "created": 1610361436.105829, + "asctime": "2021-01-14 00:25:58,673", + "created": 1610580358.673612, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 105.82900047302246, + "msecs": 673.612117767334, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7761.239051818848, - "thread": 140379336402752, + "relativeCreated": 7902.111053466797, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -15651,46 +15651,46 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:16,406", - "created": 1610361436.406932, + "asctime": "2021-01-14 00:25:58,974", + "created": 1610580358.974824, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 406.93211555480957, + "msecs": 974.8239517211914, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8062.342166900635, - "thread": 140379336402752, + "relativeCreated": 8203.322887420654, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 407.54103660583496, + "msecs": 975.2099514007568, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8062.95108795166, - "thread": 140379336402752, + "relativeCreated": 8203.70888710022, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0006089210510253906 + "time_consumption": 0.0003859996795654297 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:16,408", - "created": 1610361436.408796, + "asctime": "2021-01-14 00:25:58,976", + "created": 1610580358.976079, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15707,8 +15707,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:16,408", - "created": 1610361436.408035, + "asctime": "2021-01-14 00:25:58,975", + "created": 1610580358.975694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15718,14 +15718,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 408.0350399017334, + "msecs": 975.693941116333, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8063.445091247559, - "thread": 140379336402752, + "relativeCreated": 8204.192876815796, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -15734,8 +15734,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:16,408", - "created": 1610361436.408521, + "asctime": "2021-01-14 00:25:58,975", + "created": 1610580358.975896, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15745,35 +15745,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 408.5209369659424, + "msecs": 975.895881652832, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8063.930988311768, - "thread": 140379336402752, + "relativeCreated": 8204.394817352295, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 408.7960720062256, + "msecs": 976.078987121582, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8064.206123352051, - "thread": 140379336402752, + "relativeCreated": 8204.577922821045, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002751350402832031 + "time_consumption": 0.00018310546875 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:16,409", - "created": 1610361436.409695, + "asctime": "2021-01-14 00:25:58,976", + "created": 1610580358.976682, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15790,8 +15790,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:16,409", - "created": 1610361436.409246, + "asctime": "2021-01-14 00:25:58,976", + "created": 1610580358.976355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15801,14 +15801,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 409.24596786499023, + "msecs": 976.3550758361816, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8064.656019210815, - "thread": 140379336402752, + "relativeCreated": 8204.854011535645, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -15817,8 +15817,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:16,409", - "created": 1610361436.409456, + "asctime": "2021-01-14 00:25:58,976", + "created": 1610580358.97652, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15828,32 +15828,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 409.4560146331787, + "msecs": 976.5200614929199, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8064.866065979004, - "thread": 140379336402752, + "relativeCreated": 8205.018997192383, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 409.6949100494385, + "msecs": 976.6819477081299, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8065.104961395264, - "thread": 140379336402752, + "relativeCreated": 8205.180883407593, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00023889541625976562 + "time_consumption": 0.00016188621520996094 }, { "args": [], - "asctime": "2021-01-11 11:37:16,711", - "created": 1610361436.71145, + "asctime": "2021-01-14 00:25:59,278", + "created": 1610580359.278711, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -15871,25 +15871,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:16,410", - "created": 1610361436.410165, + "asctime": "2021-01-14 00:25:58,977", + "created": 1610580358.977188, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 410.16507148742676, + "msecs": 977.1881103515625, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8065.575122833252, - "thread": 140379336402752, + "relativeCreated": 8205.687046051025, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -15899,46 +15899,46 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:16,711", - "created": 1610361436.711134, + "asctime": "2021-01-14 00:25:59,278", + "created": 1610580359.278319, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 711.1339569091797, + "msecs": 278.3188819885254, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8366.544008255005, - "thread": 140379336402752, + "relativeCreated": 8506.817817687988, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 711.4500999450684, + "msecs": 278.71108055114746, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8366.860151290894, - "thread": 140379336402752, + "relativeCreated": 8507.21001625061, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003161430358886719 + "time_consumption": 0.0003921985626220703 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:16,712", - "created": 1610361436.712102, + "asctime": "2021-01-14 00:25:59,279", + "created": 1610580359.279879, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15955,8 +15955,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:16,711", - "created": 1610361436.711763, + "asctime": "2021-01-14 00:25:59,279", + "created": 1610580359.279421, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15966,14 +15966,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 711.7629051208496, + "msecs": 279.4210910797119, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8367.172956466675, - "thread": 140379336402752, + "relativeCreated": 8507.920026779175, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -15982,8 +15982,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:16,711", - "created": 1610361436.711939, + "asctime": "2021-01-14 00:25:59,279", + "created": 1610580359.27966, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15993,35 +15993,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 711.9390964508057, + "msecs": 279.6599864959717, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8367.34914779663, - "thread": 140379336402752, + "relativeCreated": 8508.158922195435, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 712.101936340332, + "msecs": 279.879093170166, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8367.511987686157, - "thread": 140379336402752, + "relativeCreated": 8508.378028869629, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001628398895263672 + "time_consumption": 0.00021910667419433594 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:16,712", - "created": 1610361436.712686, + "asctime": "2021-01-14 00:25:59,280", + "created": 1610580359.280696, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16038,8 +16038,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:16,712", - "created": 1610361436.712378, + "asctime": "2021-01-14 00:25:59,280", + "created": 1610580359.280231, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16049,14 +16049,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 712.3780250549316, + "msecs": 280.2309989929199, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8367.788076400757, - "thread": 140379336402752, + "relativeCreated": 8508.729934692383, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -16065,8 +16065,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:16,712", - "created": 1610361436.712535, + "asctime": "2021-01-14 00:25:59,280", + "created": 1610580359.280463, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16076,35 +16076,35 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 712.5349044799805, + "msecs": 280.46298027038574, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8367.944955825806, - "thread": 140379336402752, + "relativeCreated": 8508.961915969849, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 712.6860618591309, + "msecs": 280.69591522216797, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8368.096113204956, - "thread": 140379336402752, + "relativeCreated": 8509.19485092163, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00015115737915039062 + "time_consumption": 0.00023293495178222656 }, { "args": [ 17, 34 ], - "asctime": "2021-01-11 11:37:16,713", - "created": 1610361436.713264, + "asctime": "2021-01-14 00:25:59,281", + "created": 1610580359.281399, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16120,43 +16120,43 @@ "prot-client:", "service: 17, data_id: 34" ], - "asctime": "2021-01-11 11:37:16,713", - "created": 1610361436.71311, + "asctime": "2021-01-14 00:25:59,281", + "created": 1610580359.281218, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 713.1099700927734, + "msecs": 281.2180519104004, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8368.520021438599, - "thread": 140379336402752, + "relativeCreated": 8509.716987609863, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 713.263988494873, + "msecs": 281.3990116119385, "msg": "Added msg1 to client whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8368.674039840698, - "thread": 140379336402752, + "relativeCreated": 8509.897947311401, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.00018095970153808594 }, { "args": [], - "asctime": "2021-01-11 11:37:17,015", - "created": 1610361437.015465, + "asctime": "2021-01-14 00:25:59,583", + "created": 1610580359.583679, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16175,25 +16175,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:16,713", - "created": 1610361436.713599, + "asctime": "2021-01-14 00:25:59,281", + "created": 1610580359.281789, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 713.5989665985107, + "msecs": 281.78906440734863, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8369.009017944336, - "thread": 140379336402752, + "relativeCreated": 8510.288000106812, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -16201,8 +16201,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:16,729", - "created": 1610361436.729905, + "asctime": "2021-01-14 00:25:59,300", + "created": 1610580359.300315, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16212,14 +16212,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 729.9048900604248, + "msecs": 300.31490325927734, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8385.31494140625, - "thread": 140378892121856, + "relativeCreated": 8528.81383895874, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16227,8 +16227,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:16,730", - "created": 1610361436.730315, + "asctime": "2021-01-14 00:25:59,300", + "created": 1610580359.300605, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16238,14 +16238,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 730.3149700164795, + "msecs": 300.60505867004395, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8385.725021362305, - "thread": 140378892121856, + "relativeCreated": 8529.103994369507, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16253,8 +16253,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:16,730", - "created": 1610361436.730484, + "asctime": "2021-01-14 00:25:59,300", + "created": 1610580359.30072, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16264,14 +16264,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 730.4840087890625, + "msecs": 300.7199764251709, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8385.894060134888, - "thread": 140378892121856, + "relativeCreated": 8529.218912124634, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16280,8 +16280,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:16,730", - "created": 1610361436.730626, + "asctime": "2021-01-14 00:25:59,300", + "created": 1610580359.300816, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16291,14 +16291,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 730.626106262207, + "msecs": 300.8160591125488, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8386.036157608032, - "thread": 140378892121856, + "relativeCreated": 8529.314994812012, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16306,8 +16306,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:16,730", - "created": 1610361436.730798, + "asctime": "2021-01-14 00:25:59,300", + "created": 1610580359.30093, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16317,14 +16317,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 730.7980060577393, + "msecs": 300.9300231933594, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8386.208057403564, - "thread": 140378892121856, + "relativeCreated": 8529.428958892822, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16333,8 +16333,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:16,730", - "created": 1610361436.73095, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.301032, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16344,14 +16344,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 730.950117111206, + "msecs": 301.03206634521484, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8386.360168457031, - "thread": 140378892121856, + "relativeCreated": 8529.531002044678, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16359,8 +16359,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:16,731", - "created": 1610361436.731127, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.301177, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16370,14 +16370,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 731.1270236968994, + "msecs": 301.1770248413086, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8386.537075042725, - "thread": 140378892121856, + "relativeCreated": 8529.675960540771, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16386,8 +16386,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:16,731", - "created": 1610361436.73128, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.30127, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16397,14 +16397,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 731.2800884246826, + "msecs": 301.2700080871582, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8386.690139770508, - "thread": 140378892121856, + "relativeCreated": 8529.768943786621, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16412,8 +16412,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:16,731", - "created": 1610361436.731486, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.301377, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16423,14 +16423,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 731.4860820770264, + "msecs": 301.3770580291748, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8386.896133422852, - "thread": 140378892121856, + "relativeCreated": 8529.875993728638, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16439,8 +16439,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:16,731", - "created": 1610361436.731648, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.301475, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16450,14 +16450,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 731.6479682922363, + "msecs": 301.47504806518555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8387.058019638062, - "thread": 140378892121856, + "relativeCreated": 8529.973983764648, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16465,8 +16465,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:16,732", - "created": 1610361436.732029, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.301672, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16476,14 +16476,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 732.0289611816406, + "msecs": 301.67198181152344, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8387.439012527466, - "thread": 140378892121856, + "relativeCreated": 8530.170917510986, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16491,8 +16491,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:16,732", - "created": 1610361436.732285, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.30181, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16502,14 +16502,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 732.2850227355957, + "msecs": 301.81002616882324, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8387.69507408142, - "thread": 140378892121856, + "relativeCreated": 8530.308961868286, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16517,8 +16517,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:16,732", - "created": 1610361436.732537, + "asctime": "2021-01-14 00:25:59,301", + "created": 1610580359.30195, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16528,14 +16528,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 732.537031173706, + "msecs": 301.94997787475586, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8387.947082519531, - "thread": 140378892121856, + "relativeCreated": 8530.448913574219, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16544,8 +16544,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:16,732", - "created": 1610361436.732701, + "asctime": "2021-01-14 00:25:59,302", + "created": 1610580359.302055, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16555,14 +16555,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 732.7010631561279, + "msecs": 302.05488204956055, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8388.111114501953, - "thread": 140378892121856, + "relativeCreated": 8530.553817749023, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16570,8 +16570,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:16,732", - "created": 1610361436.732913, + "asctime": "2021-01-14 00:25:59,302", + "created": 1610580359.302197, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16581,14 +16581,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 732.9130172729492, + "msecs": 302.1969795227051, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8388.323068618774, - "thread": 140378892121856, + "relativeCreated": 8530.695915222168, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16597,8 +16597,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:16,733", - "created": 1610361436.733067, + "asctime": "2021-01-14 00:25:59,302", + "created": 1610580359.302303, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16608,14 +16608,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 733.0670356750488, + "msecs": 302.3030757904053, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8388.477087020874, - "thread": 140378892121856, + "relativeCreated": 8530.802011489868, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16623,8 +16623,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" ], - "asctime": "2021-01-11 11:37:16,733", - "created": 1610361436.733451, + "asctime": "2021-01-14 00:25:59,302", + "created": 1610580359.302561, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -16634,14 +16634,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", "module": "stp", - "msecs": 733.4508895874023, + "msecs": 302.56104469299316, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8388.860940933228, - "thread": 140378892121856, + "relativeCreated": 8531.059980392456, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16652,50 +16652,50 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:16,733", - "created": 1610361436.733866, + "asctime": "2021-01-14 00:25:59,302", + "created": 1610580359.302851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 733.8659763336182, + "msecs": 302.85096168518066, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8389.276027679443, - "thread": 140378892121856, + "relativeCreated": 8531.349897384644, + "thread": 140019255719680, "threadName": "Thread-11" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:16,734", - "created": 1610361436.734057, + "asctime": "2021-01-14 00:25:59,302", + "created": 1610580359.302981, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 463, + "lineno": 475, "message": "prot-server: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 734.0569496154785, + "msecs": 302.980899810791, "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8389.467000961304, - "thread": 140378892121856, + "relativeCreated": 8531.479835510254, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -16705,46 +16705,46 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:17,015", - "created": 1610361437.015121, + "asctime": "2021-01-14 00:25:59,583", + "created": 1610580359.583315, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 15.120983123779297, + "msecs": 583.3148956298828, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8670.531034469604, - "thread": 140379336402752, + "relativeCreated": 8811.813831329346, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 15.465021133422852, + "msecs": 583.6789608001709, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8670.875072479248, - "thread": 140379336402752, + "relativeCreated": 8812.177896499634, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003440380096435547 + "time_consumption": 0.00036406517028808594 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:17,016", - "created": 1610361437.016414, + "asctime": "2021-01-14 00:25:59,584", + "created": 1610580359.584681, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16761,8 +16761,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:17,015", - "created": 1610361437.015872, + "asctime": "2021-01-14 00:25:59,584", + "created": 1610580359.584297, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16772,14 +16772,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 15.872001647949219, + "msecs": 584.2969417572021, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8671.282052993774, - "thread": 140379336402752, + "relativeCreated": 8812.795877456665, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -16788,8 +16788,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:17,016", - "created": 1610361437.016077, + "asctime": "2021-01-14 00:25:59,584", + "created": 1610580359.584502, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16799,35 +16799,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 16.077041625976562, + "msecs": 584.5019817352295, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8671.487092971802, - "thread": 140379336402752, + "relativeCreated": 8813.000917434692, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 16.41392707824707, + "msecs": 584.6810340881348, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8671.823978424072, - "thread": 140379336402752, + "relativeCreated": 8813.179969787598, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003368854522705078 + "time_consumption": 0.00017905235290527344 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:17,017", - "created": 1610361437.017127, + "asctime": "2021-01-14 00:25:59,585", + "created": 1610580359.585319, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16844,8 +16844,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:17,016", - "created": 1610361437.016728, + "asctime": "2021-01-14 00:25:59,584", + "created": 1610580359.584957, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16855,14 +16855,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 16.727924346923828, + "msecs": 584.9568843841553, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8672.137975692749, - "thread": 140379336402752, + "relativeCreated": 8813.455820083618, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -16871,8 +16871,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:17,016", - "created": 1610361437.01694, + "asctime": "2021-01-14 00:25:59,585", + "created": 1610580359.585151, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16882,32 +16882,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 16.94011688232422, + "msecs": 585.150957107544, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8672.35016822815, - "thread": 140379336402752, + "relativeCreated": 8813.649892807007, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 17.127037048339844, + "msecs": 585.3190422058105, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8672.537088394165, - "thread": 140379336402752, + "relativeCreated": 8813.817977905273, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.000186920166015625 + "time_consumption": 0.00016808509826660156 }, { "args": [], - "asctime": "2021-01-11 11:37:17,319", - "created": 1610361437.319023, + "asctime": "2021-01-14 00:25:59,887", + "created": 1610580359.887151, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16925,25 +16925,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:17,017", - "created": 1610361437.01752, + "asctime": "2021-01-14 00:25:59,585", + "created": 1610580359.585649, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 17.51995086669922, + "msecs": 585.6490135192871, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8672.930002212524, - "thread": 140379336402752, + "relativeCreated": 8814.14794921875, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -16953,46 +16953,46 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:17,318", - "created": 1610361437.318645, + "asctime": "2021-01-14 00:25:59,886", + "created": 1610580359.886795, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 318.6450004577637, + "msecs": 886.7950439453125, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8974.055051803589, - "thread": 140379336402752, + "relativeCreated": 9115.293979644775, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 319.02289390563965, + "msecs": 887.1510028839111, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8974.432945251465, - "thread": 140379336402752, + "relativeCreated": 9115.649938583374, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00037789344787597656 + "time_consumption": 0.0003559589385986328 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:17,319", - "created": 1610361437.319995, + "asctime": "2021-01-14 00:25:59,887", + "created": 1610580359.88788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17009,8 +17009,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:17,319", - "created": 1610361437.319592, + "asctime": "2021-01-14 00:25:59,887", + "created": 1610580359.887513, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17020,14 +17020,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 319.5919990539551, + "msecs": 887.5129222869873, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8975.00205039978, - "thread": 140379336402752, + "relativeCreated": 9116.01185798645, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -17036,8 +17036,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:17,319", - "created": 1610361437.31981, + "asctime": "2021-01-14 00:25:59,887", + "created": 1610580359.887703, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17047,35 +17047,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 319.8099136352539, + "msecs": 887.7029418945312, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8975.21996498108, - "thread": 140379336402752, + "relativeCreated": 9116.201877593994, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 319.9949264526367, + "msecs": 887.8800868988037, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8975.404977798462, - "thread": 140379336402752, + "relativeCreated": 9116.379022598267, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 + "time_consumption": 0.00017714500427246094 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:17,320", - "created": 1610361437.320629, + "asctime": "2021-01-14 00:25:59,888", + "created": 1610580359.888477, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17092,8 +17092,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:17,320", - "created": 1610361437.320271, + "asctime": "2021-01-14 00:25:59,888", + "created": 1610580359.888146, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17103,14 +17103,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 320.2710151672363, + "msecs": 888.145923614502, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8975.681066513062, - "thread": 140379336402752, + "relativeCreated": 9116.644859313965, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -17119,8 +17119,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:17,320", - "created": 1610361437.32046, + "asctime": "2021-01-14 00:25:59,888", + "created": 1610580359.888308, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17130,35 +17130,35 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 320.46008110046387, + "msecs": 888.308048248291, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8975.870132446289, - "thread": 140379336402752, + "relativeCreated": 9116.806983947754, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 320.6288814544678, + "msecs": 888.477087020874, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8976.038932800293, - "thread": 140379336402752, + "relativeCreated": 9116.976022720337, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00016880035400390625 + "time_consumption": 0.0001690387725830078 }, { "args": [ 17, 34 ], - "asctime": "2021-01-11 11:37:17,321", - "created": 1610361437.321145, + "asctime": "2021-01-14 00:25:59,889", + "created": 1610580359.889087, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -17174,43 +17174,43 @@ "prot-server:", "service: 17, data_id: 34" ], - "asctime": "2021-01-11 11:37:17,320", - "created": 1610361437.320972, + "asctime": "2021-01-14 00:25:59,888", + "created": 1610580359.888831, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 320.9719657897949, + "msecs": 888.8309001922607, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8976.38201713562, - "thread": 140379336402752, + "relativeCreated": 9117.329835891724, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 321.14505767822266, + "msecs": 889.0869617462158, "msg": "Added msg1 to server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8976.555109024048, - "thread": 140379336402752, + "relativeCreated": 9117.585897445679, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017309188842773438 + "time_consumption": 0.0002560615539550781 }, { "args": [], - "asctime": "2021-01-11 11:37:17,522", - "created": 1610361437.522699, + "asctime": "2021-01-14 00:26:00,091", + "created": 1610580360.091216, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -17229,25 +17229,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:17,321", - "created": 1610361437.321517, + "asctime": "2021-01-14 00:25:59,889", + "created": 1610580359.889602, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 321.5169906616211, + "msecs": 889.6019458770752, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8976.927042007446, - "thread": 140379336402752, + "relativeCreated": 9118.100881576538, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -17255,8 +17255,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:17,336", - "created": 1610361437.336336, + "asctime": "2021-01-14 00:25:59,905", + "created": 1610580359.905264, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -17266,14 +17266,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 336.3358974456787, + "msecs": 905.2639007568359, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8991.745948791504, - "thread": 140378892121856, + "relativeCreated": 9133.762836456299, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17281,8 +17281,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:17,336", - "created": 1610361437.33687, + "asctime": "2021-01-14 00:25:59,905", + "created": 1610580359.905771, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -17292,14 +17292,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 336.8699550628662, + "msecs": 905.771017074585, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8992.280006408691, - "thread": 140378892121856, + "relativeCreated": 9134.269952774048, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17307,8 +17307,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,337", - "created": 1610361437.33708, + "asctime": "2021-01-14 00:25:59,905", + "created": 1610580359.905996, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17318,14 +17318,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 337.0800018310547, + "msecs": 905.9960842132568, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8992.49005317688, - "thread": 140378892121856, + "relativeCreated": 9134.49501991272, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17334,8 +17334,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:17,337", - "created": 1610361437.337261, + "asctime": "2021-01-14 00:25:59,906", + "created": 1610580359.906191, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17345,14 +17345,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 337.2609615325928, + "msecs": 906.1911106109619, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8992.671012878418, - "thread": 140378892121856, + "relativeCreated": 9134.690046310425, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17360,8 +17360,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,337", - "created": 1610361437.337502, + "asctime": "2021-01-14 00:25:59,906", + "created": 1610580359.906454, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17371,14 +17371,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 337.50200271606445, + "msecs": 906.4540863037109, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8992.91205406189, - "thread": 140378892121856, + "relativeCreated": 9134.953022003174, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17387,8 +17387,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,337", - "created": 1610361437.337665, + "asctime": "2021-01-14 00:25:59,906", + "created": 1610580359.906638, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17398,14 +17398,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 337.6650810241699, + "msecs": 906.6379070281982, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8993.075132369995, - "thread": 140378892121856, + "relativeCreated": 9135.136842727661, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17413,8 +17413,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,337", - "created": 1610361437.337885, + "asctime": "2021-01-14 00:25:59,906", + "created": 1610580359.906889, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17424,14 +17424,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 337.88490295410156, + "msecs": 906.8889617919922, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8993.294954299927, - "thread": 140378892121856, + "relativeCreated": 9135.387897491455, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17440,8 +17440,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,338", - "created": 1610361437.338041, + "asctime": "2021-01-14 00:25:59,907", + "created": 1610580359.907067, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17451,14 +17451,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 338.0410671234131, + "msecs": 907.067060470581, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8993.451118469238, - "thread": 140378892121856, + "relativeCreated": 9135.565996170044, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17466,8 +17466,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,338", - "created": 1610361437.338237, + "asctime": "2021-01-14 00:25:59,907", + "created": 1610580359.907291, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17477,14 +17477,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 338.23704719543457, + "msecs": 907.2909355163574, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8993.64709854126, - "thread": 140378892121856, + "relativeCreated": 9135.78987121582, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17493,8 +17493,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,338", - "created": 1610361437.338399, + "asctime": "2021-01-14 00:25:59,907", + "created": 1610580359.907478, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17504,14 +17504,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 338.39893341064453, + "msecs": 907.4780941009521, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8993.80898475647, - "thread": 140378892121856, + "relativeCreated": 9135.977029800415, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17519,8 +17519,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:17,338", - "created": 1610361437.338778, + "asctime": "2021-01-14 00:25:59,907", + "created": 1610580359.907922, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -17530,14 +17530,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 338.778018951416, + "msecs": 907.9220294952393, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8994.188070297241, - "thread": 140378892121856, + "relativeCreated": 9136.420965194702, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17545,8 +17545,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:17,339", - "created": 1610361437.339037, + "asctime": "2021-01-14 00:25:59,908", + "created": 1610580359.908213, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -17556,14 +17556,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 339.0369415283203, + "msecs": 908.2129001617432, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8994.446992874146, - "thread": 140378892121856, + "relativeCreated": 9136.711835861206, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17571,8 +17571,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,339", - "created": 1610361437.339284, + "asctime": "2021-01-14 00:25:59,908", + "created": 1610580359.908502, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17582,14 +17582,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 339.28394317626953, + "msecs": 908.5021018981934, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8994.693994522095, - "thread": 140378892121856, + "relativeCreated": 9137.001037597656, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17598,8 +17598,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,339", - "created": 1610361437.339442, + "asctime": "2021-01-14 00:25:59,908", + "created": 1610580359.908681, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17609,14 +17609,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 339.44201469421387, + "msecs": 908.6809158325195, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8994.852066040039, - "thread": 140378892121856, + "relativeCreated": 9137.179851531982, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17624,8 +17624,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,339", - "created": 1610361437.339638, + "asctime": "2021-01-14 00:25:59,908", + "created": 1610580359.908893, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17635,14 +17635,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 339.63799476623535, + "msecs": 908.8931083679199, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8995.04804611206, - "thread": 140378892121856, + "relativeCreated": 9137.392044067383, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17651,8 +17651,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:17,339", - "created": 1610361437.339791, + "asctime": "2021-01-14 00:25:59,909", + "created": 1610580359.909065, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17662,14 +17662,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 339.79105949401855, + "msecs": 909.0650081634521, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8995.201110839844, - "thread": 140378892121856, + "relativeCreated": 9137.563943862915, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17677,8 +17677,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" ], - "asctime": "2021-01-11 11:37:17,340", - "created": 1610361437.340193, + "asctime": "2021-01-14 00:25:59,909", + "created": 1610580359.909647, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -17688,14 +17688,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", "module": "stp", - "msecs": 340.1930332183838, + "msecs": 909.6469879150391, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8995.603084564209, - "thread": 140378892121856, + "relativeCreated": 9138.145923614502, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -17706,71 +17706,71 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:17,340", - "created": 1610361437.340623, + "asctime": "2021-01-14 00:25:59,910", + "created": 1610580359.910115, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 340.6229019165039, + "msecs": 910.1150035858154, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8996.03295326233, - "thread": 140378892121856, + "relativeCreated": 9138.613939285278, + "thread": 140019255719680, "threadName": "Thread-11" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:17,340", - "created": 1610361437.34091, + "asctime": "2021-01-14 00:25:59,910", + "created": 1610580359.910415, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 340.9099578857422, + "msecs": 910.4149341583252, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 8996.320009231567, - "thread": 140378892121856, + "relativeCreated": 9138.913869857788, + "thread": 140019255719680, "threadName": "Thread-11" } ], - "msecs": 522.6991176605225, + "msecs": 91.2160873413086, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9178.109169006348, - "thread": 140379336402752, + "relativeCreated": 9319.715023040771, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.18178915977478027 + "time_consumption": 0.1808011531829834 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:17,523", - "created": 1610361437.523608, + "asctime": "2021-01-14 00:26:00,092", + "created": 1610580360.092143, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17787,8 +17787,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:17,523", - "created": 1610361437.523224, + "asctime": "2021-01-14 00:26:00,091", + "created": 1610580360.091755, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17798,14 +17798,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 523.2241153717041, + "msecs": 91.75491333007812, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9178.63416671753, - "thread": 140379336402752, + "relativeCreated": 9320.253849029541, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -17814,8 +17814,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:17,523", - "created": 1610361437.523428, + "asctime": "2021-01-14 00:26:00,091", + "created": 1610580360.091961, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17825,35 +17825,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 523.4279632568359, + "msecs": 91.96090698242188, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9178.838014602661, - "thread": 140379336402752, + "relativeCreated": 9320.459842681885, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 523.6079692840576, + "msecs": 92.14305877685547, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9179.018020629883, - "thread": 140379336402752, + "relativeCreated": 9320.641994476318, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 + "time_consumption": 0.00018215179443359375 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:17,524", - "created": 1610361437.524285, + "asctime": "2021-01-14 00:26:00,092", + "created": 1610580360.092809, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17870,8 +17870,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:17,523", - "created": 1610361437.523915, + "asctime": "2021-01-14 00:26:00,092", + "created": 1610580360.092437, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17881,14 +17881,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 523.9150524139404, + "msecs": 92.4370288848877, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9179.325103759766, - "thread": 140379336402752, + "relativeCreated": 9320.93596458435, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -17897,8 +17897,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:17,524", - "created": 1610361437.524096, + "asctime": "2021-01-14 00:26:00,092", + "created": 1610580360.09262, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17908,32 +17908,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 524.0960121154785, + "msecs": 92.6198959350586, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9179.506063461304, - "thread": 140379336402752, + "relativeCreated": 9321.118831634521, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 524.285078048706, + "msecs": 92.80896186828613, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9179.695129394531, - "thread": 140379336402752, + "relativeCreated": 9321.307897567749, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.00018906593322753906 }, { "args": [], - "asctime": "2021-01-11 11:37:17,825", - "created": 1610361437.825964, + "asctime": "2021-01-14 00:26:00,394", + "created": 1610580360.394664, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -17951,25 +17951,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:17,524", - "created": 1610361437.524619, + "asctime": "2021-01-14 00:26:00,093", + "created": 1610580360.0932, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 524.6191024780273, + "msecs": 93.1999683380127, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9180.029153823853, - "thread": 140379336402752, + "relativeCreated": 9321.698904037476, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -17979,46 +17979,46 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:17,825", - "created": 1610361437.825588, + "asctime": "2021-01-14 00:26:00,394", + "created": 1610580360.394277, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 825.5879878997803, + "msecs": 394.27709579467773, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9480.998039245605, - "thread": 140379336402752, + "relativeCreated": 9622.77603149414, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 825.9639739990234, + "msecs": 394.66404914855957, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9481.374025344849, - "thread": 140379336402752, + "relativeCreated": 9623.162984848022, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00037598609924316406 + "time_consumption": 0.00038695335388183594 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:17,826", - "created": 1610361437.826699, + "asctime": "2021-01-14 00:26:00,395", + "created": 1610580360.395376, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18035,8 +18035,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:17,826", - "created": 1610361437.826313, + "asctime": "2021-01-14 00:26:00,395", + "created": 1610580360.395012, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18046,14 +18046,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 826.3130187988281, + "msecs": 395.01190185546875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9481.723070144653, - "thread": 140379336402752, + "relativeCreated": 9623.510837554932, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -18062,8 +18062,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:17,826", - "created": 1610361437.826502, + "asctime": "2021-01-14 00:26:00,395", + "created": 1610580360.395201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18073,35 +18073,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 826.5020847320557, + "msecs": 395.2009677886963, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9481.91213607788, - "thread": 140379336402752, + "relativeCreated": 9623.69990348816, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 826.6990184783936, + "msecs": 395.37596702575684, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9482.109069824219, - "thread": 140379336402752, + "relativeCreated": 9623.87490272522, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00019693374633789062 + "time_consumption": 0.00017499923706054688 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:17,827", - "created": 1610361437.827513, + "asctime": "2021-01-14 00:26:00,395", + "created": 1610580360.395973, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18118,8 +18118,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:17,827", - "created": 1610361437.827029, + "asctime": "2021-01-14 00:26:00,395", + "created": 1610580360.395642, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18129,14 +18129,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 827.0289897918701, + "msecs": 395.6420421600342, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9482.439041137695, - "thread": 140379336402752, + "relativeCreated": 9624.140977859497, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -18145,8 +18145,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:17,827", - "created": 1610361437.82727, + "asctime": "2021-01-14 00:26:00,395", + "created": 1610580360.395805, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18156,35 +18156,35 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 827.2700309753418, + "msecs": 395.80488204956055, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9482.680082321167, - "thread": 140379336402752, + "relativeCreated": 9624.303817749023, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 827.5129795074463, + "msecs": 395.97296714782715, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9482.923030853271, - "thread": 140379336402752, + "relativeCreated": 9624.47190284729, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002429485321044922 + "time_consumption": 0.00016808509826660156 }, { "args": [ 17, 35 ], - "asctime": "2021-01-11 11:37:17,828", - "created": 1610361437.8287, + "asctime": "2021-01-14 00:26:00,396", + "created": 1610580360.396615, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -18200,25 +18200,25 @@ "prot-client:", "service: 17, data_id: 35" ], - "asctime": "2021-01-11 11:37:17,828", - "created": 1610361437.828265, + "asctime": "2021-01-14 00:26:00,396", + "created": 1610580360.396268, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 828.2649517059326, + "msecs": 396.2678909301758, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9483.675003051758, - "thread": 140379336402752, + "relativeCreated": 9624.766826629639, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -18226,43 +18226,43 @@ "prot-server:", "service: 17, data_id: 35" ], - "asctime": "2021-01-11 11:37:17,828", - "created": 1610361437.828518, + "asctime": "2021-01-14 00:26:00,396", + "created": 1610580360.396458, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 828.5179138183594, + "msecs": 396.4579105377197, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9483.927965164185, - "thread": 140379336402752, + "relativeCreated": 9624.956846237183, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 828.700065612793, + "msecs": 396.61502838134766, "msg": "Added msg2 to client and server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9484.110116958618, - "thread": 140379336402752, + "relativeCreated": 9625.11396408081, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018215179443359375 + "time_consumption": 0.0001571178436279297 }, { "args": [], - "asctime": "2021-01-11 11:37:18,030", - "created": 1610361438.030278, + "asctime": "2021-01-14 00:26:00,598", + "created": 1610580360.598222, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -18281,25 +18281,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:17,829", - "created": 1610361437.829149, + "asctime": "2021-01-14 00:26:00,397", + "created": 1610580360.397, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 829.1490077972412, + "msecs": 397.0000743865967, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9484.559059143066, - "thread": 140379336402752, + "relativeCreated": 9625.49901008606, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -18307,8 +18307,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:17,843", - "created": 1610361437.843473, + "asctime": "2021-01-14 00:26:00,412", + "created": 1610580360.412505, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -18318,14 +18318,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 843.472957611084, + "msecs": 412.5049114227295, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9498.88300895691, - "thread": 140378892121856, + "relativeCreated": 9641.003847122192, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18333,8 +18333,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:17,844", - "created": 1610361437.844377, + "asctime": "2021-01-14 00:26:00,413", + "created": 1610580360.413037, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -18344,14 +18344,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 844.3770408630371, + "msecs": 413.0370616912842, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9499.787092208862, - "thread": 140378892121856, + "relativeCreated": 9641.535997390747, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18359,8 +18359,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,844", - "created": 1610361437.844703, + "asctime": "2021-01-14 00:26:00,413", + "created": 1610580360.413244, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18370,14 +18370,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 844.702959060669, + "msecs": 413.24400901794434, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9500.113010406494, - "thread": 140378892121856, + "relativeCreated": 9641.742944717407, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18386,8 +18386,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:17,845", - "created": 1610361437.845003, + "asctime": "2021-01-14 00:26:00,413", + "created": 1610580360.41342, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18397,14 +18397,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 845.0028896331787, + "msecs": 413.4199619293213, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9500.412940979004, - "thread": 140378892121856, + "relativeCreated": 9641.918897628784, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18412,8 +18412,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,845", - "created": 1610361437.845434, + "asctime": "2021-01-14 00:26:00,413", + "created": 1610580360.413585, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18423,14 +18423,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 845.4339504241943, + "msecs": 413.58494758605957, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9500.84400177002, - "thread": 140378892121856, + "relativeCreated": 9642.083883285522, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18439,8 +18439,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,845", - "created": 1610361437.845652, + "asctime": "2021-01-14 00:26:00,413", + "created": 1610580360.413698, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18450,14 +18450,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 845.6521034240723, + "msecs": 413.6979579925537, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9501.062154769897, - "thread": 140378892121856, + "relativeCreated": 9642.196893692017, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18465,8 +18465,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,845", - "created": 1610361437.845944, + "asctime": "2021-01-14 00:26:00,413", + "created": 1610580360.413849, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18476,14 +18476,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 845.9439277648926, + "msecs": 413.8491153717041, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9501.353979110718, - "thread": 140378892121856, + "relativeCreated": 9642.348051071167, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18492,8 +18492,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,846", - "created": 1610361437.846146, + "asctime": "2021-01-14 00:26:00,413", + "created": 1610580360.413955, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18503,14 +18503,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 846.1461067199707, + "msecs": 413.9549732208252, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9501.556158065796, - "thread": 140378892121856, + "relativeCreated": 9642.453908920288, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18518,8 +18518,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,846", - "created": 1610361437.846418, + "asctime": "2021-01-14 00:26:00,414", + "created": 1610580360.414098, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18529,14 +18529,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 846.4179039001465, + "msecs": 414.09802436828613, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9501.827955245972, - "thread": 140378892121856, + "relativeCreated": 9642.596960067749, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18545,8 +18545,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,846", - "created": 1610361437.846614, + "asctime": "2021-01-14 00:26:00,414", + "created": 1610580360.414286, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18556,14 +18556,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 846.613883972168, + "msecs": 414.28589820861816, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9502.023935317993, - "thread": 140378892121856, + "relativeCreated": 9642.784833908081, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18571,8 +18571,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:17,847", - "created": 1610361437.847092, + "asctime": "2021-01-14 00:26:00,414", + "created": 1610580360.414656, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -18582,14 +18582,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 847.0919132232666, + "msecs": 414.6559238433838, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9502.501964569092, - "thread": 140378892121856, + "relativeCreated": 9643.154859542847, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18597,8 +18597,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:17,847", - "created": 1610361437.847388, + "asctime": "2021-01-14 00:26:00,414", + "created": 1610580360.414894, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -18608,14 +18608,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 847.3880290985107, + "msecs": 414.89410400390625, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9502.798080444336, - "thread": 140378892121856, + "relativeCreated": 9643.39303970337, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18623,8 +18623,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,847", - "created": 1610361437.847526, + "asctime": "2021-01-14 00:26:00,415", + "created": 1610580360.415123, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18634,14 +18634,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 847.5260734558105, + "msecs": 415.12298583984375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9502.936124801636, - "thread": 140378892121856, + "relativeCreated": 9643.621921539307, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18650,8 +18650,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:17,847", - "created": 1610361437.847622, + "asctime": "2021-01-14 00:26:00,415", + "created": 1610580360.415291, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18661,14 +18661,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 847.6219177246094, + "msecs": 415.29107093811035, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9503.031969070435, - "thread": 140378892121856, + "relativeCreated": 9643.790006637573, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18676,8 +18676,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:17,847", - "created": 1610361437.847727, + "asctime": "2021-01-14 00:26:00,415", + "created": 1610580360.415466, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18687,14 +18687,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 847.7270603179932, + "msecs": 415.4660701751709, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9503.137111663818, - "thread": 140378892121856, + "relativeCreated": 9643.965005874634, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18703,8 +18703,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:17,847", - "created": 1610361437.847811, + "asctime": "2021-01-14 00:26:00,415", + "created": 1610580360.415607, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18714,14 +18714,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 847.8109836578369, + "msecs": 415.6069755554199, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9503.221035003662, - "thread": 140378892121856, + "relativeCreated": 9644.105911254883, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18729,8 +18729,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" ], - "asctime": "2021-01-11 11:37:17,848", - "created": 1610361437.84802, + "asctime": "2021-01-14 00:26:00,415", + "created": 1610580360.415955, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -18740,14 +18740,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", "module": "stp", - "msecs": 848.020076751709, + "msecs": 415.9550666809082, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9503.430128097534, - "thread": 140378892121856, + "relativeCreated": 9644.454002380371, + "thread": 140019255719680, "threadName": "Thread-11" }, { @@ -18758,71 +18758,71 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:17,848", - "created": 1610361437.848258, + "asctime": "2021-01-14 00:26:00,416", + "created": 1610580360.416301, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 848.2580184936523, + "msecs": 416.30101203918457, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9503.668069839478, - "thread": 140378892121856, + "relativeCreated": 9644.799947738647, + "thread": 140019255719680, "threadName": "Thread-11" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:17,848", - "created": 1610361437.848389, + "asctime": "2021-01-14 00:26:00,416", + "created": 1610580360.416511, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 848.3889102935791, + "msecs": 416.51105880737305, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9503.798961639404, - "thread": 140378892121856, + "relativeCreated": 9645.009994506836, + "thread": 140019255719680, "threadName": "Thread-11" } ], - "msecs": 30.27796745300293, + "msecs": 598.222017288208, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9685.688018798828, - "thread": 140379336402752, + "relativeCreated": 9826.72095298767, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.18188905715942383 + "time_consumption": 0.18171095848083496 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:18,031", - "created": 1610361438.031209, + "asctime": "2021-01-14 00:26:00,599", + "created": 1610580360.599673, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18839,8 +18839,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:18,030", - "created": 1610361438.030819, + "asctime": "2021-01-14 00:26:00,599", + "created": 1610580360.59907, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18850,14 +18850,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 30.818939208984375, + "msecs": 599.0700721740723, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9686.22899055481, - "thread": 140379336402752, + "relativeCreated": 9827.569007873535, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -18866,8 +18866,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:18,031", - "created": 1610361438.031026, + "asctime": "2021-01-14 00:26:00,599", + "created": 1610580360.599355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18877,35 +18877,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 31.02588653564453, + "msecs": 599.3549823760986, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9686.43593788147, - "thread": 140379336402752, + "relativeCreated": 9827.853918075562, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 31.20899200439453, + "msecs": 599.6730327606201, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9686.61904335022, - "thread": 140379336402752, + "relativeCreated": 9828.171968460083, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018310546875 + "time_consumption": 0.0003180503845214844 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:18,031", - "created": 1610361438.031864, + "asctime": "2021-01-14 00:26:00,600", + "created": 1610580360.600382, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18922,8 +18922,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:18,031", - "created": 1610361438.03151, + "asctime": "2021-01-14 00:26:00,600", + "created": 1610580360.600004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18933,14 +18933,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 31.510114669799805, + "msecs": 600.0039577484131, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9686.920166015625, - "thread": 140379336402752, + "relativeCreated": 9828.502893447876, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -18949,8 +18949,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:18,031", - "created": 1610361438.031685, + "asctime": "2021-01-14 00:26:00,600", + "created": 1610580360.600193, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18960,32 +18960,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 31.68511390686035, + "msecs": 600.1930236816406, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9687.095165252686, - "thread": 140379336402752, + "relativeCreated": 9828.691959381104, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 31.863927841186523, + "msecs": 600.3820896148682, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9687.273979187012, - "thread": 140379336402752, + "relativeCreated": 9828.881025314331, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017881393432617188 + "time_consumption": 0.00018906593322753906 }, { "args": [], - "asctime": "2021-01-11 11:37:18,233", - "created": 1610361438.233296, + "asctime": "2021-01-14 00:26:00,801", + "created": 1610580360.801846, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -19004,25 +19004,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:18,032", - "created": 1610361438.032256, + "asctime": "2021-01-14 00:26:00,600", + "created": 1610580360.600792, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 32.25588798522949, + "msecs": 600.7919311523438, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9687.665939331055, - "thread": 140379336402752, + "relativeCreated": 9829.290866851807, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19030,8 +19030,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:18,035", - "created": 1610361438.035391, + "asctime": "2021-01-14 00:26:00,606", + "created": 1610580360.606582, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19041,14 +19041,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 35.39109230041504, + "msecs": 606.5819263458252, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9690.80114364624, - "thread": 140378883729152, + "relativeCreated": 9835.080862045288, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19056,8 +19056,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:18,035", - "created": 1610361438.035929, + "asctime": "2021-01-14 00:26:00,606", + "created": 1610580360.606999, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19067,14 +19067,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 35.928964614868164, + "msecs": 606.9989204406738, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9691.339015960693, - "thread": 140378883729152, + "relativeCreated": 9835.497856140137, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19082,8 +19082,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,036", - "created": 1610361438.036136, + "asctime": "2021-01-14 00:26:00,607", + "created": 1610580360.607158, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19093,14 +19093,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 36.13591194152832, + "msecs": 607.1579456329346, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9691.545963287354, - "thread": 140378883729152, + "relativeCreated": 9835.656881332397, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19109,8 +19109,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:18,036", - "created": 1610361438.036316, + "asctime": "2021-01-14 00:26:00,607", + "created": 1610580360.607293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19120,14 +19120,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 36.31591796875, + "msecs": 607.292890548706, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9691.725969314575, - "thread": 140378883729152, + "relativeCreated": 9835.791826248169, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19135,8 +19135,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,036", - "created": 1610361438.036543, + "asctime": "2021-01-14 00:26:00,607", + "created": 1610580360.607471, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19146,14 +19146,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 36.54289245605469, + "msecs": 607.4709892272949, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9691.95294380188, - "thread": 140378883729152, + "relativeCreated": 9835.969924926758, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19162,8 +19162,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,036", - "created": 1610361438.036708, + "asctime": "2021-01-14 00:26:00,607", + "created": 1610580360.6076, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19173,14 +19173,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 36.70811653137207, + "msecs": 607.5999736785889, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.118167877197, - "thread": 140378883729152, + "relativeCreated": 9836.098909378052, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19188,8 +19188,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,036", - "created": 1610361438.036878, + "asctime": "2021-01-14 00:26:00,607", + "created": 1610580360.60776, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19199,14 +19199,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 36.878108978271484, + "msecs": 607.759952545166, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.288160324097, - "thread": 140378883729152, + "relativeCreated": 9836.258888244629, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19215,8 +19215,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,036", - "created": 1610361438.036965, + "asctime": "2021-01-14 00:26:00,607", + "created": 1610580360.607877, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19226,14 +19226,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 36.96489334106445, + "msecs": 607.8770160675049, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.37494468689, - "thread": 140378883729152, + "relativeCreated": 9836.375951766968, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19241,8 +19241,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.037063, + "asctime": "2021-01-14 00:26:00,608", + "created": 1610580360.608021, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19252,14 +19252,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 37.062883377075195, + "msecs": 608.0210208892822, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.4729347229, - "thread": 140378883729152, + "relativeCreated": 9836.519956588745, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19268,8 +19268,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.03714, + "asctime": "2021-01-14 00:26:00,608", + "created": 1610580360.608134, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19279,14 +19279,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 37.139892578125, + "msecs": 608.1340312957764, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.54994392395, - "thread": 140378883729152, + "relativeCreated": 9836.63296699524, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19294,8 +19294,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.037324, + "asctime": "2021-01-14 00:26:00,608", + "created": 1610580360.608423, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19305,14 +19305,14 @@ "lineno": 284, "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 37.323951721191406, + "msecs": 608.4229946136475, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.734003067017, - "thread": 140378883729152, + "relativeCreated": 9836.92193031311, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19320,8 +19320,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.037452, + "asctime": "2021-01-14 00:26:00,608", + "created": 1610580360.608664, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19331,14 +19331,14 @@ "lineno": 414, "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 37.451982498168945, + "msecs": 608.6640357971191, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.862033843994, - "thread": 140378883729152, + "relativeCreated": 9837.162971496582, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19346,8 +19346,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.037579, + "asctime": "2021-01-14 00:26:00,608", + "created": 1610580360.608898, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19357,14 +19357,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 37.57905960083008, + "msecs": 608.8979244232178, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9692.989110946655, - "thread": 140378883729152, + "relativeCreated": 9837.39686012268, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19373,8 +19373,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.037661, + "asctime": "2021-01-14 00:26:00,609", + "created": 1610580360.609053, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19384,14 +19384,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 37.661075592041016, + "msecs": 609.0528964996338, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9693.071126937866, - "thread": 140378883729152, + "relativeCreated": 9837.551832199097, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19399,8 +19399,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.037755, + "asctime": "2021-01-14 00:26:00,609", + "created": 1610580360.609277, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19410,14 +19410,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 37.75501251220703, + "msecs": 609.2770099639893, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9693.165063858032, - "thread": 140378883729152, + "relativeCreated": 9837.775945663452, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19426,8 +19426,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:18,037", - "created": 1610361438.037835, + "asctime": "2021-01-14 00:26:00,609", + "created": 1610580360.609421, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19437,14 +19437,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 37.834882736206055, + "msecs": 609.4210147857666, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9693.244934082031, - "thread": 140378883729152, + "relativeCreated": 9837.91995048523, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19452,8 +19452,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" ], - "asctime": "2021-01-11 11:37:18,038", - "created": 1610361438.038028, + "asctime": "2021-01-14 00:26:00,609", + "created": 1610580360.609771, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -19463,14 +19463,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", "module": "stp", - "msecs": 38.02800178527832, + "msecs": 609.7710132598877, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9693.438053131104, - "thread": 140378883729152, + "relativeCreated": 9838.26994895935, + "thread": 140019247326976, "threadName": "Thread-12" }, { @@ -19481,71 +19481,71 @@ "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:18,038", - "created": 1610361438.03825, + "asctime": "2021-01-14 00:26:00,610", + "created": 1610580360.610144, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 38.249969482421875, + "msecs": 610.1438999176025, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9693.660020828247, - "thread": 140378883729152, + "relativeCreated": 9838.642835617065, + "thread": 140019247326976, "threadName": "Thread-12" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,038", - "created": 1610361438.038388, + "asctime": "2021-01-14 00:26:00,610", + "created": 1610580360.610377, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 38.38801383972168, + "msecs": 610.3770732879639, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9693.798065185547, - "thread": 140378883729152, + "relativeCreated": 9838.876008987427, + "thread": 140019247326976, "threadName": "Thread-12" } ], - "msecs": 233.29591751098633, + "msecs": 801.8460273742676, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9888.705968856812, - "thread": 140379336402752, + "relativeCreated": 10030.34496307373, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.19490790367126465 + "time_consumption": 0.1914689540863037 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:18,234", - "created": 1610361438.23421, + "asctime": "2021-01-14 00:26:00,802", + "created": 1610580360.802233, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19562,8 +19562,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:18,233", - "created": 1610361438.23382, + "asctime": "2021-01-14 00:26:00,802", + "created": 1610580360.802092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19573,14 +19573,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 233.81996154785156, + "msecs": 802.0920753479004, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9889.230012893677, - "thread": 140379336402752, + "relativeCreated": 10030.591011047363, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19589,8 +19589,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:18,234", - "created": 1610361438.234028, + "asctime": "2021-01-14 00:26:00,802", + "created": 1610580360.802167, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19600,35 +19600,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 234.02810096740723, + "msecs": 802.1669387817383, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9889.438152313232, - "thread": 140379336402752, + "relativeCreated": 10030.665874481201, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 234.21001434326172, + "msecs": 802.2329807281494, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9889.620065689087, - "thread": 140379336402752, + "relativeCreated": 10030.731916427612, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001819133758544922 + "time_consumption": 6.604194641113281e-05 }, { "args": [ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:18,234", - "created": 1610361438.234858, + "asctime": "2021-01-14 00:26:00,802", + "created": 1610580360.802468, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19645,8 +19645,8 @@ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:18,234", - "created": 1610361438.234498, + "asctime": "2021-01-14 00:26:00,802", + "created": 1610580360.802345, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19656,14 +19656,14 @@ "lineno": 22, "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", "module": "test", - "msecs": 234.4980239868164, + "msecs": 802.3450374603271, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9889.908075332642, - "thread": 140379336402752, + "relativeCreated": 10030.84397315979, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19672,8 +19672,8 @@ "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:18,234", - "created": 1610361438.234677, + "asctime": "2021-01-14 00:26:00,802", + "created": 1610580360.802407, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19683,39 +19683,39 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 234.67707633972168, + "msecs": 802.4070262908936, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9890.087127685547, - "thread": 140379336402752, + "relativeCreated": 10030.905961990356, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 234.85803604125977, + "msecs": 802.4680614471436, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9890.268087387085, - "thread": 140379336402752, + "relativeCreated": 10030.966997146606, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018095970153808594 + "time_consumption": 6.103515625e-05 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 2.483778953552246, - "time_finished": "2021-01-11 11:37:18,234", - "time_start": "2021-01-11 11:37:15,751" + "time_consumption": 2.4834861755371094, + "time_finished": "2021-01-14 00:26:00,802", + "time_start": "2021-01-14 00:25:58,318" }, "_Lmn-kE0hEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:18,235", - "created": 1610361438.235486, + "asctime": "2021-01-14 00:26:00,802", + "created": 1610580360.802713, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19726,18 +19726,18 @@ "message": "_Lmn-kE0hEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 235.48603057861328, + "msecs": 802.7129173278809, "msg": "_Lmn-kE0hEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9890.896081924438, + "relativeCreated": 10031.211853027344, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:18,244", - "created": 1610361438.244459, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808662, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -19752,8 +19752,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,237", - "created": 1610361438.237057, + "asctime": "2021-01-14 00:26:00,803", + "created": 1610580360.803451, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19763,22 +19763,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 237.05697059631348, + "msecs": 803.4510612487793, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9892.467021942139, - "thread": 140379336402752, + "relativeCreated": 10031.949996948242, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,237", - "created": 1610361438.237756, + "asctime": "2021-01-14 00:26:00,803", + "created": 1610580360.803906, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19788,22 +19788,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 237.75601387023926, + "msecs": 803.9059638977051, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9893.166065216064, - "thread": 140379336402752, + "relativeCreated": 10032.404899597168, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,237", - "created": 1610361438.23792, + "asctime": "2021-01-14 00:26:00,804", + "created": 1610580360.804077, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19813,39 +19813,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 237.92004585266113, + "msecs": 804.0769100189209, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9893.330097198486, - "thread": 140379336402752, + "relativeCreated": 10032.575845718384, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,238", - "created": 1610361438.238252, + "asctime": "2021-01-14 00:26:00,804", + "created": 1610580360.804412, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 238.2519245147705, + "msecs": 804.4118881225586, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9893.661975860596, - "thread": 140379336402752, + "relativeCreated": 10032.910823822021, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19854,25 +19854,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:18,238", - "created": 1610361438.238426, + "asctime": "2021-01-14 00:26:00,804", + "created": 1610580360.804566, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 238.42597007751465, + "msecs": 804.5659065246582, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9893.83602142334, - "thread": 140379336402752, + "relativeCreated": 10033.064842224121, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19880,25 +19880,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:18,238", - "created": 1610361438.238614, + "asctime": "2021-01-14 00:26:00,804", + "created": 1610580360.804726, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 238.61408233642578, + "msecs": 804.7258853912354, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9894.024133682251, - "thread": 140379336402752, + "relativeCreated": 10033.224821090698, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19906,25 +19906,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:18,238", - "created": 1610361438.238773, + "asctime": "2021-01-14 00:26:00,804", + "created": 1610580360.804913, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 238.77310752868652, + "msecs": 804.9130439758301, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9894.183158874512, - "thread": 140379336402752, + "relativeCreated": 10033.411979675293, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19932,25 +19932,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:18,238", - "created": 1610361438.238937, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805084, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 238.9369010925293, + "msecs": 805.0839900970459, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9894.346952438354, - "thread": 140379336402752, + "relativeCreated": 10033.582925796509, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19958,25 +19958,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:18,239", - "created": 1610361438.239085, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.80519, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 239.08495903015137, + "msecs": 805.1900863647461, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9894.495010375977, - "thread": 140379336402752, + "relativeCreated": 10033.689022064209, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -19986,8 +19986,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:18,239", - "created": 1610361438.239241, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.80528, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19997,14 +19997,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 239.2408847808838, + "msecs": 805.2799701690674, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9894.650936126709, - "thread": 140379336402752, + "relativeCreated": 10033.77890586853, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20014,8 +20014,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:18,239", - "created": 1610361438.239395, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805373, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20025,14 +20025,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 239.3949031829834, + "msecs": 805.372953414917, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9894.804954528809, - "thread": 140379336402752, + "relativeCreated": 10033.87188911438, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20042,8 +20042,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:18,239", - "created": 1610361438.239541, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805459, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20053,14 +20053,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 239.54105377197266, + "msecs": 805.4590225219727, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9894.951105117798, - "thread": 140379336402752, + "relativeCreated": 10033.957958221436, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20070,8 +20070,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:18,239", - "created": 1610361438.239821, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805543, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20081,39 +20081,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 239.8209571838379, + "msecs": 805.5429458618164, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9895.231008529663, - "thread": 140379336402752, + "relativeCreated": 10034.04188156128, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,239", - "created": 1610361438.239953, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805626, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 239.95304107666016, + "msecs": 805.6259155273438, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9895.363092422485, - "thread": 140379336402752, + "relativeCreated": 10034.124851226807, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20122,25 +20122,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240114, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805718, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 240.1139736175537, + "msecs": 805.717945098877, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9895.524024963379, - "thread": 140379336402752, + "relativeCreated": 10034.21688079834, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20148,25 +20148,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240231, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805807, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 240.23103713989258, + "msecs": 805.8071136474609, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9895.641088485718, - "thread": 140379336402752, + "relativeCreated": 10034.306049346924, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20174,25 +20174,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240337, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805885, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 240.33689498901367, + "msecs": 805.8850765228271, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9895.746946334839, - "thread": 140379336402752, + "relativeCreated": 10034.38401222229, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20202,8 +20202,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240449, + "asctime": "2021-01-14 00:26:00,805", + "created": 1610580360.805974, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20213,14 +20213,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 240.4489517211914, + "msecs": 805.974006652832, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9895.859003067017, - "thread": 140379336402752, + "relativeCreated": 10034.472942352295, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20230,8 +20230,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240558, + "asctime": "2021-01-14 00:26:00,806", + "created": 1610580360.806059, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20241,14 +20241,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 240.55790901184082, + "msecs": 806.0588836669922, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9895.967960357666, - "thread": 140379336402752, + "relativeCreated": 10034.557819366455, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20257,25 +20257,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240676, + "asctime": "2021-01-14 00:26:00,806", + "created": 1610580360.806192, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 240.6759262084961, + "msecs": 806.1919212341309, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9896.085977554321, - "thread": 140379336402752, + "relativeCreated": 10034.690856933594, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20284,25 +20284,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240807, + "asctime": "2021-01-14 00:26:00,806", + "created": 1610580360.806322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 240.80705642700195, + "msecs": 806.3220977783203, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9896.217107772827, - "thread": 140379336402752, + "relativeCreated": 10034.821033477783, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20311,75 +20311,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:18,240", - "created": 1610361438.240908, + "asctime": "2021-01-14 00:26:00,806", + "created": 1610580360.806435, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 240.9079074859619, + "msecs": 806.4351081848145, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9896.317958831787, - "thread": 140379336402752, + "relativeCreated": 10034.934043884277, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,241", - "created": 1610361438.241013, + "asctime": "2021-01-14 00:26:00,806", + "created": 1610580360.806558, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 241.0130500793457, + "msecs": 806.5578937530518, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9896.42310142517, - "thread": 140379336402752, + "relativeCreated": 10035.056829452515, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,241", - "created": 1610361438.241328, + "asctime": "2021-01-14 00:26:00,806", + "created": 1610580360.80684, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 241.32800102233887, + "msecs": 806.8399429321289, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9896.738052368164, - "thread": 140379336402752, + "relativeCreated": 10035.338878631592, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20388,25 +20388,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:18,241", - "created": 1610361438.241474, + "asctime": "2021-01-14 00:26:00,806", + "created": 1610580360.806937, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 241.47391319274902, + "msecs": 806.9369792938232, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9896.883964538574, - "thread": 140379336402752, + "relativeCreated": 10035.435914993286, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20414,25 +20414,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:18,241", - "created": 1610361438.241641, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807046, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 241.64104461669922, + "msecs": 807.0459365844727, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9897.051095962524, - "thread": 140379336402752, + "relativeCreated": 10035.544872283936, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20440,25 +20440,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:18,241", - "created": 1610361438.241801, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807156, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 241.80102348327637, + "msecs": 807.1560859680176, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9897.211074829102, - "thread": 140379336402752, + "relativeCreated": 10035.65502166748, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20466,25 +20466,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:18,241", - "created": 1610361438.241964, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 241.96410179138184, + "msecs": 807.257890701294, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9897.374153137207, - "thread": 140379336402752, + "relativeCreated": 10035.756826400757, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20492,25 +20492,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:18,242", - "created": 1610361438.24211, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807364, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 242.110013961792, + "msecs": 807.3639869689941, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9897.520065307617, - "thread": 140379336402752, + "relativeCreated": 10035.862922668457, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20520,8 +20520,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:18,242", - "created": 1610361438.242262, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807447, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20531,14 +20531,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 242.2618865966797, + "msecs": 807.4469566345215, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9897.671937942505, - "thread": 140379336402752, + "relativeCreated": 10035.945892333984, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20548,8 +20548,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:18,242", - "created": 1610361438.242425, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807532, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20559,14 +20559,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 242.42496490478516, + "msecs": 807.5320720672607, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9897.83501625061, - "thread": 140379336402752, + "relativeCreated": 10036.031007766724, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20576,8 +20576,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:18,242", - "created": 1610361438.242579, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807616, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20587,14 +20587,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 242.57898330688477, + "msecs": 807.6159954071045, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9897.98903465271, - "thread": 140379336402752, + "relativeCreated": 10036.114931106567, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20604,8 +20604,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:18,242", - "created": 1610361438.24275, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807706, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20615,39 +20615,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 242.7499294281006, + "msecs": 807.7061176300049, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9898.159980773926, - "thread": 140379336402752, + "relativeCreated": 10036.205053329468, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,242", - "created": 1610361438.242893, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807781, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 242.89298057556152, + "msecs": 807.7809810638428, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9898.303031921387, - "thread": 140379336402752, + "relativeCreated": 10036.279916763306, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20656,25 +20656,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:18,243", - "created": 1610361438.243062, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807875, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 243.06201934814453, + "msecs": 807.8749179840088, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9898.47207069397, - "thread": 140379336402752, + "relativeCreated": 10036.373853683472, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20682,25 +20682,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:18,243", - "created": 1610361438.243233, + "asctime": "2021-01-14 00:26:00,807", + "created": 1610580360.807962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 243.23296546936035, + "msecs": 807.9619407653809, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9898.643016815186, - "thread": 140379336402752, + "relativeCreated": 10036.460876464844, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20708,25 +20708,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:18,243", - "created": 1610361438.243384, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 243.38388442993164, + "msecs": 808.0449104309082, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9898.793935775757, - "thread": 140379336402752, + "relativeCreated": 10036.543846130371, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20736,8 +20736,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:18,243", - "created": 1610361438.243534, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808125, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20747,14 +20747,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 243.53408813476562, + "msecs": 808.1250190734863, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9898.94413948059, - "thread": 140379336402752, + "relativeCreated": 10036.62395477295, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20764,8 +20764,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:18,243", - "created": 1610361438.243687, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808208, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20775,14 +20775,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 243.68691444396973, + "msecs": 808.2079887390137, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9899.096965789795, - "thread": 140379336402752, + "relativeCreated": 10036.706924438477, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20791,25 +20791,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:18,243", - "created": 1610361438.243842, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808289, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 243.84188652038574, + "msecs": 808.2890510559082, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9899.251937866211, - "thread": 140379336402752, + "relativeCreated": 10036.787986755371, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20818,25 +20818,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:18,243", - "created": 1610361438.243982, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808375, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 243.98207664489746, + "msecs": 808.3748817443848, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9899.392127990723, - "thread": 140379336402752, + "relativeCreated": 10036.873817443848, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -20845,68 +20845,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:18,244", - "created": 1610361438.244123, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808469, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 244.12298202514648, + "msecs": 808.4690570831299, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9899.533033370972, - "thread": 140379336402752, + "relativeCreated": 10036.967992782593, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,244", - "created": 1610361438.244266, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808567, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 244.26603317260742, + "msecs": 808.5670471191406, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9899.676084518433, - "thread": 140379336402752, + "relativeCreated": 10037.065982818604, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 244.4589138031006, + "msecs": 808.661937713623, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9899.868965148926, - "thread": 140379336402752, + "relativeCreated": 10037.160873413086, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00019288063049316406 + "time_consumption": 9.489059448242188e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:18,589", - "created": 1610361438.589695, + "asctime": "2021-01-14 00:26:01,152", + "created": 1610580361.15296, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -20921,8 +20921,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,244", - "created": 1610361438.244792, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808904, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20932,22 +20932,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 244.79198455810547, + "msecs": 808.9039325714111, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9900.20203590393, - "thread": 140379336402752, + "relativeCreated": 10037.402868270874, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,244", - "created": 1610361438.244953, + "asctime": "2021-01-14 00:26:00,808", + "created": 1610580360.808997, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20957,39 +20957,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 244.95291709899902, + "msecs": 808.9969158172607, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9900.362968444824, - "thread": 140379336402752, + "relativeCreated": 10037.495851516724, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,245", - "created": 1610361438.245245, + "asctime": "2021-01-14 00:26:00,809", + "created": 1610580360.809082, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 245.24497985839844, + "msecs": 809.08203125, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9900.655031204224, - "thread": 140379336402752, + "relativeCreated": 10037.580966949463, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -21000,33 +21000,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,245", - "created": 1610361438.245554, + "asctime": "2021-01-14 00:26:00,809", + "created": 1610580360.809245, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 245.55397033691406, + "msecs": 809.2451095581055, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9900.96402168274, - "thread": 140379336402752, + "relativeCreated": 10037.744045257568, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,246", - "created": 1610361438.246032, + "asctime": "2021-01-14 00:26:00,809", + "created": 1610580360.809506, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21036,22 +21036,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 246.0319995880127, + "msecs": 809.5059394836426, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9901.442050933838, - "thread": 140379336402752, + "relativeCreated": 10038.004875183105, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,246", - "created": 1610361438.246228, + "asctime": "2021-01-14 00:26:00,809", + "created": 1610580360.809606, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21061,39 +21061,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 246.22797966003418, + "msecs": 809.6060752868652, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9901.63803100586, - "thread": 140379336402752, + "relativeCreated": 10038.105010986328, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,246", - "created": 1610361438.246392, + "asctime": "2021-01-14 00:26:00,809", + "created": 1610580360.809692, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 246.39201164245605, + "msecs": 809.6919059753418, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9901.802062988281, - "thread": 140379336402752, + "relativeCreated": 10038.190841674805, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -21101,8 +21101,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,246", - "created": 1610361438.246728, + "asctime": "2021-01-14 00:26:00,811", + "created": 1610580360.811547, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21112,14 +21112,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 246.72794342041016, + "msecs": 811.547040939331, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9902.137994766235, - "thread": 140378875336448, + "relativeCreated": 10040.045976638794, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21127,8 +21127,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,246", - "created": 1610361438.246991, + "asctime": "2021-01-14 00:26:00,811", + "created": 1610580360.811821, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21138,14 +21138,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 246.99091911315918, + "msecs": 811.8209838867188, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9902.400970458984, - "thread": 140378875336448, + "relativeCreated": 10040.319919586182, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21153,8 +21153,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247107, + "asctime": "2021-01-14 00:26:00,811", + "created": 1610580360.811924, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21164,14 +21164,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 247.10702896118164, + "msecs": 811.9239807128906, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9902.517080307007, - "thread": 140378875336448, + "relativeCreated": 10040.422916412354, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21180,8 +21180,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247209, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.81201, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21191,14 +21191,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 247.2090721130371, + "msecs": 812.0100498199463, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9902.619123458862, - "thread": 140378875336448, + "relativeCreated": 10040.50898551941, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21206,8 +21206,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.24734, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.812115, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21217,14 +21217,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 247.33996391296387, + "msecs": 812.114953994751, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9902.750015258789, - "thread": 140378875336448, + "relativeCreated": 10040.613889694214, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21233,8 +21233,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247438, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.812202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21244,14 +21244,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 247.4379539489746, + "msecs": 812.201976776123, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9902.8480052948, - "thread": 140378875336448, + "relativeCreated": 10040.700912475586, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21259,8 +21259,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247571, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.812336, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21270,14 +21270,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 247.57099151611328, + "msecs": 812.3359680175781, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9902.981042861938, - "thread": 140378875336448, + "relativeCreated": 10040.834903717041, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21286,8 +21286,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247654, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.812434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21297,14 +21297,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 247.65396118164062, + "msecs": 812.4339580535889, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.064012527466, - "thread": 140378875336448, + "relativeCreated": 10040.932893753052, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21312,8 +21312,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247732, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.81255, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21323,14 +21323,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 247.73192405700684, + "msecs": 812.5500679016113, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.141975402832, - "thread": 140378875336448, + "relativeCreated": 10041.049003601074, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21339,8 +21339,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247791, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.81264, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21350,14 +21350,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 247.79105186462402, + "msecs": 812.6399517059326, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.20110321045, - "thread": 140378875336448, + "relativeCreated": 10041.138887405396, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21365,8 +21365,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.247878, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.81277, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21376,14 +21376,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 247.8780746459961, + "msecs": 812.769889831543, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.288125991821, - "thread": 140378875336448, + "relativeCreated": 10041.268825531006, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21392,8 +21392,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,247", - "created": 1610361438.24794, + "asctime": "2021-01-14 00:26:00,812", + "created": 1610580360.812865, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21403,14 +21403,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 247.9400634765625, + "msecs": 812.8650188446045, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.350114822388, - "thread": 140378875336448, + "relativeCreated": 10041.363954544067, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21418,8 +21418,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248034, + "asctime": "2021-01-14 00:26:00,813", + "created": 1610580360.813005, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21429,14 +21429,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 248.03400039672852, + "msecs": 813.0049705505371, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.444051742554, - "thread": 140378875336448, + "relativeCreated": 10041.50390625, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21444,8 +21444,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248132, + "asctime": "2021-01-14 00:26:00,813", + "created": 1610580360.813179, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21455,14 +21455,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 248.13199043273926, + "msecs": 813.1790161132812, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.542041778564, - "thread": 140378875336448, + "relativeCreated": 10041.677951812744, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21470,8 +21470,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248214, + "asctime": "2021-01-14 00:26:00,813", + "created": 1610580360.813278, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21481,14 +21481,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 248.2140064239502, + "msecs": 813.2779598236084, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.624057769775, - "thread": 140378875336448, + "relativeCreated": 10041.776895523071, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21497,8 +21497,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248283, + "asctime": "2021-01-14 00:26:00,813", + "created": 1610580360.813363, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21508,14 +21508,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 248.28290939331055, + "msecs": 813.3630752563477, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.692960739136, - "thread": 140378875336448, + "relativeCreated": 10041.86201095581, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21523,8 +21523,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248433, + "asctime": "2021-01-14 00:26:00,813", + "created": 1610580360.813535, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21534,14 +21534,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 248.43311309814453, + "msecs": 813.5349750518799, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.84316444397, - "thread": 140378875336448, + "relativeCreated": 10042.033910751343, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21552,25 +21552,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248584, + "asctime": "2021-01-14 00:26:00,813", + "created": 1610580360.813778, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 248.58403205871582, + "msecs": 813.7779235839844, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9903.994083404541, - "thread": 140378875336448, + "relativeCreated": 10042.276859283447, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21578,25 +21578,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248677, + "asctime": "2021-01-14 00:26:00,813", + "created": 1610580360.81394, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 248.67701530456543, + "msecs": 813.9400482177734, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9904.08706665039, - "thread": 140378875336448, + "relativeCreated": 10042.438983917236, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21607,25 +21607,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,248", - "created": 1610361438.248785, + "asctime": "2021-01-14 00:26:00,814", + "created": 1610580360.814142, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 248.78501892089844, + "msecs": 814.1419887542725, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9904.195070266724, - "thread": 140378875336448, + "relativeCreated": 10042.640924453735, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -21633,8 +21633,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250018, + "asctime": "2021-01-14 00:26:00,821", + "created": 1610580360.821302, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21644,14 +21644,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 250.01788139343262, + "msecs": 821.3019371032715, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9905.427932739258, - "thread": 140378321712896, + "relativeCreated": 10049.800872802734, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21659,8 +21659,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.25018, + "asctime": "2021-01-14 00:26:00,821", + "created": 1610580360.821513, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21670,14 +21670,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 250.18000602722168, + "msecs": 821.5129375457764, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9905.590057373047, - "thread": 140378321712896, + "relativeCreated": 10050.01187324524, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21685,8 +21685,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250252, + "asctime": "2021-01-14 00:26:00,821", + "created": 1610580360.821605, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21696,14 +21696,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 250.25200843811035, + "msecs": 821.6049671173096, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9905.662059783936, - "thread": 140378321712896, + "relativeCreated": 10050.103902816772, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21712,8 +21712,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250315, + "asctime": "2021-01-14 00:26:00,821", + "created": 1610580360.821686, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21723,14 +21723,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.31495094299316, + "msecs": 821.6860294342041, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9905.725002288818, - "thread": 140378321712896, + "relativeCreated": 10050.184965133667, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21738,8 +21738,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250394, + "asctime": "2021-01-14 00:26:00,821", + "created": 1610580360.821786, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21749,14 +21749,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 250.39410591125488, + "msecs": 821.7859268188477, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9905.80415725708, - "thread": 140378321712896, + "relativeCreated": 10050.28486251831, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21765,8 +21765,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250455, + "asctime": "2021-01-14 00:26:00,821", + "created": 1610580360.821881, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21776,14 +21776,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.45490264892578, + "msecs": 821.8810558319092, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9905.864953994751, - "thread": 140378321712896, + "relativeCreated": 10050.379991531372, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21791,8 +21791,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250542, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.82202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21802,14 +21802,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 250.54192543029785, + "msecs": 822.0200538635254, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9905.951976776123, - "thread": 140378321712896, + "relativeCreated": 10050.518989562988, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21818,8 +21818,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250605, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822109, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21829,14 +21829,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.60510635375977, + "msecs": 822.1089839935303, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.015157699585, - "thread": 140378321712896, + "relativeCreated": 10050.607919692993, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21844,8 +21844,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250683, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822227, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21855,14 +21855,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 250.68306922912598, + "msecs": 822.2270011901855, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.093120574951, - "thread": 140378321712896, + "relativeCreated": 10050.725936889648, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21871,8 +21871,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250749, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822309, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21882,14 +21882,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.7491111755371, + "msecs": 822.3090171813965, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.159162521362, - "thread": 140378321712896, + "relativeCreated": 10050.80795288086, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21897,8 +21897,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250835, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822404, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21908,14 +21908,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 250.83494186401367, + "msecs": 822.4039077758789, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.244993209839, - "thread": 140378321712896, + "relativeCreated": 10050.902843475342, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21924,8 +21924,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250899, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822472, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -21935,14 +21935,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.899076461792, + "msecs": 822.472095489502, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.309127807617, - "thread": 140378321712896, + "relativeCreated": 10050.971031188965, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21950,8 +21950,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:18,250", - "created": 1610361438.250992, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822579, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21961,14 +21961,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 250.9920597076416, + "msecs": 822.5789070129395, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.402111053467, - "thread": 140378321712896, + "relativeCreated": 10051.077842712402, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -21976,8 +21976,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:18,251", - "created": 1610361438.251066, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822674, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21987,14 +21987,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 251.0659694671631, + "msecs": 822.674036026001, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.476020812988, - "thread": 140378321712896, + "relativeCreated": 10051.172971725464, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -22002,8 +22002,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,251", - "created": 1610361438.251136, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822775, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22013,14 +22013,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 251.13606452941895, + "msecs": 822.7748870849609, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.546115875244, - "thread": 140378321712896, + "relativeCreated": 10051.273822784424, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -22029,8 +22029,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:18,251", - "created": 1610361438.2512, + "asctime": "2021-01-14 00:26:00,822", + "created": 1610580360.822863, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22040,14 +22040,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 251.19996070861816, + "msecs": 822.8631019592285, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.610012054443, - "thread": 140378321712896, + "relativeCreated": 10051.362037658691, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -22055,8 +22055,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:18,251", - "created": 1610361438.251321, + "asctime": "2021-01-14 00:26:00,823", + "created": 1610580360.823045, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22066,14 +22066,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 251.32107734680176, + "msecs": 823.045015335083, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.731128692627, - "thread": 140378321712896, + "relativeCreated": 10051.543951034546, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -22084,25 +22084,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,251", - "created": 1610361438.251464, + "asctime": "2021-01-14 00:26:00,823", + "created": 1610580360.823238, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 251.4638900756836, + "msecs": 823.2378959655762, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.873941421509, - "thread": 140378321712896, + "relativeCreated": 10051.736831665039, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -22110,43 +22110,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:18,251", - "created": 1610361438.251525, + "asctime": "2021-01-14 00:26:00,823", + "created": 1610580360.823352, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 251.5249252319336, + "msecs": 823.3520984649658, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 9906.934976577759, - "thread": 140378321712896, + "relativeCreated": 10051.851034164429, + "thread": 140018685310720, "threadName": "Thread-14" } ], - "msecs": 589.6949768066406, + "msecs": 152.96006202697754, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10245.105028152466, - "thread": 140379336402752, + "relativeCreated": 10381.45899772644, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.33817005157470703 + "time_consumption": 0.3296079635620117 }, { "args": [], - "asctime": "2021-01-11 11:37:18,590", - "created": 1610361438.590419, + "asctime": "2021-01-14 00:26:01,153", + "created": 1610580361.153733, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -22157,14 +22157,14 @@ "message": "Setting no Channel name for server and client", "module": "test_communication", "moduleLogger": [], - "msecs": 590.4190540313721, + "msecs": 153.7330150604248, "msg": "Setting no Channel name for server and client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10245.829105377197, - "thread": 140379336402752, + "relativeCreated": 10382.231950759888, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -22173,8 +22173,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:18,592", - "created": 1610361438.592004, + "asctime": "2021-01-14 00:26:01,154", + "created": 1610580361.154607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22191,8 +22191,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:18,590", - "created": 1610361438.590965, + "asctime": "2021-01-14 00:26:01,154", + "created": 1610580361.154146, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22202,14 +22202,14 @@ "lineno": 22, "message": "Result (Channel name of server): None ()", "module": "test", - "msecs": 590.9650325775146, + "msecs": 154.1459560394287, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10246.37508392334, - "thread": 140379336402752, + "relativeCreated": 10382.644891738892, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -22218,8 +22218,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:18,591", - "created": 1610361438.591497, + "asctime": "2021-01-14 00:26:01,154", + "created": 1610580361.154386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22229,35 +22229,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = None ()", "module": "test", - "msecs": 591.4969444274902, + "msecs": 154.38604354858398, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10246.906995773315, - "thread": 140379336402752, + "relativeCreated": 10382.884979248047, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 592.0040607452393, + "msecs": 154.60705757141113, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10247.414112091064, - "thread": 140379336402752, + "relativeCreated": 10383.105993270874, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0005071163177490234 + "time_consumption": 0.00022101402282714844 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:18,593", - "created": 1610361438.59309, + "asctime": "2021-01-14 00:26:01,155", + "created": 1610580361.155612, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22274,8 +22274,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:18,592", - "created": 1610361438.592621, + "asctime": "2021-01-14 00:26:01,155", + "created": 1610580361.155206, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22285,14 +22285,14 @@ "lineno": 22, "message": "Result (Channel name of client): None ()", "module": "test", - "msecs": 592.6210880279541, + "msecs": 155.20596504211426, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10248.03113937378, - "thread": 140379336402752, + "relativeCreated": 10383.704900741577, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -22301,8 +22301,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:18,592", - "created": 1610361438.592906, + "asctime": "2021-01-14 00:26:01,155", + "created": 1610580361.155425, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22312,32 +22312,32 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = None ()", "module": "test", - "msecs": 592.9059982299805, + "msecs": 155.4250717163086, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10248.316049575806, - "thread": 140379336402752, + "relativeCreated": 10383.924007415771, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 593.0900573730469, + "msecs": 155.61199188232422, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10248.500108718872, - "thread": 140379336402752, + "relativeCreated": 10384.110927581787, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018405914306640625 + "time_consumption": 0.000186920166015625 }, { "args": [], - "asctime": "2021-01-11 11:37:18,594", - "created": 1610361438.594153, + "asctime": "2021-01-14 00:26:01,156", + "created": 1610580361.156581, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -22348,21 +22348,21 @@ "message": "Setting different Channel names for client and Server", "module": "test_communication", "moduleLogger": [], - "msecs": 594.1529273986816, + "msecs": 156.58092498779297, "msg": "Setting different Channel names for client and Server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10249.562978744507, - "thread": 140379336402752, + "relativeCreated": 10385.079860687256, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:18,940", - "created": 1610361438.940972, + "asctime": "2021-01-14 00:26:01,503", + "created": 1610580361.503086, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -22377,8 +22377,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,594", - "created": 1610361438.594549, + "asctime": "2021-01-14 00:26:01,157", + "created": 1610580361.157022, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22388,47 +22388,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 594.5489406585693, + "msecs": 157.02199935913086, "msg": "%s Connection Lost...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10249.958992004395, - "thread": 140379336402752, + "relativeCreated": 10385.520935058594, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,594", - "created": 1610361438.59482, + "asctime": "2021-01-14 00:26:01,157", + "created": 1610580361.157326, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 594.8200225830078, + "msecs": 157.32598304748535, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10250.230073928833, - "thread": 140379336402752, + "relativeCreated": 10385.824918746948, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,595", - "created": 1610361438.59508, + "asctime": "2021-01-14 00:26:01,157", + "created": 1610580361.157565, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22438,47 +22438,47 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 595.0798988342285, + "msecs": 157.56511688232422, "msg": "%s Connection Lost...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10250.489950180054, - "thread": 140379336402752, + "relativeCreated": 10386.064052581787, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,595", - "created": 1610361438.595338, + "asctime": "2021-01-14 00:26:01,157", + "created": 1610580361.1579, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 595.3381061553955, + "msecs": 157.9000949859619, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10250.74815750122, - "thread": 140379336402752, + "relativeCreated": 10386.399030685425, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,595", - "created": 1610361438.595578, + "asctime": "2021-01-14 00:26:01,158", + "created": 1610580361.158177, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22488,22 +22488,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 595.5779552459717, + "msecs": 158.17689895629883, "msg": "%s Connection established...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10250.988006591797, - "thread": 140379336402752, + "relativeCreated": 10386.675834655762, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,595", - "created": 1610361438.595828, + "asctime": "2021-01-14 00:26:01,158", + "created": 1610580361.158395, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22513,39 +22513,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 595.8280563354492, + "msecs": 158.39505195617676, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10251.238107681274, - "thread": 140379336402752, + "relativeCreated": 10386.89398765564, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,596", - "created": 1610361438.596056, + "asctime": "2021-01-14 00:26:01,158", + "created": 1610580361.158618, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 596.0559844970703, + "msecs": 158.61797332763672, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10251.466035842896, - "thread": 140379336402752, + "relativeCreated": 10387.1169090271, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -22556,33 +22556,33 @@ "status: okay", "'client'" ], - "asctime": "2021-01-11 11:37:18,596", - "created": 1610361438.596452, + "asctime": "2021-01-14 00:26:01,158", + "created": 1610580361.158959, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 596.451997756958, + "msecs": 158.95891189575195, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10251.862049102783, - "thread": 140379336402752, + "relativeCreated": 10387.457847595215, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,597", - "created": 1610361438.597278, + "asctime": "2021-01-14 00:26:01,159", + "created": 1610580361.159708, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22592,22 +22592,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 597.2781181335449, + "msecs": 159.70802307128906, "msg": "%s Connection established...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10252.68816947937, - "thread": 140379336402752, + "relativeCreated": 10388.206958770752, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,597", - "created": 1610361438.597535, + "asctime": "2021-01-14 00:26:01,159", + "created": 1610580361.159793, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22617,39 +22617,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 597.5348949432373, + "msecs": 159.79290008544922, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10252.944946289062, - "thread": 140379336402752, + "relativeCreated": 10388.291835784912, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,597", - "created": 1610361438.597896, + "asctime": "2021-01-14 00:26:01,159", + "created": 1610580361.159861, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 597.8960990905762, + "msecs": 159.86108779907227, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10253.306150436401, - "thread": 140379336402752, + "relativeCreated": 10388.360023498535, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -22657,8 +22657,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" ], - "asctime": "2021-01-11 11:37:18,613", - "created": 1610361438.613839, + "asctime": "2021-01-14 00:26:01,180", + "created": 1610580361.180332, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22668,14 +22668,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", "module": "__init__", - "msecs": 613.8389110565186, + "msecs": 180.33194541931152, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10269.248962402344, - "thread": 140378875336448, + "relativeCreated": 10408.830881118774, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22683,8 +22683,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" ], - "asctime": "2021-01-11 11:37:18,614", - "created": 1610361438.614483, + "asctime": "2021-01-14 00:26:01,180", + "created": 1610580361.180678, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22694,14 +22694,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", "module": "__init__", - "msecs": 614.483118057251, + "msecs": 180.6778907775879, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10269.893169403076, - "thread": 140378875336448, + "relativeCreated": 10409.17682647705, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22709,8 +22709,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,614", - "created": 1610361438.61468, + "asctime": "2021-01-14 00:26:01,180", + "created": 1610580361.180816, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22720,14 +22720,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 614.6800518035889, + "msecs": 180.8159351348877, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10270.090103149414, - "thread": 140378875336448, + "relativeCreated": 10409.31487083435, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22736,8 +22736,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:18,614", - "created": 1610361438.614951, + "asctime": "2021-01-14 00:26:01,180", + "created": 1610580361.180926, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22747,14 +22747,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 614.9508953094482, + "msecs": 180.92608451843262, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10270.360946655273, - "thread": 140378875336448, + "relativeCreated": 10409.425020217896, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22762,8 +22762,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,615", - "created": 1610361438.61512, + "asctime": "2021-01-14 00:26:01,181", + "created": 1610580361.18109, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22773,14 +22773,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 615.1199340820312, + "msecs": 181.0901165008545, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10270.529985427856, - "thread": 140378875336448, + "relativeCreated": 10409.589052200317, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22789,8 +22789,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,615", - "created": 1610361438.615232, + "asctime": "2021-01-14 00:26:01,181", + "created": 1610580361.181296, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22800,14 +22800,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 615.231990814209, + "msecs": 181.29611015319824, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10270.642042160034, - "thread": 140378875336448, + "relativeCreated": 10409.795045852661, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22815,8 +22815,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,615", - "created": 1610361438.615382, + "asctime": "2021-01-14 00:26:01,181", + "created": 1610580361.181442, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22826,14 +22826,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 615.3819561004639, + "msecs": 181.4420223236084, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10270.792007446289, - "thread": 140378875336448, + "relativeCreated": 10409.940958023071, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22842,8 +22842,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,615", - "created": 1610361438.61549, + "asctime": "2021-01-14 00:26:01,181", + "created": 1610580361.181541, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22853,14 +22853,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 615.4899597167969, + "msecs": 181.54096603393555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10270.900011062622, - "thread": 140378875336448, + "relativeCreated": 10410.039901733398, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22868,8 +22868,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,615", - "created": 1610361438.615628, + "asctime": "2021-01-14 00:26:01,181", + "created": 1610580361.181668, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22879,14 +22879,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 615.6280040740967, + "msecs": 181.66804313659668, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10271.038055419922, - "thread": 140378875336448, + "relativeCreated": 10410.16697883606, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22895,8 +22895,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,615", - "created": 1610361438.615737, + "asctime": "2021-01-14 00:26:01,181", + "created": 1610580361.18177, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22906,14 +22906,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 615.7369613647461, + "msecs": 181.77008628845215, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10271.147012710571, - "thread": 140378875336448, + "relativeCreated": 10410.269021987915, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22921,8 +22921,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,615", - "created": 1610361438.61589, + "asctime": "2021-01-14 00:26:01,181", + "created": 1610580361.18191, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -22932,14 +22932,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 615.8900260925293, + "msecs": 181.91003799438477, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10271.300077438354, - "thread": 140378875336448, + "relativeCreated": 10410.408973693848, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22947,8 +22947,8 @@ "comm-client:", "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" ], - "asctime": "2021-01-11 11:37:18,616", - "created": 1610361438.616071, + "asctime": "2021-01-14 00:26:01,182", + "created": 1610580361.182056, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22958,14 +22958,14 @@ "lineno": 284, "message": "comm-client: TX -> (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", "module": "__init__", - "msecs": 616.0709857940674, + "msecs": 182.05595016479492, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10271.481037139893, - "thread": 140378875336448, + "relativeCreated": 10410.554885864258, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -22973,8 +22973,8 @@ "comm-server:", "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" ], - "asctime": "2021-01-11 11:37:18,616", - "created": 1610361438.61624, + "asctime": "2021-01-14 00:26:01,182", + "created": 1610580361.182181, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22984,14 +22984,14 @@ "lineno": 414, "message": "comm-server: RX <- (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", "module": "__init__", - "msecs": 616.2400245666504, + "msecs": 182.18088150024414, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10271.650075912476, - "thread": 140378875336448, + "relativeCreated": 10410.679817199707, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23000,8 +23000,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,616", - "created": 1610361438.616381, + "asctime": "2021-01-14 00:26:01,182", + "created": 1610580361.182289, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23011,14 +23011,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 616.3809299468994, + "msecs": 182.28888511657715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10271.790981292725, - "thread": 140378875336448, + "relativeCreated": 10410.78782081604, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23026,8 +23026,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,616", - "created": 1610361438.616545, + "asctime": "2021-01-14 00:26:01,182", + "created": 1610580361.182421, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23037,14 +23037,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 616.5449619293213, + "msecs": 182.4209690093994, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10271.955013275146, - "thread": 140378875336448, + "relativeCreated": 10410.919904708862, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23053,8 +23053,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:18,616", - "created": 1610361438.616676, + "asctime": "2021-01-14 00:26:01,182", + "created": 1610580361.182536, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23064,14 +23064,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 616.6760921478271, + "msecs": 182.53588676452637, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10272.086143493652, - "thread": 140378875336448, + "relativeCreated": 10411.03482246399, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23079,8 +23079,8 @@ "STP:", "(66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4" ], - "asctime": "2021-01-11 11:37:18,617", - "created": 1610361438.617003, + "asctime": "2021-01-14 00:26:01,182", + "created": 1610580361.182793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23090,14 +23090,14 @@ "lineno": 148, "message": "STP: message identified - (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", "module": "stp", - "msecs": 617.0029640197754, + "msecs": 182.79290199279785, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10272.4130153656, - "thread": 140378875336448, + "relativeCreated": 10411.29183769226, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23108,25 +23108,25 @@ "status: okay", "u'client'" ], - "asctime": "2021-01-11 11:37:18,617", - "created": 1610361438.617341, + "asctime": "2021-01-14 00:26:01,183", + "created": 1610580361.183086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", "module": "__init__", - "msecs": 617.3410415649414, + "msecs": 183.08591842651367, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10272.751092910767, - "thread": 140378875336448, + "relativeCreated": 10411.584854125977, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23134,25 +23134,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:18,617", - "created": 1610361438.617518, + "asctime": "2021-01-14 00:26:01,183", + "created": 1610580361.183245, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 617.5179481506348, + "msecs": 183.2449436187744, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10272.92799949646, - "thread": 140378875336448, + "relativeCreated": 10411.743879318237, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23161,25 +23161,25 @@ "'server'", "u'client'" ], - "asctime": "2021-01-11 11:37:18,617", - "created": 1610361438.617968, + "asctime": "2021-01-14 00:26:01,183", + "created": 1610580361.183534, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "WARNING", "levelno": 30, - "lineno": 418, + "lineno": 430, "message": "prot-server: overwriting user defined channel name from 'server' to u'client'", "module": "__init__", - "msecs": 617.9680824279785, + "msecs": 183.5339069366455, "msg": "%s overwriting user defined channel name from %s to %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10273.378133773804, - "thread": 140378875336448, + "relativeCreated": 10412.032842636108, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23190,25 +23190,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,618", - "created": 1610361438.61828, + "asctime": "2021-01-14 00:26:01,183", + "created": 1610580361.183724, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 618.2799339294434, + "msecs": 183.72392654418945, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10273.689985275269, - "thread": 140378875336448, + "relativeCreated": 10412.222862243652, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -23216,8 +23216,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,653", - "created": 1610361438.653384, + "asctime": "2021-01-14 00:26:01,188", + "created": 1610580361.188301, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23227,14 +23227,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 653.3839702606201, + "msecs": 188.30108642578125, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10308.794021606445, - "thread": 140378321712896, + "relativeCreated": 10416.800022125244, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23242,8 +23242,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,654", - "created": 1610361438.654323, + "asctime": "2021-01-14 00:26:01,188", + "created": 1610580361.188577, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23253,14 +23253,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 654.3231010437012, + "msecs": 188.57693672180176, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10309.733152389526, - "thread": 140378321712896, + "relativeCreated": 10417.075872421265, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23268,8 +23268,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,654", - "created": 1610361438.654719, + "asctime": "2021-01-14 00:26:01,188", + "created": 1610580361.188705, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23279,14 +23279,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 654.7191143035889, + "msecs": 188.7049674987793, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10310.129165649414, - "thread": 140378321712896, + "relativeCreated": 10417.203903198242, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23295,8 +23295,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:18,655", - "created": 1610361438.655029, + "asctime": "2021-01-14 00:26:01,188", + "created": 1610580361.188826, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23306,14 +23306,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 655.0290584564209, + "msecs": 188.8260841369629, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10310.439109802246, - "thread": 140378321712896, + "relativeCreated": 10417.325019836426, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23321,8 +23321,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,655", - "created": 1610361438.655453, + "asctime": "2021-01-14 00:26:01,188", + "created": 1610580361.188957, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23332,14 +23332,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 655.4529666900635, + "msecs": 188.95697593688965, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10310.863018035889, - "thread": 140378321712896, + "relativeCreated": 10417.455911636353, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23348,8 +23348,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,655", - "created": 1610361438.655843, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.189062, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23359,14 +23359,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 655.8430194854736, + "msecs": 189.06211853027344, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10311.253070831299, - "thread": 140378321712896, + "relativeCreated": 10417.561054229736, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23374,8 +23374,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,656", - "created": 1610361438.656382, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.189221, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23385,14 +23385,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 656.3820838928223, + "msecs": 189.22090530395508, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10311.792135238647, - "thread": 140378321712896, + "relativeCreated": 10417.719841003418, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23401,8 +23401,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,656", - "created": 1610361438.656632, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.18933, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23412,14 +23412,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 656.6319465637207, + "msecs": 189.3301010131836, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10312.041997909546, - "thread": 140378321712896, + "relativeCreated": 10417.829036712646, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23427,8 +23427,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,656", - "created": 1610361438.656901, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.189451, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23438,14 +23438,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 656.9008827209473, + "msecs": 189.4509792327881, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10312.310934066772, - "thread": 140378321712896, + "relativeCreated": 10417.949914932251, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23454,8 +23454,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,657", - "created": 1610361438.65703, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.189548, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23465,14 +23465,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 657.0301055908203, + "msecs": 189.54801559448242, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10312.440156936646, - "thread": 140378321712896, + "relativeCreated": 10418.046951293945, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23480,8 +23480,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,657", - "created": 1610361438.657211, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.189682, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23491,14 +23491,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 657.2110652923584, + "msecs": 189.6820068359375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10312.621116638184, - "thread": 140378321712896, + "relativeCreated": 10418.1809425354, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23507,8 +23507,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,657", - "created": 1610361438.657341, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.189777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23518,14 +23518,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 657.3410034179688, + "msecs": 189.77689743041992, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10312.751054763794, - "thread": 140378321712896, + "relativeCreated": 10418.275833129883, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23533,8 +23533,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:18,657", - "created": 1610361438.657533, + "asctime": "2021-01-14 00:26:01,189", + "created": 1610580361.189929, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23544,14 +23544,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 657.5329303741455, + "msecs": 189.92900848388672, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10312.94298171997, - "thread": 140378321712896, + "relativeCreated": 10418.42794418335, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23559,8 +23559,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:18,657", - "created": 1610361438.657679, + "asctime": "2021-01-14 00:26:01,190", + "created": 1610580361.190053, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23570,14 +23570,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 657.6790809631348, + "msecs": 190.05298614501953, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10313.08913230896, - "thread": 140378321712896, + "relativeCreated": 10418.551921844482, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23585,8 +23585,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,657", - "created": 1610361438.657885, + "asctime": "2021-01-14 00:26:01,190", + "created": 1610580361.190222, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23596,14 +23596,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 657.8850746154785, + "msecs": 190.22202491760254, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10313.295125961304, - "thread": 140378321712896, + "relativeCreated": 10418.720960617065, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23612,8 +23612,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:18,657", - "created": 1610361438.657999, + "asctime": "2021-01-14 00:26:01,190", + "created": 1610580361.190323, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23623,14 +23623,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 657.9990386962891, + "msecs": 190.3231143951416, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10313.409090042114, - "thread": 140378321712896, + "relativeCreated": 10418.822050094604, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23638,8 +23638,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:18,658", - "created": 1610361438.658223, + "asctime": "2021-01-14 00:26:01,190", + "created": 1610580361.190531, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -23649,14 +23649,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 658.2229137420654, + "msecs": 190.53101539611816, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10313.63296508789, - "thread": 140378321712896, + "relativeCreated": 10419.029951095581, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23667,25 +23667,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,658", - "created": 1610361438.658554, + "asctime": "2021-01-14 00:26:01,190", + "created": 1610580361.190749, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 658.5540771484375, + "msecs": 190.748929977417, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10313.964128494263, - "thread": 140378321712896, + "relativeCreated": 10419.24786567688, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -23693,46 +23693,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:18,658", - "created": 1610361438.658722, + "asctime": "2021-01-14 00:26:01,190", + "created": 1610580361.190879, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 658.721923828125, + "msecs": 190.87910652160645, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10314.13197517395, - "thread": 140378321712896, + "relativeCreated": 10419.37804222107, + "thread": 140018685310720, "threadName": "Thread-14" } ], - "msecs": 940.972089767456, + "msecs": 503.0860900878906, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10596.382141113281, - "thread": 140379336402752, + "relativeCreated": 10731.585025787354, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.28225016593933105 + "time_consumption": 0.3122069835662842 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:18,942", - "created": 1610361438.94212, + "asctime": "2021-01-14 00:26:01,504", + "created": 1610580361.504098, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23749,8 +23749,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:18,941", - "created": 1610361438.941569, + "asctime": "2021-01-14 00:26:01,503", + "created": 1610580361.503705, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23760,14 +23760,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 941.5690898895264, + "msecs": 503.7050247192383, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10596.979141235352, - "thread": 140379336402752, + "relativeCreated": 10732.203960418701, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -23776,8 +23776,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:18,941", - "created": 1610361438.941842, + "asctime": "2021-01-14 00:26:01,503", + "created": 1610580361.503914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23787,35 +23787,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 941.8420791625977, + "msecs": 503.91411781311035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10597.252130508423, - "thread": 140379336402752, + "relativeCreated": 10732.413053512573, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 942.1200752258301, + "msecs": 504.09793853759766, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10597.530126571655, - "thread": 140379336402752, + "relativeCreated": 10732.59687423706, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002779960632324219 + "time_consumption": 0.0001838207244873047 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:18,943", - "created": 1610361438.943012, + "asctime": "2021-01-14 00:26:01,504", + "created": 1610580361.504721, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23832,8 +23832,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:18,942", - "created": 1610361438.942533, + "asctime": "2021-01-14 00:26:01,504", + "created": 1610580361.504383, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23843,14 +23843,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 942.533016204834, + "msecs": 504.3830871582031, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10597.94306755066, - "thread": 140379336402752, + "relativeCreated": 10732.882022857666, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -23859,8 +23859,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:18,942", - "created": 1610361438.942774, + "asctime": "2021-01-14 00:26:01,504", + "created": 1610580361.504549, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23870,32 +23870,32 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 942.7740573883057, + "msecs": 504.5490264892578, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10598.18410873413, - "thread": 140379336402752, + "relativeCreated": 10733.04796218872, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 943.011999130249, + "msecs": 504.72092628479004, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10598.422050476074, - "thread": 140379336402752, + "relativeCreated": 10733.219861984253, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00023794174194335938 + "time_consumption": 0.00017189979553222656 }, { "args": [], - "asctime": "2021-01-11 11:37:18,944", - "created": 1610361438.944128, + "asctime": "2021-01-14 00:26:01,505", + "created": 1610580361.505317, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -23906,21 +23906,21 @@ "message": "Setting identical Channel names for client and server", "module": "test_communication", "moduleLogger": [], - "msecs": 944.1280364990234, + "msecs": 505.31697273254395, "msg": "Setting identical Channel names for client and server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10599.538087844849, - "thread": 140379336402752, + "relativeCreated": 10733.815908432007, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:19,291", - "created": 1610361439.29133, + "asctime": "2021-01-14 00:26:01,851", + "created": 1610580361.851556, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -23935,8 +23935,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,944", - "created": 1610361438.944589, + "asctime": "2021-01-14 00:26:01,505", + "created": 1610580361.505586, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23946,47 +23946,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 944.5888996124268, + "msecs": 505.5859088897705, "msg": "%s Connection Lost...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10599.998950958252, - "thread": 140379336402752, + "relativeCreated": 10734.084844589233, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,944", - "created": 1610361438.944861, + "asctime": "2021-01-14 00:26:01,505", + "created": 1610580361.505816, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 944.8609352111816, + "msecs": 505.8159828186035, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10600.270986557007, - "thread": 140379336402752, + "relativeCreated": 10734.314918518066, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,945", - "created": 1610361438.945058, + "asctime": "2021-01-14 00:26:01,506", + "created": 1610580361.506005, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23996,47 +23996,47 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 945.0581073760986, + "msecs": 506.00504875183105, "msg": "%s Connection Lost...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10600.468158721924, - "thread": 140379336402752, + "relativeCreated": 10734.503984451294, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,945", - "created": 1610361438.945236, + "asctime": "2021-01-14 00:26:01,506", + "created": 1610580361.506183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 945.2359676361084, + "msecs": 506.1829090118408, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10600.646018981934, - "thread": 140379336402752, + "relativeCreated": 10734.681844711304, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,945", - "created": 1610361438.945429, + "asctime": "2021-01-14 00:26:01,506", + "created": 1610580361.50638, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24046,22 +24046,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 945.4290866851807, + "msecs": 506.3800811767578, "msg": "%s Connection established...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10600.839138031006, - "thread": 140379336402752, + "relativeCreated": 10734.87901687622, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:18,945", - "created": 1610361438.945648, + "asctime": "2021-01-14 00:26:01,506", + "created": 1610580361.506561, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24071,39 +24071,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 945.6479549407959, + "msecs": 506.5610408782959, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10601.058006286621, - "thread": 140379336402752, + "relativeCreated": 10735.059976577759, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:18,945", - "created": 1610361438.945918, + "asctime": "2021-01-14 00:26:01,506", + "created": 1610580361.506756, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 945.918083190918, + "msecs": 506.756067276001, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10601.328134536743, - "thread": 140379336402752, + "relativeCreated": 10735.255002975464, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -24114,33 +24114,33 @@ "status: okay", "'unittest'" ], - "asctime": "2021-01-11 11:37:18,946", - "created": 1610361438.946301, + "asctime": "2021-01-14 00:26:01,507", + "created": 1610580361.50704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", "module": "__init__", - "msecs": 946.3009834289551, + "msecs": 507.04002380371094, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10601.71103477478, - "thread": 140379336402752, + "relativeCreated": 10735.538959503174, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,947", - "created": 1610361438.947077, + "asctime": "2021-01-14 00:26:01,507", + "created": 1610580361.507563, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24150,22 +24150,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 947.0770359039307, + "msecs": 507.56311416625977, "msg": "%s Connection established...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10602.487087249756, - "thread": 140379336402752, + "relativeCreated": 10736.062049865723, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:18,947", - "created": 1610361438.94735, + "asctime": "2021-01-14 00:26:01,507", + "created": 1610580361.507828, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24175,39 +24175,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 947.350025177002, + "msecs": 507.8279972076416, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10602.760076522827, - "thread": 140379336402752, + "relativeCreated": 10736.326932907104, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:18,947", - "created": 1610361438.947958, + "asctime": "2021-01-14 00:26:01,508", + "created": 1610580361.50813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 947.9579925537109, + "msecs": 508.1300735473633, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10603.368043899536, - "thread": 140379336402752, + "relativeCreated": 10736.629009246826, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -24215,8 +24215,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64" ], - "asctime": "2021-01-11 11:37:18,951", - "created": 1610361438.951849, + "asctime": "2021-01-14 00:26:01,517", + "created": 1610580361.517547, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24226,14 +24226,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64", "module": "__init__", - "msecs": 951.8489837646484, + "msecs": 517.5468921661377, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10607.259035110474, - "thread": 140378875336448, + "relativeCreated": 10746.0458278656, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24241,8 +24241,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64" ], - "asctime": "2021-01-11 11:37:18,952", - "created": 1610361438.952344, + "asctime": "2021-01-14 00:26:01,517", + "created": 1610580361.51781, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24252,14 +24252,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64", "module": "__init__", - "msecs": 952.3439407348633, + "msecs": 517.8101062774658, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10607.753992080688, - "thread": 140378875336448, + "relativeCreated": 10746.309041976929, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24267,8 +24267,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,952", - "created": 1610361438.95257, + "asctime": "2021-01-14 00:26:01,517", + "created": 1610580361.517926, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24278,14 +24278,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 952.5699615478516, + "msecs": 517.9259777069092, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10607.980012893677, - "thread": 140378875336448, + "relativeCreated": 10746.424913406372, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24294,8 +24294,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:18,952", - "created": 1610361438.952796, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518003, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24305,14 +24305,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 952.7959823608398, + "msecs": 518.002986907959, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.206033706665, - "thread": 140378875336448, + "relativeCreated": 10746.501922607422, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24320,8 +24320,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,952", - "created": 1610361438.952941, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518124, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24331,14 +24331,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 952.9409408569336, + "msecs": 518.1241035461426, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.350992202759, - "thread": 140378875336448, + "relativeCreated": 10746.623039245605, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24347,8 +24347,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953036, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518211, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24358,14 +24358,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 953.0360698699951, + "msecs": 518.2108879089355, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.44612121582, - "thread": 140378875336448, + "relativeCreated": 10746.709823608398, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24373,8 +24373,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953138, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518311, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24384,14 +24384,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 953.1381130218506, + "msecs": 518.3110237121582, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.548164367676, - "thread": 140378875336448, + "relativeCreated": 10746.809959411621, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24400,8 +24400,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953215, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518387, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24411,14 +24411,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 953.2148838043213, + "msecs": 518.3870792388916, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.624935150146, - "thread": 140378875336448, + "relativeCreated": 10746.886014938354, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24426,8 +24426,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953309, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518483, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24437,14 +24437,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 953.3090591430664, + "msecs": 518.4829235076904, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.719110488892, - "thread": 140378875336448, + "relativeCreated": 10746.981859207153, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24453,8 +24453,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953397, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518556, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24464,14 +24464,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 953.3970355987549, + "msecs": 518.5561180114746, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.80708694458, - "thread": 140378875336448, + "relativeCreated": 10747.055053710938, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24479,8 +24479,8 @@ "comm-client:", "(12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e" ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.95357, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518695, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24490,14 +24490,14 @@ "lineno": 284, "message": "comm-client: TX -> (12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e", "module": "__init__", - "msecs": 953.5698890686035, + "msecs": 518.6951160430908, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10608.979940414429, - "thread": 140378875336448, + "relativeCreated": 10747.194051742554, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24505,8 +24505,8 @@ "comm-server:", "(12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e" ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953687, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518776, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24516,14 +24516,14 @@ "lineno": 414, "message": "comm-server: RX <- (12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e", "module": "__init__", - "msecs": 953.6869525909424, + "msecs": 518.7759399414062, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.097003936768, - "thread": 140378875336448, + "relativeCreated": 10747.27487564087, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24531,8 +24531,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953793, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518848, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24542,14 +24542,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 953.7930488586426, + "msecs": 518.8479423522949, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.203100204468, - "thread": 140378875336448, + "relativeCreated": 10747.346878051758, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24558,8 +24558,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953884, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518915, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24569,14 +24569,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 953.8838863372803, + "msecs": 518.9149379730225, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.293937683105, - "thread": 140378875336448, + "relativeCreated": 10747.413873672485, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24584,8 +24584,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,953", - "created": 1610361438.953989, + "asctime": "2021-01-14 00:26:01,518", + "created": 1610580361.518986, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24595,14 +24595,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 953.9890289306641, + "msecs": 518.9859867095947, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.39908027649, - "thread": 140378875336448, + "relativeCreated": 10747.484922409058, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24611,8 +24611,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:18,954", - "created": 1610361438.954073, + "asctime": "2021-01-14 00:26:01,519", + "created": 1610580361.519046, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24622,14 +24622,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 954.0729522705078, + "msecs": 519.0460681915283, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.483003616333, - "thread": 140378875336448, + "relativeCreated": 10747.545003890991, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24637,8 +24637,8 @@ "STP:", "(68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06" ], - "asctime": "2021-01-11 11:37:18,954", - "created": 1610361438.954253, + "asctime": "2021-01-14 00:26:01,519", + "created": 1610580361.519175, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24648,14 +24648,14 @@ "lineno": 148, "message": "STP: message identified - (68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06", "module": "stp", - "msecs": 954.2529582977295, + "msecs": 519.1750526428223, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.663009643555, - "thread": 140378875336448, + "relativeCreated": 10747.673988342285, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24666,25 +24666,25 @@ "status: okay", "u'unittest'" ], - "asctime": "2021-01-11 11:37:18,954", - "created": 1610361438.954426, + "asctime": "2021-01-14 00:26:01,519", + "created": 1610580361.519362, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'unittest'\"", "module": "__init__", - "msecs": 954.4260501861572, + "msecs": 519.3619728088379, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.836101531982, - "thread": 140378875336448, + "relativeCreated": 10747.8609085083, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24692,25 +24692,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:18,954", - "created": 1610361438.954534, + "asctime": "2021-01-14 00:26:01,519", + "created": 1610580361.519449, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 954.5340538024902, + "msecs": 519.44899559021, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10609.944105148315, - "thread": 140378875336448, + "relativeCreated": 10747.947931289673, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24721,25 +24721,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,954", - "created": 1610361438.954729, + "asctime": "2021-01-14 00:26:01,519", + "created": 1610580361.519636, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 954.7290802001953, + "msecs": 519.6359157562256, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10610.13913154602, - "thread": 140378875336448, + "relativeCreated": 10748.134851455688, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -24747,8 +24747,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,959", - "created": 1610361438.959816, + "asctime": "2021-01-14 00:26:01,524", + "created": 1610580361.524584, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24758,14 +24758,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 959.8159790039062, + "msecs": 524.5840549468994, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.226030349731, - "thread": 140378321712896, + "relativeCreated": 10753.082990646362, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24773,8 +24773,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:18,959", - "created": 1610361438.959979, + "asctime": "2021-01-14 00:26:01,524", + "created": 1610580361.524763, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -24784,14 +24784,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 959.9790573120117, + "msecs": 524.7631072998047, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.389108657837, - "thread": 140378321712896, + "relativeCreated": 10753.262042999268, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24799,8 +24799,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960054, + "asctime": "2021-01-14 00:26:01,524", + "created": 1610580361.524841, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24810,14 +24810,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 960.0539207458496, + "msecs": 524.8410701751709, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.463972091675, - "thread": 140378321712896, + "relativeCreated": 10753.340005874634, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24826,8 +24826,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960124, + "asctime": "2021-01-14 00:26:01,524", + "created": 1610580361.524909, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24837,14 +24837,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.1240158081055, + "msecs": 524.9090194702148, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.53406715393, - "thread": 140378321712896, + "relativeCreated": 10753.407955169678, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24852,8 +24852,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.9602, + "asctime": "2021-01-14 00:26:01,524", + "created": 1610580361.524989, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24863,14 +24863,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.2000713348389, + "msecs": 524.9888896942139, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.610122680664, - "thread": 140378321712896, + "relativeCreated": 10753.487825393677, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24879,8 +24879,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.96026, + "asctime": "2021-01-14 00:26:01,525", + "created": 1610580361.525057, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24890,14 +24890,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.2599143981934, + "msecs": 525.0570774078369, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.669965744019, - "thread": 140378321712896, + "relativeCreated": 10753.5560131073, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24905,8 +24905,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960339, + "asctime": "2021-01-14 00:26:01,525", + "created": 1610580361.52519, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24916,14 +24916,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.3390693664551, + "msecs": 525.1901149749756, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.74912071228, - "thread": 140378321712896, + "relativeCreated": 10753.689050674438, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24932,8 +24932,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960395, + "asctime": "2021-01-14 00:26:01,525", + "created": 1610580361.525314, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24943,14 +24943,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.395097732544, + "msecs": 525.3140926361084, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.80514907837, - "thread": 140378321712896, + "relativeCreated": 10753.813028335571, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24958,8 +24958,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960465, + "asctime": "2021-01-14 00:26:01,525", + "created": 1610580361.525487, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24969,14 +24969,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.4649543762207, + "msecs": 525.486946105957, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.875005722046, - "thread": 140378321712896, + "relativeCreated": 10753.98588180542, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -24985,8 +24985,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960524, + "asctime": "2021-01-14 00:26:01,525", + "created": 1610580361.525615, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -24996,14 +24996,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.5240821838379, + "msecs": 525.6149768829346, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10615.934133529663, - "thread": 140378321712896, + "relativeCreated": 10754.113912582397, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25011,8 +25011,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.9606, + "asctime": "2021-01-14 00:26:01,525", + "created": 1610580361.52584, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25022,14 +25022,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.5998992919922, + "msecs": 525.8400440216064, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.009950637817, - "thread": 140378321712896, + "relativeCreated": 10754.33897972107, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25038,8 +25038,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960659, + "asctime": "2021-01-14 00:26:01,526", + "created": 1610580361.526067, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25049,14 +25049,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.6590270996094, + "msecs": 526.0670185089111, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.069078445435, - "thread": 140378321712896, + "relativeCreated": 10754.565954208374, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25064,8 +25064,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.96076, + "asctime": "2021-01-14 00:26:01,526", + "created": 1610580361.526229, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25075,14 +25075,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 960.7601165771484, + "msecs": 526.2289047241211, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.170167922974, - "thread": 140378321712896, + "relativeCreated": 10754.727840423584, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25090,8 +25090,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960833, + "asctime": "2021-01-14 00:26:01,526", + "created": 1610580361.526357, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25101,14 +25101,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 960.8330726623535, + "msecs": 526.3569355010986, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.243124008179, - "thread": 140378321712896, + "relativeCreated": 10754.855871200562, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25116,8 +25116,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960905, + "asctime": "2021-01-14 00:26:01,526", + "created": 1610580361.526476, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25127,14 +25127,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.9050750732422, + "msecs": 526.4759063720703, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.315126419067, - "thread": 140378321712896, + "relativeCreated": 10754.974842071533, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25143,8 +25143,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:18,960", - "created": 1610361438.960965, + "asctime": "2021-01-14 00:26:01,526", + "created": 1610580361.526589, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25154,14 +25154,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 960.9649181365967, + "msecs": 526.5889167785645, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.374969482422, - "thread": 140378321712896, + "relativeCreated": 10755.087852478027, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25169,8 +25169,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:18,961", - "created": 1610361438.961084, + "asctime": "2021-01-14 00:26:01,526", + "created": 1610580361.526814, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25180,14 +25180,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 961.0838890075684, + "msecs": 526.8139839172363, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.493940353394, - "thread": 140378321712896, + "relativeCreated": 10755.3129196167, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25198,25 +25198,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:18,961", - "created": 1610361438.961216, + "asctime": "2021-01-14 00:26:01,527", + "created": 1610580361.527067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 961.2159729003906, + "msecs": 527.0669460296631, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.626024246216, - "thread": 140378321712896, + "relativeCreated": 10755.565881729126, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -25224,46 +25224,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:18,961", - "created": 1610361438.961293, + "asctime": "2021-01-14 00:26:01,527", + "created": 1610580361.527208, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 961.2929821014404, + "msecs": 527.2080898284912, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10616.703033447266, - "thread": 140378321712896, + "relativeCreated": 10755.707025527954, + "thread": 140018685310720, "threadName": "Thread-14" } ], - "msecs": 291.33009910583496, + "msecs": 851.5560626983643, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10946.74015045166, - "thread": 140379336402752, + "relativeCreated": 11080.054998397827, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.33003711700439453 + "time_consumption": 0.32434797286987305 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:19,292", - "created": 1610361439.292512, + "asctime": "2021-01-14 00:26:01,853", + "created": 1610580361.853008, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25280,8 +25280,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:19,291", - "created": 1610361439.291936, + "asctime": "2021-01-14 00:26:01,852", + "created": 1610580361.852463, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25291,14 +25291,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'unittest' ()", "module": "test", - "msecs": 291.93592071533203, + "msecs": 852.4630069732666, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10947.345972061157, - "thread": 140379336402752, + "relativeCreated": 11080.96194267273, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -25307,8 +25307,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:19,292", - "created": 1610361439.292265, + "asctime": "2021-01-14 00:26:01,852", + "created": 1610580361.852696, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25318,35 +25318,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'unittest' ()", "module": "test", - "msecs": 292.2649383544922, + "msecs": 852.6959419250488, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10947.674989700317, - "thread": 140379336402752, + "relativeCreated": 11081.194877624512, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 292.5119400024414, + "msecs": 853.0080318450928, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10947.921991348267, - "thread": 140379336402752, + "relativeCreated": 11081.506967544556, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00024700164794921875 + "time_consumption": 0.0003120899200439453 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:19,293", - "created": 1610361439.293318, + "asctime": "2021-01-14 00:26:01,853", + "created": 1610580361.853883, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25363,8 +25363,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:19,292", - "created": 1610361439.2929, + "asctime": "2021-01-14 00:26:01,853", + "created": 1610580361.853443, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25374,14 +25374,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'unittest' ()", "module": "test", - "msecs": 292.90008544921875, + "msecs": 853.442907333374, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10948.310136795044, - "thread": 140379336402752, + "relativeCreated": 11081.941843032837, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -25390,8 +25390,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:19,293", - "created": 1610361439.293108, + "asctime": "2021-01-14 00:26:01,853", + "created": 1610580361.853658, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25401,32 +25401,32 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'unittest' ()", "module": "test", - "msecs": 293.1079864501953, + "msecs": 853.6579608917236, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10948.51803779602, - "thread": 140379336402752, + "relativeCreated": 11082.156896591187, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 293.3180332183838, + "msecs": 853.8830280303955, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10948.728084564209, - "thread": 140379336402752, + "relativeCreated": 11082.381963729858, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00021004676818847656 + "time_consumption": 0.000225067138671875 }, { "args": [], - "asctime": "2021-01-11 11:37:19,293", - "created": 1610361439.29393, + "asctime": "2021-01-14 00:26:01,854", + "created": 1610580361.854673, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -25437,21 +25437,21 @@ "message": "Setting Channel name for client only", "module": "test_communication", "moduleLogger": [], - "msecs": 293.9300537109375, + "msecs": 854.672908782959, "msg": "Setting Channel name for client only", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10949.340105056763, - "thread": 140379336402752, + "relativeCreated": 11083.171844482422, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:19,640", - "created": 1610361439.640862, + "asctime": "2021-01-14 00:26:02,201", + "created": 1610580362.201317, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -25466,8 +25466,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:19,294", - "created": 1610361439.294694, + "asctime": "2021-01-14 00:26:01,854", + "created": 1610580361.854951, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25477,47 +25477,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 294.6939468383789, + "msecs": 854.9509048461914, "msg": "%s Connection Lost...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10950.103998184204, - "thread": 140379336402752, + "relativeCreated": 11083.449840545654, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:19,294", - "created": 1610361439.294918, + "asctime": "2021-01-14 00:26:01,855", + "created": 1610580361.855166, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 294.9180603027344, + "msecs": 855.165958404541, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10950.32811164856, - "thread": 140379336402752, + "relativeCreated": 11083.664894104004, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,295", - "created": 1610361439.295117, + "asctime": "2021-01-14 00:26:01,855", + "created": 1610580361.855364, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25527,47 +25527,47 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 295.1169013977051, + "msecs": 855.3640842437744, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10950.52695274353, - "thread": 140379336402752, + "relativeCreated": 11083.863019943237, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:19,295", - "created": 1610361439.295291, + "asctime": "2021-01-14 00:26:01,855", + "created": 1610580361.855539, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 295.2909469604492, + "msecs": 855.539083480835, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10950.700998306274, - "thread": 140379336402752, + "relativeCreated": 11084.038019180298, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:19,295", - "created": 1610361439.295506, + "asctime": "2021-01-14 00:26:01,855", + "created": 1610580361.855723, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25577,22 +25577,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 295.5060005187988, + "msecs": 855.7229042053223, "msg": "%s Connection established...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10950.916051864624, - "thread": 140379336402752, + "relativeCreated": 11084.221839904785, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:19,295", - "created": 1610361439.295772, + "asctime": "2021-01-14 00:26:01,855", + "created": 1610580361.855904, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25602,39 +25602,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 295.7720756530762, + "msecs": 855.9041023254395, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10951.182126998901, - "thread": 140379336402752, + "relativeCreated": 11084.403038024902, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:19,296", - "created": 1610361439.296011, + "asctime": "2021-01-14 00:26:01,856", + "created": 1610580361.856085, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 296.01097106933594, + "msecs": 856.0850620269775, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10951.421022415161, - "thread": 140379336402752, + "relativeCreated": 11084.58399772644, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -25645,33 +25645,33 @@ "status: okay", "'client'" ], - "asctime": "2021-01-11 11:37:19,296", - "created": 1610361439.296374, + "asctime": "2021-01-14 00:26:01,856", + "created": 1610580361.856456, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 296.3740825653076, + "msecs": 856.4560413360596, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10951.784133911133, - "thread": 140379336402752, + "relativeCreated": 11084.954977035522, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,297", - "created": 1610361439.297167, + "asctime": "2021-01-14 00:26:01,857", + "created": 1610580361.857341, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25681,22 +25681,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 297.1670627593994, + "msecs": 857.3410511016846, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10952.577114105225, - "thread": 140379336402752, + "relativeCreated": 11085.839986801147, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,297", - "created": 1610361439.29745, + "asctime": "2021-01-14 00:26:01,857", + "created": 1610580361.857638, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25706,39 +25706,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 297.45006561279297, + "msecs": 857.637882232666, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10952.860116958618, - "thread": 140379336402752, + "relativeCreated": 11086.136817932129, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:19,297", - "created": 1610361439.297707, + "asctime": "2021-01-14 00:26:01,857", + "created": 1610580361.857902, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 297.70708084106445, + "msecs": 857.9020500183105, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10953.11713218689, - "thread": 140379336402752, + "relativeCreated": 11086.400985717773, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -25746,8 +25746,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" ], - "asctime": "2021-01-11 11:37:19,319", - "created": 1610361439.319988, + "asctime": "2021-01-14 00:26:01,886", + "created": 1610580361.886297, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25757,14 +25757,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", "module": "__init__", - "msecs": 319.9880123138428, + "msecs": 886.2969875335693, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10975.398063659668, - "thread": 140378875336448, + "relativeCreated": 11114.795923233032, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25772,8 +25772,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" ], - "asctime": "2021-01-11 11:37:19,320", - "created": 1610361439.320341, + "asctime": "2021-01-14 00:26:01,886", + "created": 1610580361.886932, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25783,14 +25783,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", "module": "__init__", - "msecs": 320.3411102294922, + "msecs": 886.9318962097168, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10975.751161575317, - "thread": 140378875336448, + "relativeCreated": 11115.43083190918, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25798,8 +25798,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,320", - "created": 1610361439.320479, + "asctime": "2021-01-14 00:26:01,887", + "created": 1610580361.887159, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25809,14 +25809,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 320.4789161682129, + "msecs": 887.1591091156006, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10975.888967514038, - "thread": 140378875336448, + "relativeCreated": 11115.658044815063, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25825,8 +25825,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:19,320", - "created": 1610361439.320597, + "asctime": "2021-01-14 00:26:01,887", + "created": 1610580361.88734, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25836,14 +25836,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 320.59693336486816, + "msecs": 887.3400688171387, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10976.006984710693, - "thread": 140378875336448, + "relativeCreated": 11115.839004516602, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25851,8 +25851,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,320", - "created": 1610361439.320725, + "asctime": "2021-01-14 00:26:01,887", + "created": 1610580361.887567, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25862,14 +25862,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 320.7249641418457, + "msecs": 887.5670433044434, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10976.13501548767, - "thread": 140378875336448, + "relativeCreated": 11116.065979003906, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25878,8 +25878,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,320", - "created": 1610361439.320855, + "asctime": "2021-01-14 00:26:01,887", + "created": 1610580361.887847, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25889,14 +25889,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 320.85490226745605, + "msecs": 887.8469467163086, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10976.264953613281, - "thread": 140378875336448, + "relativeCreated": 11116.345882415771, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25904,8 +25904,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,320", - "created": 1610361439.320993, + "asctime": "2021-01-14 00:26:01,888", + "created": 1610580361.888087, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25915,14 +25915,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 320.99294662475586, + "msecs": 888.0870342254639, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10976.402997970581, - "thread": 140378875336448, + "relativeCreated": 11116.585969924927, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25931,8 +25931,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,321", - "created": 1610361439.321096, + "asctime": "2021-01-14 00:26:01,888", + "created": 1610580361.888219, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25942,14 +25942,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 321.09594345092773, + "msecs": 888.2191181182861, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10976.505994796753, - "thread": 140378875336448, + "relativeCreated": 11116.718053817749, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25957,8 +25957,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,321", - "created": 1610361439.321216, + "asctime": "2021-01-14 00:26:01,888", + "created": 1610580361.888385, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25968,14 +25968,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 321.2161064147949, + "msecs": 888.3850574493408, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10976.62615776062, - "thread": 140378875336448, + "relativeCreated": 11116.883993148804, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -25984,8 +25984,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,321", - "created": 1610361439.321659, + "asctime": "2021-01-14 00:26:01,888", + "created": 1610580361.888986, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -25995,14 +25995,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 321.6590881347656, + "msecs": 888.9861106872559, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10977.06913948059, - "thread": 140378875336448, + "relativeCreated": 11117.485046386719, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26010,8 +26010,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,321", - "created": 1610361439.321811, + "asctime": "2021-01-14 00:26:01,889", + "created": 1610580361.889281, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26021,14 +26021,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 321.8109607696533, + "msecs": 889.2810344696045, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10977.221012115479, - "thread": 140378875336448, + "relativeCreated": 11117.779970169067, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26036,8 +26036,8 @@ "comm-client:", "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" ], - "asctime": "2021-01-11 11:37:19,321", - "created": 1610361439.32196, + "asctime": "2021-01-14 00:26:01,889", + "created": 1610580361.889549, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26047,14 +26047,14 @@ "lineno": 284, "message": "comm-client: TX -> (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", "module": "__init__", - "msecs": 321.9599723815918, + "msecs": 889.5490169525146, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10977.370023727417, - "thread": 140378875336448, + "relativeCreated": 11118.047952651978, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26062,8 +26062,8 @@ "comm-server:", "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" ], - "asctime": "2021-01-11 11:37:19,322", - "created": 1610361439.32209, + "asctime": "2021-01-14 00:26:01,889", + "created": 1610580361.889794, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26073,14 +26073,14 @@ "lineno": 414, "message": "comm-server: RX <- (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", "module": "__init__", - "msecs": 322.08991050720215, + "msecs": 889.794111251831, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10977.499961853027, - "thread": 140378875336448, + "relativeCreated": 11118.293046951294, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26089,8 +26089,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,322", - "created": 1610361439.322195, + "asctime": "2021-01-14 00:26:01,889", + "created": 1610580361.889976, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26100,14 +26100,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 322.19505310058594, + "msecs": 889.9760246276855, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10977.605104446411, - "thread": 140378875336448, + "relativeCreated": 11118.474960327148, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26115,8 +26115,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,322", - "created": 1610361439.32231, + "asctime": "2021-01-14 00:26:01,890", + "created": 1610580361.890169, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26126,14 +26126,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 322.3099708557129, + "msecs": 890.1689052581787, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10977.720022201538, - "thread": 140378875336448, + "relativeCreated": 11118.667840957642, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26142,8 +26142,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:19,322", - "created": 1610361439.322406, + "asctime": "2021-01-14 00:26:01,890", + "created": 1610580361.890328, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26153,14 +26153,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 322.4060535430908, + "msecs": 890.3279304504395, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10977.816104888916, - "thread": 140378875336448, + "relativeCreated": 11118.826866149902, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26168,8 +26168,8 @@ "STP:", "(66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4" ], - "asctime": "2021-01-11 11:37:19,322", - "created": 1610361439.322617, + "asctime": "2021-01-14 00:26:01,890", + "created": 1610580361.890659, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26179,14 +26179,14 @@ "lineno": 148, "message": "STP: message identified - (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", "module": "stp", - "msecs": 322.6170539855957, + "msecs": 890.6590938568115, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10978.02710533142, - "thread": 140378875336448, + "relativeCreated": 11119.158029556274, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26197,25 +26197,25 @@ "status: okay", "u'client'" ], - "asctime": "2021-01-11 11:37:19,322", - "created": 1610361439.322943, + "asctime": "2021-01-14 00:26:01,891", + "created": 1610580361.891038, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", "module": "__init__", - "msecs": 322.94297218322754, + "msecs": 891.0379409790039, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10978.353023529053, - "thread": 140378875336448, + "relativeCreated": 11119.536876678467, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26223,25 +26223,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:19,323", - "created": 1610361439.32312, + "asctime": "2021-01-14 00:26:01,891", + "created": 1610580361.891243, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 323.1201171875, + "msecs": 891.2429809570312, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10978.530168533325, - "thread": 140378875336448, + "relativeCreated": 11119.741916656494, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26249,25 +26249,25 @@ "prot-server:", "'client'" ], - "asctime": "2021-01-11 11:37:19,323", - "created": 1610361439.323488, + "asctime": "2021-01-14 00:26:01,891", + "created": 1610580361.891623, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "INFO", "levelno": 20, - "lineno": 420, + "lineno": 432, "message": "prot-server: channel name is now 'client'", "module": "__init__", - "msecs": 323.4879970550537, + "msecs": 891.6230201721191, "msg": "%s channel name is now %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10978.898048400879, - "thread": 140378875336448, + "relativeCreated": 11120.121955871582, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26278,25 +26278,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:19,323", - "created": 1610361439.323704, + "asctime": "2021-01-14 00:26:01,891", + "created": 1610580361.891888, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 323.7040042877197, + "msecs": 891.887903213501, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10979.114055633545, - "thread": 140378875336448, + "relativeCreated": 11120.386838912964, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -26304,8 +26304,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:19,326", - "created": 1610361439.326396, + "asctime": "2021-01-14 00:26:01,892", + "created": 1610580361.892533, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26315,14 +26315,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 326.39598846435547, + "msecs": 892.5330638885498, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10981.80603981018, - "thread": 140378321712896, + "relativeCreated": 11121.031999588013, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26330,8 +26330,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:19,326", - "created": 1610361439.326735, + "asctime": "2021-01-14 00:26:01,892", + "created": 1610580361.892707, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26341,14 +26341,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 326.7350196838379, + "msecs": 892.707109451294, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10982.145071029663, - "thread": 140378321712896, + "relativeCreated": 11121.206045150757, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26356,8 +26356,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,326", - "created": 1610361439.326888, + "asctime": "2021-01-14 00:26:01,892", + "created": 1610580361.892782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26367,14 +26367,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 326.8880844116211, + "msecs": 892.7819728851318, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10982.298135757446, - "thread": 140378321712896, + "relativeCreated": 11121.280908584595, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26383,8 +26383,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:19,327", - "created": 1610361439.32703, + "asctime": "2021-01-14 00:26:01,892", + "created": 1610580361.892848, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26394,14 +26394,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 327.0299434661865, + "msecs": 892.848014831543, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10982.439994812012, - "thread": 140378321712896, + "relativeCreated": 11121.346950531006, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26409,8 +26409,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,327", - "created": 1610361439.327185, + "asctime": "2021-01-14 00:26:01,892", + "created": 1610580361.892925, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26420,14 +26420,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 327.18491554260254, + "msecs": 892.9250240325928, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10982.594966888428, - "thread": 140378321712896, + "relativeCreated": 11121.423959732056, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26436,8 +26436,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,327", - "created": 1610361439.327305, + "asctime": "2021-01-14 00:26:01,892", + "created": 1610580361.892993, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26447,14 +26447,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 327.3050785064697, + "msecs": 892.9929733276367, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10982.715129852295, - "thread": 140378321712896, + "relativeCreated": 11121.4919090271, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26462,8 +26462,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,327", - "created": 1610361439.327502, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893074, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26473,14 +26473,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 327.5020122528076, + "msecs": 893.0740356445312, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10982.912063598633, - "thread": 140378321712896, + "relativeCreated": 11121.572971343994, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26489,8 +26489,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,327", - "created": 1610361439.32763, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26500,14 +26500,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 327.63004302978516, + "msecs": 893.143892288208, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10983.04009437561, - "thread": 140378321712896, + "relativeCreated": 11121.64282798767, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26515,8 +26515,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,327", - "created": 1610361439.327782, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.89322, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26526,14 +26526,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 327.78191566467285, + "msecs": 893.2199478149414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10983.191967010498, - "thread": 140378321712896, + "relativeCreated": 11121.718883514404, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26542,8 +26542,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,327", - "created": 1610361439.327897, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893292, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26553,14 +26553,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 327.8970718383789, + "msecs": 893.2919502258301, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10983.307123184204, - "thread": 140378321712896, + "relativeCreated": 11121.790885925293, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26568,8 +26568,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,328", - "created": 1610361439.328054, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893394, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26579,14 +26579,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 328.05395126342773, + "msecs": 893.3939933776855, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10983.464002609253, - "thread": 140378321712896, + "relativeCreated": 11121.892929077148, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26595,8 +26595,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,328", - "created": 1610361439.328174, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893466, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26606,14 +26606,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 328.1741142272949, + "msecs": 893.4659957885742, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10983.58416557312, - "thread": 140378321712896, + "relativeCreated": 11121.964931488037, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26621,8 +26621,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:19,328", - "created": 1610361439.328354, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893592, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26632,14 +26632,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 328.3538818359375, + "msecs": 893.5918807983398, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10983.763933181763, - "thread": 140378321712896, + "relativeCreated": 11122.090816497803, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26647,8 +26647,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:19,328", - "created": 1610361439.328576, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.89369, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26658,14 +26658,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 328.57608795166016, + "msecs": 893.6901092529297, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10983.986139297485, - "thread": 140378321712896, + "relativeCreated": 11122.189044952393, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26673,8 +26673,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,328", - "created": 1610361439.328789, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893756, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26684,14 +26684,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 328.78899574279785, + "msecs": 893.7559127807617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10984.199047088623, - "thread": 140378321712896, + "relativeCreated": 11122.254848480225, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26700,8 +26700,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:19,328", - "created": 1610361439.328959, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893813, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26711,14 +26711,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 328.95898818969727, + "msecs": 893.812894821167, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10984.369039535522, - "thread": 140378321712896, + "relativeCreated": 11122.31183052063, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26726,8 +26726,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:19,329", - "created": 1610361439.329318, + "asctime": "2021-01-14 00:26:01,893", + "created": 1610580361.893931, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -26737,14 +26737,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 329.3180465698242, + "msecs": 893.9309120178223, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10984.72809791565, - "thread": 140378321712896, + "relativeCreated": 11122.429847717285, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26755,25 +26755,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:19,329", - "created": 1610361439.329654, + "asctime": "2021-01-14 00:26:01,894", + "created": 1610580361.894074, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 329.6539783477783, + "msecs": 894.0739631652832, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10985.064029693604, - "thread": 140378321712896, + "relativeCreated": 11122.572898864746, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -26781,46 +26781,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:19,329", - "created": 1610361439.329861, + "asctime": "2021-01-14 00:26:01,894", + "created": 1610580361.894182, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 329.8609256744385, + "msecs": 894.1819667816162, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 10985.270977020264, - "thread": 140378321712896, + "relativeCreated": 11122.68090248108, + "thread": 140018685310720, "threadName": "Thread-14" } ], - "msecs": 640.861988067627, + "msecs": 201.31707191467285, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11296.272039413452, - "thread": 140379336402752, + "relativeCreated": 11429.816007614136, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3110010623931885 + "time_consumption": 0.30713510513305664 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:19,641", - "created": 1610361439.641847, + "asctime": "2021-01-14 00:26:02,202", + "created": 1610580362.202379, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26837,8 +26837,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:19,641", - "created": 1610361439.641451, + "asctime": "2021-01-14 00:26:02,201", + "created": 1610580362.201967, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26848,14 +26848,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 641.4508819580078, + "msecs": 201.9670009613037, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11296.860933303833, - "thread": 140379336402752, + "relativeCreated": 11430.465936660767, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -26864,8 +26864,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:19,641", - "created": 1610361439.641661, + "asctime": "2021-01-14 00:26:02,202", + "created": 1610580362.202188, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26875,35 +26875,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 641.6609287261963, + "msecs": 202.18801498413086, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11297.070980072021, - "thread": 140379336402752, + "relativeCreated": 11430.686950683594, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 641.8468952178955, + "msecs": 202.3789882659912, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11297.25694656372, - "thread": 140379336402752, + "relativeCreated": 11430.877923965454, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018596649169921875 + "time_consumption": 0.00019097328186035156 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:19,642", - "created": 1610361439.642492, + "asctime": "2021-01-14 00:26:02,203", + "created": 1610580362.20323, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26920,8 +26920,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:19,642", - "created": 1610361439.642134, + "asctime": "2021-01-14 00:26:02,202", + "created": 1610580362.202746, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26931,14 +26931,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 642.1339511871338, + "msecs": 202.74591445922852, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11297.544002532959, - "thread": 140379336402752, + "relativeCreated": 11431.244850158691, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -26947,8 +26947,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:19,642", - "created": 1610361439.64232, + "asctime": "2021-01-14 00:26:02,202", + "created": 1610580362.202988, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26958,32 +26958,32 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 642.319917678833, + "msecs": 202.9879093170166, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11297.729969024658, - "thread": 140379336402752, + "relativeCreated": 11431.48684501648, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 642.4920558929443, + "msecs": 203.2299041748047, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11297.90210723877, - "thread": 140379336402752, + "relativeCreated": 11431.728839874268, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017213821411132812 + "time_consumption": 0.00024199485778808594 }, { "args": [], - "asctime": "2021-01-11 11:37:19,642", - "created": 1610361439.642998, + "asctime": "2021-01-14 00:26:02,204", + "created": 1610580362.204163, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -26994,21 +26994,21 @@ "message": "Setting Channel name for server only", "module": "test_communication", "moduleLogger": [], - "msecs": 642.9979801177979, + "msecs": 204.1630744934082, "msg": "Setting Channel name for server only", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11298.408031463623, - "thread": 140379336402752, + "relativeCreated": 11432.662010192871, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:19,988", - "created": 1610361439.988943, + "asctime": "2021-01-14 00:26:02,550", + "created": 1610580362.550406, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -27023,8 +27023,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:19,643", - "created": 1610361439.643254, + "asctime": "2021-01-14 00:26:02,204", + "created": 1610580362.204436, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27034,47 +27034,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 643.2540416717529, + "msecs": 204.4360637664795, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11298.664093017578, - "thread": 140379336402752, + "relativeCreated": 11432.934999465942, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:19,643", - "created": 1610361439.643465, + "asctime": "2021-01-14 00:26:02,204", + "created": 1610580362.204678, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 643.4650421142578, + "msecs": 204.67805862426758, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11298.875093460083, - "thread": 140379336402752, + "relativeCreated": 11433.17699432373, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,643", - "created": 1610361439.643658, + "asctime": "2021-01-14 00:26:02,204", + "created": 1610580362.204904, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27084,47 +27084,47 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 643.657922744751, + "msecs": 204.90407943725586, "msg": "%s Connection Lost...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11299.067974090576, - "thread": 140379336402752, + "relativeCreated": 11433.403015136719, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:19,643", - "created": 1610361439.643831, + "asctime": "2021-01-14 00:26:02,205", + "created": 1610580362.205162, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 643.8310146331787, + "msecs": 205.16204833984375, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11299.241065979004, - "thread": 140379336402752, + "relativeCreated": 11433.660984039307, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:19,644", - "created": 1610361439.64401, + "asctime": "2021-01-14 00:26:02,205", + "created": 1610580362.205454, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27134,22 +27134,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 644.010066986084, + "msecs": 205.45411109924316, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11299.42011833191, - "thread": 140379336402752, + "relativeCreated": 11433.953046798706, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:19,644", - "created": 1610361439.64418, + "asctime": "2021-01-14 00:26:02,205", + "created": 1610580362.205635, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27159,39 +27159,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 644.1800594329834, + "msecs": 205.63507080078125, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11299.590110778809, - "thread": 140379336402752, + "relativeCreated": 11434.134006500244, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:19,644", - "created": 1610361439.64435, + "asctime": "2021-01-14 00:26:02,205", + "created": 1610580362.205811, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 644.3500518798828, + "msecs": 205.8110237121582, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11299.760103225708, - "thread": 140379336402752, + "relativeCreated": 11434.309959411621, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -27202,33 +27202,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:19,644", - "created": 1610361439.644639, + "asctime": "2021-01-14 00:26:02,206", + "created": 1610580362.20612, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 644.6390151977539, + "msecs": 206.12001419067383, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11300.04906654358, - "thread": 140379336402752, + "relativeCreated": 11434.618949890137, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,645", - "created": 1610361439.645204, + "asctime": "2021-01-14 00:26:02,206", + "created": 1610580362.206668, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27238,22 +27238,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 645.2040672302246, + "msecs": 206.66790008544922, "msg": "%s Connection established...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11300.61411857605, - "thread": 140379336402752, + "relativeCreated": 11435.166835784912, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,645", - "created": 1610361439.645416, + "asctime": "2021-01-14 00:26:02,206", + "created": 1610580362.20688, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27263,39 +27263,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 645.4160213470459, + "msecs": 206.8800926208496, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11300.826072692871, - "thread": 140379336402752, + "relativeCreated": 11435.379028320312, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:19,645", - "created": 1610361439.6456, + "asctime": "2021-01-14 00:26:02,207", + "created": 1610580362.207067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 645.6000804901123, + "msecs": 207.06701278686523, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11301.010131835938, - "thread": 140379336402752, + "relativeCreated": 11435.565948486328, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -27303,8 +27303,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:19,656", - "created": 1610361439.656918, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209086, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27314,14 +27314,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 656.9180488586426, + "msecs": 209.08594131469727, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11312.328100204468, - "thread": 140378875336448, + "relativeCreated": 11437.58487701416, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27329,8 +27329,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657155, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209279, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27340,14 +27340,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 657.1550369262695, + "msecs": 209.27906036376953, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11312.565088272095, - "thread": 140378875336448, + "relativeCreated": 11437.777996063232, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27355,8 +27355,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657241, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27366,14 +27366,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 657.2411060333252, + "msecs": 209.35893058776855, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11312.65115737915, - "thread": 140378875336448, + "relativeCreated": 11437.857866287231, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27382,8 +27382,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657317, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209425, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27393,14 +27393,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 657.3169231414795, + "msecs": 209.4249725341797, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11312.726974487305, - "thread": 140378875336448, + "relativeCreated": 11437.923908233643, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27408,8 +27408,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657403, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209512, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27419,14 +27419,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 657.4029922485352, + "msecs": 209.51199531555176, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11312.81304359436, - "thread": 140378875336448, + "relativeCreated": 11438.010931015015, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27435,8 +27435,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657514, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209572, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27446,14 +27446,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 657.5140953063965, + "msecs": 209.57207679748535, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11312.924146652222, - "thread": 140378875336448, + "relativeCreated": 11438.071012496948, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27461,8 +27461,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657656, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209657, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27472,14 +27472,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 657.6559543609619, + "msecs": 209.6569538116455, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.066005706787, - "thread": 140378875336448, + "relativeCreated": 11438.155889511108, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27488,8 +27488,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657757, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209715, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27499,14 +27499,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 657.757043838501, + "msecs": 209.7148895263672, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.167095184326, - "thread": 140378875336448, + "relativeCreated": 11438.21382522583, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27514,8 +27514,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657842, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209785, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27525,14 +27525,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 657.8419208526611, + "msecs": 209.78498458862305, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.251972198486, - "thread": 140378875336448, + "relativeCreated": 11438.283920288086, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27541,8 +27541,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.657906, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209847, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27552,14 +27552,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 657.9060554504395, + "msecs": 209.84697341918945, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.316106796265, - "thread": 140378875336448, + "relativeCreated": 11438.345909118652, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27567,8 +27567,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,657", - "created": 1610361439.65799, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.209925, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27578,14 +27578,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 657.9899787902832, + "msecs": 209.92493629455566, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.400030136108, - "thread": 140378875336448, + "relativeCreated": 11438.423871994019, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27594,8 +27594,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658051, + "asctime": "2021-01-14 00:26:02,209", + "created": 1610580362.20998, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27605,14 +27605,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 658.0510139465332, + "msecs": 209.98001098632812, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.461065292358, - "thread": 140378875336448, + "relativeCreated": 11438.478946685791, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27620,8 +27620,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658146, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.210067, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27631,14 +27631,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 658.1459045410156, + "msecs": 210.0670337677002, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.55595588684, - "thread": 140378875336448, + "relativeCreated": 11438.565969467163, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27646,8 +27646,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658226, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.210135, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27657,14 +27657,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 658.2260131835938, + "msecs": 210.13498306274414, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.636064529419, - "thread": 140378875336448, + "relativeCreated": 11438.633918762207, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27672,8 +27672,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658301, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.210208, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27683,14 +27683,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 658.3011150360107, + "msecs": 210.20793914794922, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.711166381836, - "thread": 140378875336448, + "relativeCreated": 11438.706874847412, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27699,8 +27699,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658365, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.210266, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27710,14 +27710,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 658.36501121521, + "msecs": 210.26611328125, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.775062561035, - "thread": 140378875336448, + "relativeCreated": 11438.765048980713, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27725,8 +27725,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658496, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.210386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27736,14 +27736,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 658.4959030151367, + "msecs": 210.3860378265381, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11313.905954360962, - "thread": 140378875336448, + "relativeCreated": 11438.884973526001, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27754,25 +27754,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658673, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.21053, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 658.6730480194092, + "msecs": 210.53004264831543, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11314.083099365234, - "thread": 140378875336448, + "relativeCreated": 11439.028978347778, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27780,25 +27780,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658762, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.210611, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 658.7619781494141, + "msecs": 210.61110496520996, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11314.17202949524, - "thread": 140378875336448, + "relativeCreated": 11439.110040664673, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27809,25 +27809,25 @@ "status: okay", "'server'" ], - "asctime": "2021-01-11 11:37:19,658", - "created": 1610361439.658871, + "asctime": "2021-01-14 00:26:02,210", + "created": 1610580362.210709, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"'server'\"", "module": "__init__", - "msecs": 658.8709354400635, + "msecs": 210.7090950012207, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11314.280986785889, - "thread": 140378875336448, + "relativeCreated": 11439.208030700684, + "thread": 140019238934272, "threadName": "Thread-13" }, { @@ -27835,8 +27835,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" ], - "asctime": "2021-01-11 11:37:19,663", - "created": 1610361439.663034, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212126, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27846,14 +27846,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", "module": "__init__", - "msecs": 663.0339622497559, + "msecs": 212.1260166168213, "msg": "%s TX -> %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11318.444013595581, - "thread": 140378321712896, + "relativeCreated": 11440.624952316284, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -27861,8 +27861,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" ], - "asctime": "2021-01-11 11:37:19,663", - "created": 1610361439.663353, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212275, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27872,14 +27872,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", "module": "__init__", - "msecs": 663.3529663085938, + "msecs": 212.27502822875977, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11318.763017654419, - "thread": 140378321712896, + "relativeCreated": 11440.773963928223, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -27887,8 +27887,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,663", - "created": 1610361439.663486, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212339, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27898,14 +27898,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 663.4860038757324, + "msecs": 212.33892440795898, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11318.896055221558, - "thread": 140378321712896, + "relativeCreated": 11440.837860107422, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -27914,8 +27914,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:19,663", - "created": 1610361439.663648, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212398, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27925,14 +27925,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 663.6478900909424, + "msecs": 212.39805221557617, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.057941436768, - "thread": 140378321712896, + "relativeCreated": 11440.896987915039, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -27940,8 +27940,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,663", - "created": 1610361439.663772, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212475, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27951,14 +27951,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 663.7721061706543, + "msecs": 212.47506141662598, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.18215751648, - "thread": 140378321712896, + "relativeCreated": 11440.973997116089, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -27967,8 +27967,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,663", - "created": 1610361439.663867, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212534, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -27978,14 +27978,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 663.8669967651367, + "msecs": 212.53395080566406, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.277048110962, - "thread": 140378321712896, + "relativeCreated": 11441.032886505127, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -27993,8 +27993,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,663", - "created": 1610361439.663993, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212613, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28004,14 +28004,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 663.9928817749023, + "msecs": 212.61310577392578, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.402933120728, - "thread": 140378321712896, + "relativeCreated": 11441.112041473389, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28020,8 +28020,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.66409, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.21267, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28031,14 +28031,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 664.0899181365967, + "msecs": 212.67008781433105, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.499969482422, - "thread": 140378321712896, + "relativeCreated": 11441.169023513794, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28046,8 +28046,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.6642, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212744, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28057,14 +28057,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 664.2000675201416, + "msecs": 212.74399757385254, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.610118865967, - "thread": 140378321712896, + "relativeCreated": 11441.242933273315, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28073,8 +28073,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.664287, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.2128, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28084,14 +28084,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 664.2870903015137, + "msecs": 212.8000259399414, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.697141647339, - "thread": 140378321712896, + "relativeCreated": 11441.298961639404, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28099,8 +28099,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.664417, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212884, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28110,14 +28110,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 664.417028427124, + "msecs": 212.88394927978516, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.82707977295, - "thread": 140378321712896, + "relativeCreated": 11441.382884979248, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28125,8 +28125,8 @@ "comm-server:", "(10): 3d 20 30 7d 9c 48 3b b3 3a 3e" ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.664556, + "asctime": "2021-01-14 00:26:02,212", + "created": 1610580362.212968, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28136,14 +28136,14 @@ "lineno": 284, "message": "comm-server: TX -> (10): 3d 20 30 7d 9c 48 3b b3 3a 3e", "module": "__init__", - "msecs": 664.5560264587402, + "msecs": 212.968111038208, "msg": "%s TX -> %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11319.966077804565, - "thread": 140378321712896, + "relativeCreated": 11441.46704673767, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28151,8 +28151,8 @@ "comm-client:", "(10): 3d 20 30 7d 9c 48 3b b3 3a 3e" ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.664669, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.213039, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28162,14 +28162,14 @@ "lineno": 414, "message": "comm-client: RX <- (10): 3d 20 30 7d 9c 48 3b b3 3a 3e", "module": "__init__", - "msecs": 664.6690368652344, + "msecs": 213.03892135620117, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11320.07908821106, - "thread": 140378321712896, + "relativeCreated": 11441.537857055664, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28178,8 +28178,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.664781, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.213103, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28189,14 +28189,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 664.7810935974121, + "msecs": 213.1030559539795, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11320.191144943237, - "thread": 140378321712896, + "relativeCreated": 11441.601991653442, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28204,8 +28204,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.664897, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.213186, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28215,14 +28215,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 664.8969650268555, + "msecs": 213.18602561950684, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11320.30701637268, - "thread": 140378321712896, + "relativeCreated": 11441.68496131897, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28231,8 +28231,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:19,664", - "created": 1610361439.664986, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.213242, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28242,14 +28242,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 664.9858951568604, + "msecs": 213.2420539855957, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11320.395946502686, - "thread": 140378321712896, + "relativeCreated": 11441.740989685059, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28257,8 +28257,8 @@ "STP:", "(66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3" ], - "asctime": "2021-01-11 11:37:19,665", - "created": 1610361439.665185, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.213364, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -28268,14 +28268,14 @@ "lineno": 148, "message": "STP: message identified - (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3", "module": "stp", - "msecs": 665.1849746704102, + "msecs": 213.3638858795166, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11320.595026016235, - "thread": 140378321712896, + "relativeCreated": 11441.86282157898, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28286,25 +28286,25 @@ "status: okay", "u'server'" ], - "asctime": "2021-01-11 11:37:19,665", - "created": 1610361439.665463, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.213514, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"u'server'\"", "module": "__init__", - "msecs": 665.4629707336426, + "msecs": 213.5140895843506, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11320.873022079468, - "thread": 140378321712896, + "relativeCreated": 11442.013025283813, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28312,25 +28312,25 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:19,665", - "created": 1610361439.665626, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.21363, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 665.626049041748, + "msecs": 213.62996101379395, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11321.036100387573, - "thread": 140378321712896, + "relativeCreated": 11442.128896713257, + "thread": 140018685310720, "threadName": "Thread-14" }, { @@ -28338,46 +28338,46 @@ "prot-client:", "'server'" ], - "asctime": "2021-01-11 11:37:19,666", - "created": 1610361439.666009, + "asctime": "2021-01-14 00:26:02,213", + "created": 1610580362.213766, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_response__", "levelname": "INFO", "levelno": 20, - "lineno": 407, + "lineno": 419, "message": "prot-client: channel name is now 'server'", "module": "__init__", - "msecs": 666.0089492797852, + "msecs": 213.76609802246094, "msg": "%s channel name is now %s", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11321.41900062561, - "thread": 140378321712896, + "relativeCreated": 11442.265033721924, + "thread": 140018685310720, "threadName": "Thread-14" } ], - "msecs": 988.9430999755859, + "msecs": 550.4059791564941, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11644.353151321411, - "thread": 140379336402752, + "relativeCreated": 11778.904914855957, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3229341506958008 + "time_consumption": 0.3366398811340332 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-11 11:37:19,990", - "created": 1610361439.990063, + "asctime": "2021-01-14 00:26:02,551", + "created": 1610580362.551934, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28394,8 +28394,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:19,989", - "created": 1610361439.989552, + "asctime": "2021-01-14 00:26:02,551", + "created": 1610580362.551121, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28405,14 +28405,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'server' ()", "module": "test", - "msecs": 989.5520210266113, + "msecs": 551.1209964752197, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11644.962072372437, - "thread": 140379336402752, + "relativeCreated": 11779.619932174683, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28421,8 +28421,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:19,989", - "created": 1610361439.989775, + "asctime": "2021-01-14 00:26:02,551", + "created": 1610580362.551374, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28432,35 +28432,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'server' ()", "module": "test", - "msecs": 989.7749423980713, + "msecs": 551.3739585876465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11645.184993743896, - "thread": 140379336402752, + "relativeCreated": 11779.87289428711, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 990.062952041626, + "msecs": 551.934003829956, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11645.473003387451, - "thread": 140379336402752, + "relativeCreated": 11780.432939529419, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002880096435546875 + "time_consumption": 0.0005600452423095703 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-11 11:37:19,990", - "created": 1610361439.990985, + "asctime": "2021-01-14 00:26:02,552", + "created": 1610580362.552673, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28477,8 +28477,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:19,990", - "created": 1610361439.990485, + "asctime": "2021-01-14 00:26:02,552", + "created": 1610580362.552306, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28488,14 +28488,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'server' ()", "module": "test", - "msecs": 990.4849529266357, + "msecs": 552.3059368133545, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11645.895004272461, - "thread": 140379336402752, + "relativeCreated": 11780.804872512817, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28504,8 +28504,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:19,990", - "created": 1610361439.990744, + "asctime": "2021-01-14 00:26:02,552", + "created": 1610580362.5525, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28515,39 +28515,39 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'server' ()", "module": "test", - "msecs": 990.7441139221191, + "msecs": 552.5000095367432, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11646.154165267944, - "thread": 140379336402752, + "relativeCreated": 11780.998945236206, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 990.9849166870117, + "msecs": 552.6731014251709, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11646.394968032837, - "thread": 140379336402752, + "relativeCreated": 11781.172037124634, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00024080276489257812 + "time_consumption": 0.00017309188842773438 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 1.7554988861083984, - "time_finished": "2021-01-11 11:37:19,990", - "time_start": "2021-01-11 11:37:18,235" + "time_consumption": 1.74996018409729, + "time_finished": "2021-01-14 00:26:02,552", + "time_start": "2021-01-14 00:26:00,802" }, "_Pn3WgE0NEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:13,774", - "created": 1610361433.774343, + "asctime": "2021-01-14 00:25:56,339", + "created": 1610580356.339467, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28558,18 +28558,18 @@ "message": "_Pn3WgE0NEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 774.3430137634277, + "msecs": 339.46704864501953, "msg": "_Pn3WgE0NEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5429.753065109253, + "relativeCreated": 5567.965984344482, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781371, + "asctime": "2021-01-14 00:25:56,347", + "created": 1610580356.347717, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -28584,8 +28584,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:13,775", - "created": 1610361433.775513, + "asctime": "2021-01-14 00:25:56,340", + "created": 1610580356.34084, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28595,22 +28595,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 775.5129337310791, + "msecs": 340.84010124206543, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5430.922985076904, - "thread": 140379336402752, + "relativeCreated": 5569.339036941528, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:13,776", - "created": 1610361433.776988, + "asctime": "2021-01-14 00:25:56,341", + "created": 1610580356.341584, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28620,22 +28620,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 776.9880294799805, + "msecs": 341.5839672088623, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5432.398080825806, - "thread": 140379336402752, + "relativeCreated": 5570.082902908325, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:13,777", - "created": 1610361433.777352, + "asctime": "2021-01-14 00:25:56,341", + "created": 1610580356.341802, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28645,39 +28645,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 777.3520946502686, + "msecs": 341.80188179016113, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5432.762145996094, - "thread": 140379336402752, + "relativeCreated": 5570.300817489624, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:13,777", - "created": 1610361433.777918, + "asctime": "2021-01-14 00:25:56,342", + "created": 1610580356.342131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 777.9181003570557, + "msecs": 342.1308994293213, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5433.328151702881, - "thread": 140379336402752, + "relativeCreated": 5570.629835128784, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28686,25 +28686,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:13,778", - "created": 1610361433.778142, + "asctime": "2021-01-14 00:25:56,342", + "created": 1610580356.342264, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 778.141975402832, + "msecs": 342.26393699645996, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5433.552026748657, - "thread": 140379336402752, + "relativeCreated": 5570.762872695923, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28712,25 +28712,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:13,778", - "created": 1610361433.778469, + "asctime": "2021-01-14 00:25:56,342", + "created": 1610580356.342426, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 778.4690856933594, + "msecs": 342.426061630249, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5433.879137039185, - "thread": 140379336402752, + "relativeCreated": 5570.924997329712, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28738,25 +28738,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:13,778", - "created": 1610361433.77873, + "asctime": "2021-01-14 00:25:56,342", + "created": 1610580356.342545, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 778.7299156188965, + "msecs": 342.5450325012207, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.139966964722, - "thread": 140379336402752, + "relativeCreated": 5571.043968200684, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28764,25 +28764,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:13,778", - "created": 1610361433.778976, + "asctime": "2021-01-14 00:25:56,342", + "created": 1610580356.342665, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 778.9759635925293, + "msecs": 342.6649570465088, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.3860149383545, - "thread": 140379336402752, + "relativeCreated": 5571.163892745972, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28790,25 +28790,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779105, + "asctime": "2021-01-14 00:25:56,342", + "created": 1610580356.342825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 779.1049480438232, + "msecs": 342.82493591308594, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.514999389648, - "thread": 140379336402752, + "relativeCreated": 5571.323871612549, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28818,8 +28818,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779163, + "asctime": "2021-01-14 00:25:56,342", + "created": 1610580356.342968, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28829,14 +28829,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 779.1628837585449, + "msecs": 342.9679870605469, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.57293510437, - "thread": 140379336402752, + "relativeCreated": 5571.46692276001, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28846,8 +28846,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779221, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.343106, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28857,14 +28857,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 779.2210578918457, + "msecs": 343.1060314178467, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.631109237671, - "thread": 140379336402752, + "relativeCreated": 5571.60496711731, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28874,8 +28874,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779278, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.34321, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28885,14 +28885,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 779.278039932251, + "msecs": 343.20998191833496, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.688091278076, - "thread": 140379336402752, + "relativeCreated": 5571.708917617798, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28902,8 +28902,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779339, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.343321, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -28913,39 +28913,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 779.339075088501, + "msecs": 343.3210849761963, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.749126434326, - "thread": 140379336402752, + "relativeCreated": 5571.820020675659, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779395, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.343423, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 779.3951034545898, + "msecs": 343.42288970947266, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.805154800415, - "thread": 140379336402752, + "relativeCreated": 5571.921825408936, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28954,25 +28954,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779454, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.343539, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 779.4539928436279, + "msecs": 343.5389995574951, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.864044189453, - "thread": 140379336402752, + "relativeCreated": 5572.037935256958, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -28980,25 +28980,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779511, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.343647, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 779.5109748840332, + "msecs": 343.6470031738281, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.921026229858, - "thread": 140379336402752, + "relativeCreated": 5572.145938873291, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29006,25 +29006,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779565, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.343741, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 779.5650959014893, + "msecs": 343.74094009399414, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5434.975147247314, - "thread": 140379336402752, + "relativeCreated": 5572.239875793457, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29034,8 +29034,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779622, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.343848, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29045,14 +29045,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 779.6220779418945, + "msecs": 343.84799003601074, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.03212928772, - "thread": 140379336402752, + "relativeCreated": 5572.346925735474, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29062,8 +29062,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779676, + "asctime": "2021-01-14 00:25:56,343", + "created": 1610580356.34396, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29073,14 +29073,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 779.6759605407715, + "msecs": 343.9600467681885, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.086011886597, - "thread": 140379336402752, + "relativeCreated": 5572.458982467651, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29089,25 +29089,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.77973, + "asctime": "2021-01-14 00:25:56,344", + "created": 1610580356.344065, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 779.7300815582275, + "msecs": 344.06495094299316, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.140132904053, - "thread": 140379336402752, + "relativeCreated": 5572.563886642456, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29116,25 +29116,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779782, + "asctime": "2021-01-14 00:25:56,344", + "created": 1610580356.344168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 779.7820568084717, + "msecs": 344.16794776916504, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.192108154297, - "thread": 140379336402752, + "relativeCreated": 5572.666883468628, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29143,75 +29143,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779835, + "asctime": "2021-01-14 00:25:56,344", + "created": 1610580356.344289, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 779.8349857330322, + "msecs": 344.28906440734863, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.245037078857, - "thread": 140379336402752, + "relativeCreated": 5572.7880001068115, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:13,779", - "created": 1610361433.779884, + "asctime": "2021-01-14 00:25:56,344", + "created": 1610580356.344408, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 779.8840999603271, + "msecs": 344.4080352783203, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.294151306152, - "thread": 140379336402752, + "relativeCreated": 5572.906970977783, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780036, + "asctime": "2021-01-14 00:25:56,344", + "created": 1610580356.344707, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 780.0359725952148, + "msecs": 344.7070121765137, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.44602394104, - "thread": 140379336402752, + "relativeCreated": 5573.205947875977, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29220,25 +29220,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780108, + "asctime": "2021-01-14 00:25:56,344", + "created": 1610580356.344848, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 780.1079750061035, + "msecs": 344.8479175567627, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.518026351929, - "thread": 140379336402752, + "relativeCreated": 5573.346853256226, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29246,25 +29246,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780198, + "asctime": "2021-01-14 00:25:56,345", + "created": 1610580356.345052, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 780.1980972290039, + "msecs": 345.05200386047363, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.608148574829, - "thread": 140379336402752, + "relativeCreated": 5573.5509395599365, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29272,25 +29272,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780264, + "asctime": "2021-01-14 00:25:56,345", + "created": 1610580356.345225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 780.2639007568359, + "msecs": 345.22509574890137, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.673952102661, - "thread": 140379336402752, + "relativeCreated": 5573.724031448364, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29298,25 +29298,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780329, + "asctime": "2021-01-14 00:25:56,345", + "created": 1610580356.345379, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 780.3289890289307, + "msecs": 345.379114151001, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.739040374756, - "thread": 140379336402752, + "relativeCreated": 5573.878049850464, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29324,25 +29324,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.78038, + "asctime": "2021-01-14 00:25:56,345", + "created": 1610580356.345521, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 780.3800106048584, + "msecs": 345.5209732055664, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.790061950684, - "thread": 140379336402752, + "relativeCreated": 5574.019908905029, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29352,8 +29352,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780436, + "asctime": "2021-01-14 00:25:56,345", + "created": 1610580356.345665, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29363,14 +29363,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 780.4360389709473, + "msecs": 345.66497802734375, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.8460903167725, - "thread": 140379336402752, + "relativeCreated": 5574.163913726807, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29380,8 +29380,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780497, + "asctime": "2021-01-14 00:25:56,345", + "created": 1610580356.345819, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29391,14 +29391,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 780.4970741271973, + "msecs": 345.81899642944336, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.9071254730225, - "thread": 140379336402752, + "relativeCreated": 5574.317932128906, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29408,8 +29408,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780546, + "asctime": "2021-01-14 00:25:56,345", + "created": 1610580356.345966, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29419,14 +29419,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 780.5459499359131, + "msecs": 345.966100692749, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5435.956001281738, - "thread": 140379336402752, + "relativeCreated": 5574.465036392212, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29436,8 +29436,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780595, + "asctime": "2021-01-14 00:25:56,346", + "created": 1610580356.346126, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29447,39 +29447,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 780.595064163208, + "msecs": 346.1260795593262, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.005115509033, - "thread": 140379336402752, + "relativeCreated": 5574.625015258789, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780639, + "asctime": "2021-01-14 00:25:56,346", + "created": 1610580356.346264, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 780.6389331817627, + "msecs": 346.2638854980469, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.048984527588, - "thread": 140379336402752, + "relativeCreated": 5574.76282119751, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29488,25 +29488,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780687, + "asctime": "2021-01-14 00:25:56,346", + "created": 1610580356.346375, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 780.6870937347412, + "msecs": 346.3749885559082, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.097145080566, - "thread": 140379336402752, + "relativeCreated": 5574.873924255371, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29514,25 +29514,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780735, + "asctime": "2021-01-14 00:25:56,346", + "created": 1610580356.346482, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 780.7350158691406, + "msecs": 346.4820384979248, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.145067214966, - "thread": 140379336402752, + "relativeCreated": 5574.980974197388, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29540,25 +29540,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780944, + "asctime": "2021-01-14 00:25:56,346", + "created": 1610580356.346882, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 780.9441089630127, + "msecs": 346.8821048736572, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.354160308838, - "thread": 140379336402752, + "relativeCreated": 5575.38104057312, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29568,8 +29568,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:13,780", - "created": 1610361433.780993, + "asctime": "2021-01-14 00:25:56,346", + "created": 1610580356.347, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29579,14 +29579,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 780.9929847717285, + "msecs": 346.9998836517334, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.403036117554, - "thread": 140379336402752, + "relativeCreated": 5575.498819351196, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29596,8 +29596,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781055, + "asctime": "2021-01-14 00:25:56,347", + "created": 1610580356.347117, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29607,14 +29607,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 781.0549736022949, + "msecs": 347.11694717407227, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.46502494812, - "thread": 140379336402752, + "relativeCreated": 5575.615882873535, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29623,25 +29623,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781124, + "asctime": "2021-01-14 00:25:56,347", + "created": 1610580356.347247, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 781.1241149902344, + "msecs": 347.2468852996826, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.53416633606, - "thread": 140379336402752, + "relativeCreated": 5575.7458209991455, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29650,25 +29650,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781186, + "asctime": "2021-01-14 00:25:56,347", + "created": 1610580356.347365, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 781.1861038208008, + "msecs": 347.3649024963379, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.596155166626, - "thread": 140379336402752, + "relativeCreated": 5575.863838195801, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29677,68 +29677,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781246, + "asctime": "2021-01-14 00:25:56,347", + "created": 1610580356.347484, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 781.2459468841553, + "msecs": 347.4841117858887, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.6559982299805, - "thread": 140379336402752, + "relativeCreated": 5575.983047485352, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781308, + "asctime": "2021-01-14 00:25:56,347", + "created": 1610580356.3476, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 781.3079357147217, + "msecs": 347.59998321533203, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.717987060547, - "thread": 140379336402752, + "relativeCreated": 5576.098918914795, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 781.3711166381836, + "msecs": 347.7170467376709, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.781167984009, - "thread": 140379336402752, + "relativeCreated": 5576.215982437134, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 6.318092346191406e-05 + "time_consumption": 0.00011706352233886719 }, { "args": [], - "asctime": "2021-01-11 11:37:14,124", - "created": 1610361434.124971, + "asctime": "2021-01-14 00:25:56,693", + "created": 1610580356.693244, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29753,8 +29753,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781499, + "asctime": "2021-01-14 00:25:56,347", + "created": 1610580356.347962, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29764,22 +29764,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 781.498908996582, + "msecs": 347.9619026184082, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.908960342407, - "thread": 140379336402752, + "relativeCreated": 5576.460838317871, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781558, + "asctime": "2021-01-14 00:25:56,348", + "created": 1610580356.348092, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29789,39 +29789,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 781.5580368041992, + "msecs": 348.09207916259766, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5436.968088150024, - "thread": 140379336402752, + "relativeCreated": 5576.591014862061, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781612, + "asctime": "2021-01-14 00:25:56,348", + "created": 1610580356.348216, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 781.6119194030762, + "msecs": 348.21605682373047, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5437.021970748901, - "thread": 140379336402752, + "relativeCreated": 5576.714992523193, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29832,33 +29832,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781703, + "asctime": "2021-01-14 00:25:56,348", + "created": 1610580356.348407, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 781.702995300293, + "msecs": 348.4070301055908, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5437.113046646118, - "thread": 140379336402752, + "relativeCreated": 5576.905965805054, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.781921, + "asctime": "2021-01-14 00:25:56,348", + "created": 1610580356.34879, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29868,22 +29868,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 781.9209098815918, + "msecs": 348.78993034362793, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5437.330961227417, - "thread": 140379336402752, + "relativeCreated": 5577.288866043091, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:13,781", - "created": 1610361433.78199, + "asctime": "2021-01-14 00:25:56,348", + "created": 1610580356.348933, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29893,39 +29893,14 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 781.9900512695312, + "msecs": 348.93298149108887, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5437.400102615356, - "thread": 140379336402752, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-01-11 11:37:13,782", - "created": 1610361433.782051, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 427, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 782.0510864257812, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 36164, - "processName": "MainProcess", - "relativeCreated": 5437.461137771606, - "thread": 140379336402752, + "relativeCreated": 5577.431917190552, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -29933,8 +29908,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784142, + "asctime": "2021-01-14 00:25:56,349", + "created": 1610580356.349278, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29944,23 +29919,48 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 784.142017364502, + "msecs": 349.2779731750488, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5439.552068710327, - "thread": 140378908907264, + "relativeCreated": 5577.776908874512, + "thread": 140019272505088, "threadName": "Thread-9" }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-14 00:25:56,349", + "created": 1610580356.349473, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 439, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 349.4729995727539, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 5213, + "processName": "MainProcess", + "relativeCreated": 5577.971935272217, + "thread": 140019705194304, + "threadName": "MainThread" + }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784286, + "asctime": "2021-01-14 00:25:56,349", + "created": 1610580356.349818, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29970,14 +29970,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 784.2860221862793, + "msecs": 349.81799125671387, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5439.6960735321045, - "thread": 140378908907264, + "relativeCreated": 5578.316926956177, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -29985,8 +29985,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784349, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350047, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -29996,14 +29996,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 784.3489646911621, + "msecs": 350.04711151123047, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5439.759016036987, - "thread": 140378908907264, + "relativeCreated": 5578.546047210693, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30012,8 +30012,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784404, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350157, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30023,14 +30023,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 784.4040393829346, + "msecs": 350.1570224761963, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5439.81409072876, - "thread": 140378908907264, + "relativeCreated": 5578.655958175659, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30038,8 +30038,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.78448, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30049,14 +30049,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 784.480094909668, + "msecs": 350.2929210662842, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5439.890146255493, - "thread": 140378908907264, + "relativeCreated": 5578.791856765747, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30065,8 +30065,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784532, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350402, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30076,14 +30076,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 784.5320701599121, + "msecs": 350.4021167755127, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5439.942121505737, - "thread": 140378908907264, + "relativeCreated": 5578.901052474976, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30091,8 +30091,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784599, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350529, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30102,14 +30102,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 784.5990657806396, + "msecs": 350.5289554595947, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.009117126465, - "thread": 140378908907264, + "relativeCreated": 5579.027891159058, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30118,8 +30118,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784653, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350621, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30129,14 +30129,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 784.6529483795166, + "msecs": 350.62098503112793, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.062999725342, - "thread": 140378908907264, + "relativeCreated": 5579.119920730591, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30144,8 +30144,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784735, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350732, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30155,14 +30155,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 784.7349643707275, + "msecs": 350.73208808898926, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.145015716553, - "thread": 140378908907264, + "relativeCreated": 5579.231023788452, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30171,8 +30171,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784795, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350821, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30182,14 +30182,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 784.7950458526611, + "msecs": 350.82101821899414, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.205097198486, - "thread": 140378908907264, + "relativeCreated": 5579.319953918457, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30197,8 +30197,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784861, + "asctime": "2021-01-14 00:25:56,350", + "created": 1610580356.350945, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30208,14 +30208,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 784.8610877990723, + "msecs": 350.94499588012695, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.2711391448975, - "thread": 140378908907264, + "relativeCreated": 5579.44393157959, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30224,8 +30224,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784908, + "asctime": "2021-01-14 00:25:56,351", + "created": 1610580356.351039, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30235,14 +30235,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 784.9080562591553, + "msecs": 351.03893280029297, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.3181076049805, - "thread": 140378908907264, + "relativeCreated": 5579.537868499756, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30250,8 +30250,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:13,784", - "created": 1610361433.784984, + "asctime": "2021-01-14 00:25:56,351", + "created": 1610580356.351181, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -30261,14 +30261,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 784.9841117858887, + "msecs": 351.1810302734375, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.394163131714, - "thread": 140378908907264, + "relativeCreated": 5579.6799659729, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30276,8 +30276,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785044, + "asctime": "2021-01-14 00:25:56,351", + "created": 1610580356.351289, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -30287,14 +30287,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 785.0439548492432, + "msecs": 351.2890338897705, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.454006195068, - "thread": 140378908907264, + "relativeCreated": 5579.787969589233, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30302,8 +30302,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785099, + "asctime": "2021-01-14 00:25:56,351", + "created": 1610580356.35139, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30313,14 +30313,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 785.0990295410156, + "msecs": 351.38988494873047, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.509080886841, - "thread": 140378908907264, + "relativeCreated": 5579.888820648193, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30329,8 +30329,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785146, + "asctime": "2021-01-14 00:25:56,351", + "created": 1610580356.35148, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30340,14 +30340,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 785.1459980010986, + "msecs": 351.48000717163086, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.556049346924, - "thread": 140378908907264, + "relativeCreated": 5579.978942871094, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30355,8 +30355,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785269, + "asctime": "2021-01-14 00:25:56,351", + "created": 1610580356.351672, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30366,14 +30366,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 785.269021987915, + "msecs": 351.6719341278076, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.67907333374, - "thread": 140378908907264, + "relativeCreated": 5580.1708698272705, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30384,25 +30384,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.78543, + "asctime": "2021-01-14 00:25:56,351", + "created": 1610580356.351888, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 785.4299545288086, + "msecs": 351.88794136047363, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.840005874634, - "thread": 140378908907264, + "relativeCreated": 5580.3868770599365, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30410,25 +30410,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785504, + "asctime": "2021-01-14 00:25:56,352", + "created": 1610580356.352008, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 785.5041027069092, + "msecs": 352.0081043243408, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5440.914154052734, - "thread": 140378908907264, + "relativeCreated": 5580.507040023804, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30439,25 +30439,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785594, + "asctime": "2021-01-14 00:25:56,352", + "created": 1610580356.352171, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 785.5939865112305, + "msecs": 352.1709442138672, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.004037857056, - "thread": 140378908907264, + "relativeCreated": 5580.66987991333, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -30465,8 +30465,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785874, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357195, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -30476,14 +30476,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 785.8738899230957, + "msecs": 357.1949005126953, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.283941268921, - "thread": 140378900514560, + "relativeCreated": 5585.693836212158, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30491,8 +30491,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:13,785", - "created": 1610361433.785985, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357347, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -30502,14 +30502,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 785.984992980957, + "msecs": 357.3470115661621, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.395044326782, - "thread": 140378900514560, + "relativeCreated": 5585.845947265625, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30517,8 +30517,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786035, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357413, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30528,14 +30528,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 786.0350608825684, + "msecs": 357.41305351257324, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.445112228394, - "thread": 140378900514560, + "relativeCreated": 5585.911989212036, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30544,8 +30544,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786078, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357464, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30555,14 +30555,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 786.0779762268066, + "msecs": 357.464075088501, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.488027572632, - "thread": 140378900514560, + "relativeCreated": 5585.963010787964, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30570,8 +30570,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786133, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357528, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30581,14 +30581,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 786.1330509185791, + "msecs": 357.5279712677002, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.543102264404, - "thread": 140378900514560, + "relativeCreated": 5586.026906967163, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30597,8 +30597,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786174, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357578, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30608,14 +30608,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 786.1740589141846, + "msecs": 357.5780391693115, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.58411026001, - "thread": 140378900514560, + "relativeCreated": 5586.076974868774, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30623,8 +30623,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786232, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357655, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30634,14 +30634,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 786.2319946289062, + "msecs": 357.6550483703613, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.642045974731, - "thread": 140378900514560, + "relativeCreated": 5586.153984069824, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30650,8 +30650,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786273, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357704, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30661,14 +30661,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 786.2730026245117, + "msecs": 357.70392417907715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.683053970337, - "thread": 140378900514560, + "relativeCreated": 5586.20285987854, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30676,8 +30676,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786322, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357783, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30687,14 +30687,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 786.3221168518066, + "msecs": 357.78307914733887, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.732168197632, - "thread": 140378900514560, + "relativeCreated": 5586.282014846802, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30703,8 +30703,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786365, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357832, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30714,14 +30714,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 786.3650321960449, + "msecs": 357.8319549560547, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.77508354187, - "thread": 140378900514560, + "relativeCreated": 5586.330890655518, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30729,8 +30729,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786432, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357897, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30740,14 +30740,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 786.4320278167725, + "msecs": 357.8970432281494, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.842079162598, - "thread": 140378900514560, + "relativeCreated": 5586.395978927612, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30756,8 +30756,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786483, + "asctime": "2021-01-14 00:25:56,357", + "created": 1610580356.357952, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30767,14 +30767,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 786.4830493927002, + "msecs": 357.9521179199219, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.893100738525, - "thread": 140378900514560, + "relativeCreated": 5586.451053619385, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30782,8 +30782,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786554, + "asctime": "2021-01-14 00:25:56,358", + "created": 1610580356.35803, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -30793,14 +30793,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 786.5540981292725, + "msecs": 358.0300807952881, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5441.964149475098, - "thread": 140378900514560, + "relativeCreated": 5586.529016494751, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30808,8 +30808,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786614, + "asctime": "2021-01-14 00:25:56,358", + "created": 1610580356.358086, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -30819,14 +30819,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 786.613941192627, + "msecs": 358.08610916137695, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5442.023992538452, - "thread": 140378900514560, + "relativeCreated": 5586.58504486084, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30834,8 +30834,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786668, + "asctime": "2021-01-14 00:25:56,358", + "created": 1610580356.358138, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30845,14 +30845,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 786.668062210083, + "msecs": 358.1380844116211, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5442.078113555908, - "thread": 140378900514560, + "relativeCreated": 5586.637020111084, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30861,8 +30861,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786716, + "asctime": "2021-01-14 00:25:56,358", + "created": 1610580356.358187, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30872,14 +30872,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 786.7159843444824, + "msecs": 358.1869602203369, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5442.126035690308, - "thread": 140378900514560, + "relativeCreated": 5586.6858959198, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30887,8 +30887,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786814, + "asctime": "2021-01-14 00:25:56,358", + "created": 1610580356.358283, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -30898,14 +30898,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 786.8139743804932, + "msecs": 358.28304290771484, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5442.224025726318, - "thread": 140378900514560, + "relativeCreated": 5586.781978607178, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30916,25 +30916,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:13,786", - "created": 1610361433.786936, + "asctime": "2021-01-14 00:25:56,358", + "created": 1610580356.358386, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 786.9360446929932, + "msecs": 358.3860397338867, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5442.346096038818, - "thread": 140378900514560, + "relativeCreated": 5586.88497543335, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -30942,43 +30942,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:13,787", - "created": 1610361433.787013, + "asctime": "2021-01-14 00:25:56,358", + "created": 1610580356.358449, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 787.013053894043, + "msecs": 358.44898223876953, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5442.423105239868, - "thread": 140378900514560, + "relativeCreated": 5586.947917938232, + "thread": 140019264112384, "threadName": "Thread-10" } ], - "msecs": 124.97091293334961, + "msecs": 693.2439804077148, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5780.380964279175, - "thread": 140379336402752, + "relativeCreated": 5921.742916107178, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.33795785903930664 + "time_consumption": 0.3347949981689453 }, { "args": [], - "asctime": "2021-01-11 11:37:14,125", - "created": 1610361434.125519, + "asctime": "2021-01-14 00:25:56,693", + "created": 1610580356.693859, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -30989,21 +30989,21 @@ "message": "Setting a Server secret and no Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 125.5190372467041, + "msecs": 693.8591003417969, "msg": "Setting a Server secret and no Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5780.929088592529, - "thread": 140379336402752, + "relativeCreated": 5922.35803604126, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:14,327", - "created": 1610361434.327237, + "asctime": "2021-01-14 00:25:56,895", + "created": 1610580356.895766, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -31022,25 +31022,25 @@ "status: okay", "'msg3_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:14,126", - "created": 1610361434.126069, + "asctime": "2021-01-14 00:25:56,694", + "created": 1610580356.694358, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", "module": "__init__", - "msecs": 126.0690689086914, + "msecs": 694.3581104278564, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5781.479120254517, - "thread": 140379336402752, + "relativeCreated": 5922.857046127319, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -31048,8 +31048,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:14,151", - "created": 1610361434.151305, + "asctime": "2021-01-14 00:25:56,718", + "created": 1610580356.718053, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31059,14 +31059,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 151.3049602508545, + "msecs": 718.0531024932861, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5806.71501159668, - "thread": 140378908907264, + "relativeCreated": 5946.552038192749, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31074,8 +31074,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:14,151", - "created": 1610361434.15181, + "asctime": "2021-01-14 00:25:56,718", + "created": 1610580356.718701, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31085,14 +31085,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 151.8099308013916, + "msecs": 718.7008857727051, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5807.219982147217, - "thread": 140378908907264, + "relativeCreated": 5947.199821472168, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31100,8 +31100,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,152", - "created": 1610361434.152018, + "asctime": "2021-01-14 00:25:56,718", + "created": 1610580356.718977, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31111,14 +31111,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 152.01807022094727, + "msecs": 718.9769744873047, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5807.4281215667725, - "thread": 140378908907264, + "relativeCreated": 5947.475910186768, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31127,8 +31127,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:14,152", - "created": 1610361434.152215, + "asctime": "2021-01-14 00:25:56,719", + "created": 1610580356.719242, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31138,14 +31138,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 152.21500396728516, + "msecs": 719.2420959472656, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5807.62505531311, - "thread": 140378908907264, + "relativeCreated": 5947.7410316467285, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31153,8 +31153,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,152", - "created": 1610361434.152571, + "asctime": "2021-01-14 00:25:56,719", + "created": 1610580356.719558, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31164,14 +31164,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 152.5709629058838, + "msecs": 719.5580005645752, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5807.981014251709, - "thread": 140378908907264, + "relativeCreated": 5948.056936264038, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31180,8 +31180,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,152", - "created": 1610361434.152799, + "asctime": "2021-01-14 00:25:56,719", + "created": 1610580356.719788, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31191,14 +31191,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 152.79889106750488, + "msecs": 719.7880744934082, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5808.20894241333, - "thread": 140378908907264, + "relativeCreated": 5948.287010192871, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31206,8 +31206,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,153", - "created": 1610361434.153027, + "asctime": "2021-01-14 00:25:56,720", + "created": 1610580356.720202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31217,14 +31217,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 153.02705764770508, + "msecs": 720.2019691467285, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5808.43710899353, - "thread": 140378908907264, + "relativeCreated": 5948.700904846191, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31233,8 +31233,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,153", - "created": 1610361434.153183, + "asctime": "2021-01-14 00:25:56,720", + "created": 1610580356.720372, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31244,14 +31244,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 153.1829833984375, + "msecs": 720.3719615936279, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5808.593034744263, - "thread": 140378908907264, + "relativeCreated": 5948.870897293091, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31259,8 +31259,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,153", - "created": 1610361434.153377, + "asctime": "2021-01-14 00:25:56,720", + "created": 1610580356.720589, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31270,14 +31270,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 153.37705612182617, + "msecs": 720.5889225006104, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5808.787107467651, - "thread": 140378908907264, + "relativeCreated": 5949.087858200073, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31286,8 +31286,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,153", - "created": 1610361434.15353, + "asctime": "2021-01-14 00:25:56,720", + "created": 1610580356.720747, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31297,14 +31297,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 153.52988243103027, + "msecs": 720.7469940185547, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5808.9399337768555, - "thread": 140378908907264, + "relativeCreated": 5949.245929718018, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31312,8 +31312,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e" ], - "asctime": "2021-01-11 11:37:14,153", - "created": 1610361434.153908, + "asctime": "2021-01-14 00:25:56,721", + "created": 1610580356.721161, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31323,14 +31323,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e", "module": "__init__", - "msecs": 153.90801429748535, + "msecs": 721.160888671875, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5809.318065643311, - "thread": 140378908907264, + "relativeCreated": 5949.659824371338, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31338,8 +31338,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e" ], - "asctime": "2021-01-11 11:37:14,154", - "created": 1610361434.154168, + "asctime": "2021-01-14 00:25:56,721", + "created": 1610580356.72143, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31349,14 +31349,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e", "module": "__init__", - "msecs": 154.16789054870605, + "msecs": 721.4300632476807, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5809.577941894531, - "thread": 140378908907264, + "relativeCreated": 5949.928998947144, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31364,8 +31364,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,154", - "created": 1610361434.154403, + "asctime": "2021-01-14 00:25:56,721", + "created": 1610580356.721684, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31375,14 +31375,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 154.4029712677002, + "msecs": 721.6839790344238, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5809.813022613525, - "thread": 140378908907264, + "relativeCreated": 5950.182914733887, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31391,8 +31391,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,154", - "created": 1610361434.154557, + "asctime": "2021-01-14 00:25:56,721", + "created": 1610580356.721846, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31402,14 +31402,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 154.5569896697998, + "msecs": 721.8461036682129, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5809.967041015625, - "thread": 140378908907264, + "relativeCreated": 5950.345039367676, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31417,8 +31417,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,154", - "created": 1610361434.154753, + "asctime": "2021-01-14 00:25:56,722", + "created": 1610580356.722044, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31428,14 +31428,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 154.7529697418213, + "msecs": 722.0439910888672, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5810.1630210876465, - "thread": 140378908907264, + "relativeCreated": 5950.54292678833, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31444,8 +31444,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:14,154", - "created": 1610361434.154904, + "asctime": "2021-01-14 00:25:56,722", + "created": 1610580356.722202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31455,14 +31455,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 154.90388870239258, + "msecs": 722.2020626068115, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5810.313940048218, - "thread": 140378908907264, + "relativeCreated": 5950.700998306274, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31470,8 +31470,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08" ], - "asctime": "2021-01-11 11:37:14,155", - "created": 1610361434.155288, + "asctime": "2021-01-14 00:25:56,722", + "created": 1610580356.722595, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31481,14 +31481,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08", "module": "stp", - "msecs": 155.2879810333252, + "msecs": 722.5949764251709, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5810.69803237915, - "thread": 140378908907264, + "relativeCreated": 5951.093912124634, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31499,50 +31499,50 @@ "status: okay", "u'msg3_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:14,155", - "created": 1610361434.155703, + "asctime": "2021-01-14 00:25:56,723", + "created": 1610580356.723022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: execute request, data_id: 36, status: okay, data: \"u'msg3_data_to_be_transfered'\"", "module": "__init__", - "msecs": 155.70306777954102, + "msecs": 723.0219841003418, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5811.113119125366, - "thread": 140378908907264, + "relativeCreated": 5951.520919799805, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:14,155", - "created": 1610361434.155898, + "asctime": "2021-01-14 00:25:56,723", + "created": 1610580356.72322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 459, + "lineno": 471, "message": "prot-server: Authentification is required. Just sending negative response.", "module": "__init__", - "msecs": 155.8980941772461, + "msecs": 723.2201099395752, "msg": "%s Authentification is required. Just sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5811.308145523071, - "thread": 140378908907264, + "relativeCreated": 5951.719045639038, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31553,25 +31553,25 @@ "status: authentification required", "None" ], - "asctime": "2021-01-11 11:37:14,156", - "created": 1610361434.15622, + "asctime": "2021-01-14 00:25:56,723", + "created": 1610580356.723512, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: execute response, data_id: 36, status: authentification required, data: \"None\"", "module": "__init__", - "msecs": 156.2199592590332, + "msecs": 723.5119342803955, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5811.630010604858, - "thread": 140378908907264, + "relativeCreated": 5952.010869979858, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -31579,8 +31579,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" ], - "asctime": "2021-01-11 11:37:14,188", - "created": 1610361434.188628, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724267, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31590,14 +31590,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", "module": "__init__", - "msecs": 188.6279582977295, + "msecs": 724.2670059204102, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5844.038009643555, - "thread": 140378900514560, + "relativeCreated": 5952.765941619873, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31605,8 +31605,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" ], - "asctime": "2021-01-11 11:37:14,189", - "created": 1610361434.189244, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724464, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31616,14 +31616,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", "module": "__init__", - "msecs": 189.24403190612793, + "msecs": 724.463939666748, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5844.654083251953, - "thread": 140378900514560, + "relativeCreated": 5952.962875366211, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31631,8 +31631,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,189", - "created": 1610361434.189493, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724535, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31642,14 +31642,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 189.49294090270996, + "msecs": 724.5349884033203, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5844.902992248535, - "thread": 140378900514560, + "relativeCreated": 5953.033924102783, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31658,8 +31658,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:14,189", - "created": 1610361434.189734, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724596, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31669,14 +31669,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 189.73398208618164, + "msecs": 724.5960235595703, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5845.144033432007, - "thread": 140378900514560, + "relativeCreated": 5953.094959259033, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31684,8 +31684,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,189", - "created": 1610361434.189996, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724666, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31695,14 +31695,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 189.99600410461426, + "msecs": 724.6661186218262, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5845.406055450439, - "thread": 140378900514560, + "relativeCreated": 5953.165054321289, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31711,8 +31711,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,190", - "created": 1610361434.190312, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724726, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31722,14 +31722,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 190.31190872192383, + "msecs": 724.7259616851807, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5845.721960067749, - "thread": 140378900514560, + "relativeCreated": 5953.224897384644, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31737,8 +31737,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,190", - "created": 1610361434.190602, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.7248, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31748,14 +31748,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 190.60206413269043, + "msecs": 724.8001098632812, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5846.012115478516, - "thread": 140378900514560, + "relativeCreated": 5953.299045562744, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31764,8 +31764,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,190", - "created": 1610361434.190778, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724857, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31775,14 +31775,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 190.77801704406738, + "msecs": 724.8570919036865, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5846.188068389893, - "thread": 140378900514560, + "relativeCreated": 5953.356027603149, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31790,8 +31790,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,190", - "created": 1610361434.190978, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724923, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31801,14 +31801,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 190.9780502319336, + "msecs": 724.9228954315186, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5846.388101577759, - "thread": 140378900514560, + "relativeCreated": 5953.421831130981, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31817,8 +31817,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,191", - "created": 1610361434.191144, + "asctime": "2021-01-14 00:25:56,724", + "created": 1610580356.724974, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31828,14 +31828,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 191.14398956298828, + "msecs": 724.9739170074463, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5846.5540409088135, - "thread": 140378900514560, + "relativeCreated": 5953.472852706909, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31843,8 +31843,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,191", - "created": 1610361434.191357, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725045, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31854,14 +31854,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 191.35689735412598, + "msecs": 725.0449657440186, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5846.766948699951, - "thread": 140378900514560, + "relativeCreated": 5953.543901443481, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31870,8 +31870,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,191", - "created": 1610361434.191521, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725105, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31881,14 +31881,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 191.52092933654785, + "msecs": 725.1050472259521, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5846.930980682373, - "thread": 140378900514560, + "relativeCreated": 5953.603982925415, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31896,8 +31896,8 @@ "comm-server:", "(8): 36 7d 5e 04 41 f5 3a 3e" ], - "asctime": "2021-01-11 11:37:14,191", - "created": 1610361434.191762, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725198, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31907,14 +31907,14 @@ "lineno": 284, "message": "comm-server: TX -> (8): 36 7d 5e 04 41 f5 3a 3e", "module": "__init__", - "msecs": 191.76197052001953, + "msecs": 725.1980304718018, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5847.172021865845, - "thread": 140378900514560, + "relativeCreated": 5953.696966171265, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31922,8 +31922,8 @@ "comm-client:", "(8): 36 7d 5e 04 41 f5 3a 3e" ], - "asctime": "2021-01-11 11:37:14,192", - "created": 1610361434.192012, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725264, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31933,14 +31933,14 @@ "lineno": 414, "message": "comm-client: RX <- (8): 36 7d 5e 04 41 f5 3a 3e", "module": "__init__", - "msecs": 192.01207160949707, + "msecs": 725.2640724182129, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5847.422122955322, - "thread": 140378900514560, + "relativeCreated": 5953.763008117676, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31948,8 +31948,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,192", - "created": 1610361434.1922, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725326, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31959,14 +31959,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 192.1999454498291, + "msecs": 725.3260612487793, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5847.609996795654, - "thread": 140378900514560, + "relativeCreated": 5953.824996948242, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -31975,8 +31975,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:14,192", - "created": 1610361434.192357, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725383, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -31986,14 +31986,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 192.35706329345703, + "msecs": 725.3830432891846, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5847.767114639282, - "thread": 140378900514560, + "relativeCreated": 5953.8819789886475, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32001,8 +32001,8 @@ "STP:", "(64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5" ], - "asctime": "2021-01-11 11:37:14,192", - "created": 1610361434.192707, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725504, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32012,14 +32012,14 @@ "lineno": 148, "message": "STP: message identified - (64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5", "module": "stp", - "msecs": 192.70706176757812, + "msecs": 725.5039215087891, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5848.117113113403, - "thread": 140378900514560, + "relativeCreated": 5954.002857208252, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32030,71 +32030,71 @@ "status: authentification required", "None" ], - "asctime": "2021-01-11 11:37:14,193", - "created": 1610361434.193118, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725648, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", "module": "__init__", - "msecs": 193.11809539794922, + "msecs": 725.6479263305664, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5848.528146743774, - "thread": 140378900514560, + "relativeCreated": 5954.146862030029, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:14,193", - "created": 1610361434.193371, + "asctime": "2021-01-14 00:25:56,725", + "created": 1610580356.725763, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 193.37105751037598, + "msecs": 725.7630825042725, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5848.781108856201, - "thread": 140378900514560, + "relativeCreated": 5954.262018203735, + "thread": 140019264112384, "threadName": "Thread-10" } ], - "msecs": 327.2368907928467, + "msecs": 895.766019821167, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5982.646942138672, - "thread": 140379336402752, + "relativeCreated": 6124.26495552063, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.1338658332824707 + "time_consumption": 0.17000293731689453 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:14,328", - "created": 1610361434.328218, + "asctime": "2021-01-14 00:25:56,896", + "created": 1610580356.896758, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32111,8 +32111,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:14,327", - "created": 1610361434.327809, + "asctime": "2021-01-14 00:25:56,896", + "created": 1610580356.896346, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32122,14 +32122,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 327.80909538269043, + "msecs": 896.3460922241211, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5983.219146728516, - "thread": 140379336402752, + "relativeCreated": 6124.845027923584, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -32138,8 +32138,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:14,328", - "created": 1610361434.328018, + "asctime": "2021-01-14 00:25:56,896", + "created": 1610580356.896565, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32149,35 +32149,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 328.0179500579834, + "msecs": 896.5649604797363, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5983.428001403809, - "thread": 140379336402752, + "relativeCreated": 6125.063896179199, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 328.2179832458496, + "msecs": 896.7580795288086, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5983.628034591675, - "thread": 140379336402752, + "relativeCreated": 6125.2570152282715, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00020003318786621094 + "time_consumption": 0.00019311904907226562 }, { "args": [ "{u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36}", "" ], - "asctime": "2021-01-11 11:37:14,328", - "created": 1610361434.328889, + "asctime": "2021-01-14 00:25:56,897", + "created": 1610580356.897456, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32194,8 +32194,8 @@ "{u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36}", "" ], - "asctime": "2021-01-11 11:37:14,328", - "created": 1610361434.328502, + "asctime": "2021-01-14 00:25:56,897", + "created": 1610580356.897047, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32205,14 +32205,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36} ()", "module": "test", - "msecs": 328.50193977355957, + "msecs": 897.0470428466797, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5983.911991119385, - "thread": 140379336402752, + "relativeCreated": 6125.545978546143, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -32221,8 +32221,8 @@ "{'status': 3, 'service_id': 31, 'data': None, 'data_id': 36}", "" ], - "asctime": "2021-01-11 11:37:14,328", - "created": 1610361434.328678, + "asctime": "2021-01-14 00:25:56,897", + "created": 1610580356.897271, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32232,32 +32232,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 3, 'service_id': 31, 'data': None, 'data_id': 36} ()", "module": "test", - "msecs": 328.6778926849365, + "msecs": 897.270917892456, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5984.087944030762, - "thread": 140379336402752, + "relativeCreated": 6125.769853591919, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 328.8888931274414, + "msecs": 897.4559307098389, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5984.298944473267, - "thread": 140379336402752, + "relativeCreated": 6125.954866409302, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002110004425048828 + "time_consumption": 0.0001850128173828125 }, { "args": [], - "asctime": "2021-01-11 11:37:14,329", - "created": 1610361434.329145, + "asctime": "2021-01-14 00:25:56,897", + "created": 1610580356.897735, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -32268,21 +32268,21 @@ "message": "Setting no Server secret but a Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 329.1449546813965, + "msecs": 897.7351188659668, "msg": "Setting no Server secret but a Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5984.555006027222, - "thread": 140379336402752, + "relativeCreated": 6126.23405456543, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:14,631", - "created": 1610361434.631406, + "asctime": "2021-01-14 00:25:57,200", + "created": 1610580357.200363, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -32301,25 +32301,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:14,329", - "created": 1610361434.329522, + "asctime": "2021-01-14 00:25:56,898", + "created": 1610580356.898186, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 329.52189445495605, + "msecs": 898.1859683990479, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 5984.931945800781, - "thread": 140379336402752, + "relativeCreated": 6126.684904098511, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -32327,8 +32327,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:14,358", - "created": 1610361434.358301, + "asctime": "2021-01-14 00:25:56,926", + "created": 1610580356.92662, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -32338,14 +32338,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 358.30092430114746, + "msecs": 926.6200065612793, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6013.710975646973, - "thread": 140378900514560, + "relativeCreated": 6155.118942260742, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32353,8 +32353,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:14,358", - "created": 1610361434.35879, + "asctime": "2021-01-14 00:25:56,927", + "created": 1610580356.927171, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -32364,14 +32364,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 358.78992080688477, + "msecs": 927.170991897583, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6014.19997215271, - "thread": 140378900514560, + "relativeCreated": 6155.669927597046, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32379,8 +32379,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,359", - "created": 1610361434.359048, + "asctime": "2021-01-14 00:25:56,927", + "created": 1610580356.927386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32390,14 +32390,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 359.04788970947266, + "msecs": 927.3860454559326, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6014.457941055298, - "thread": 140378900514560, + "relativeCreated": 6155.8849811553955, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32406,8 +32406,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:14,359", - "created": 1610361434.359315, + "asctime": "2021-01-14 00:25:56,927", + "created": 1610580356.927566, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32417,14 +32417,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 359.3149185180664, + "msecs": 927.5660514831543, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6014.724969863892, - "thread": 140378900514560, + "relativeCreated": 6156.064987182617, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32432,8 +32432,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,359", - "created": 1610361434.359513, + "asctime": "2021-01-14 00:25:56,927", + "created": 1610580356.927779, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32443,14 +32443,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 359.5130443572998, + "msecs": 927.778959274292, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6014.923095703125, - "thread": 140378900514560, + "relativeCreated": 6156.277894973755, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32459,8 +32459,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,359", - "created": 1610361434.359675, + "asctime": "2021-01-14 00:25:56,927", + "created": 1610580356.927954, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32470,14 +32470,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 359.67493057250977, + "msecs": 927.9539585113525, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6015.084981918335, - "thread": 140378900514560, + "relativeCreated": 6156.452894210815, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32485,8 +32485,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,359", - "created": 1610361434.359867, + "asctime": "2021-01-14 00:25:56,928", + "created": 1610580356.928186, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32496,14 +32496,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 359.8670959472656, + "msecs": 928.1859397888184, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6015.277147293091, - "thread": 140378900514560, + "relativeCreated": 6156.684875488281, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32512,8 +32512,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,360", - "created": 1610361434.360017, + "asctime": "2021-01-14 00:25:56,928", + "created": 1610580356.928345, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32523,14 +32523,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 360.0170612335205, + "msecs": 928.3449649810791, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6015.427112579346, - "thread": 140378900514560, + "relativeCreated": 6156.843900680542, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32538,8 +32538,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,360", - "created": 1610361434.360191, + "asctime": "2021-01-14 00:25:56,928", + "created": 1610580356.928633, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32549,14 +32549,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 360.19110679626465, + "msecs": 928.6329746246338, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6015.60115814209, - "thread": 140378900514560, + "relativeCreated": 6157.131910324097, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32565,8 +32565,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,360", - "created": 1610361434.360328, + "asctime": "2021-01-14 00:25:56,928", + "created": 1610580356.928805, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32576,14 +32576,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 360.32795906066895, + "msecs": 928.8051128387451, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6015.738010406494, - "thread": 140378900514560, + "relativeCreated": 6157.304048538208, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32591,8 +32591,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:14,360", - "created": 1610361434.360652, + "asctime": "2021-01-14 00:25:56,929", + "created": 1610580356.929309, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -32602,14 +32602,14 @@ "lineno": 284, "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 360.65196990966797, + "msecs": 929.3088912963867, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6016.062021255493, - "thread": 140378900514560, + "relativeCreated": 6157.80782699585, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32617,8 +32617,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:14,360", - "created": 1610361434.360963, + "asctime": "2021-01-14 00:25:56,929", + "created": 1610580356.929554, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -32628,14 +32628,14 @@ "lineno": 414, "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 360.9631061553955, + "msecs": 929.5539855957031, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6016.373157501221, - "thread": 140378900514560, + "relativeCreated": 6158.052921295166, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32643,8 +32643,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,361", - "created": 1610361434.361203, + "asctime": "2021-01-14 00:25:56,929", + "created": 1610580356.929768, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32654,14 +32654,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 361.2029552459717, + "msecs": 929.7680854797363, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6016.613006591797, - "thread": 140378900514560, + "relativeCreated": 6158.267021179199, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32670,8 +32670,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:14,361", - "created": 1610361434.361399, + "asctime": "2021-01-14 00:25:56,929", + "created": 1610580356.929911, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32681,14 +32681,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 361.39893531799316, + "msecs": 929.9108982086182, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6016.808986663818, - "thread": 140378900514560, + "relativeCreated": 6158.409833908081, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32696,8 +32696,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:14,361", - "created": 1610361434.361643, + "asctime": "2021-01-14 00:25:56,930", + "created": 1610580356.930095, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32707,14 +32707,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 361.64307594299316, + "msecs": 930.0949573516846, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6017.053127288818, - "thread": 140378900514560, + "relativeCreated": 6158.5938930511475, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32723,8 +32723,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:14,361", - "created": 1610361434.361845, + "asctime": "2021-01-14 00:25:56,930", + "created": 1610580356.930274, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32734,14 +32734,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 361.8450164794922, + "msecs": 930.2740097045898, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6017.255067825317, - "thread": 140378900514560, + "relativeCreated": 6158.772945404053, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32749,8 +32749,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" ], - "asctime": "2021-01-11 11:37:14,362", - "created": 1610361434.362328, + "asctime": "2021-01-14 00:25:56,930", + "created": 1610580356.930709, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -32760,14 +32760,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", "module": "stp", - "msecs": 362.32805252075195, + "msecs": 930.7088851928711, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6017.738103866577, - "thread": 140378900514560, + "relativeCreated": 6159.207820892334, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32778,50 +32778,50 @@ "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:14,362", - "created": 1610361434.362803, + "asctime": "2021-01-14 00:25:56,931", + "created": 1610580356.931141, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 362.80298233032227, + "msecs": 931.1408996582031, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6018.2130336761475, - "thread": 140378900514560, + "relativeCreated": 6159.639835357666, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:14,363", - "created": 1610361434.363082, + "asctime": "2021-01-14 00:25:56,931", + "created": 1610580356.931349, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 463, + "lineno": 475, "message": "prot-client: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 363.0819320678711, + "msecs": 931.3490390777588, "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6018.491983413696, - "thread": 140378900514560, + "relativeCreated": 6159.847974777222, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -32831,46 +32831,46 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:14,631", - "created": 1610361434.63106, + "asctime": "2021-01-14 00:25:57,199", + "created": 1610580357.199993, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 631.0598850250244, + "msecs": 199.99289512634277, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6286.46993637085, - "thread": 140379336402752, + "relativeCreated": 6428.491830825806, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 631.4060688018799, + "msecs": 200.3629207611084, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6286.816120147705, - "thread": 140379336402752, + "relativeCreated": 6428.861856460571, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00034618377685546875 + "time_consumption": 0.000370025634765625 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:14,632", - "created": 1610361434.632266, + "asctime": "2021-01-14 00:25:57,201", + "created": 1610580357.201538, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32887,8 +32887,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:14,631", - "created": 1610361434.631824, + "asctime": "2021-01-14 00:25:57,201", + "created": 1610580357.201007, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32898,14 +32898,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 631.8240165710449, + "msecs": 201.00688934326172, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6287.23406791687, - "thread": 140379336402752, + "relativeCreated": 6429.505825042725, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -32914,8 +32914,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:14,632", - "created": 1610361434.632049, + "asctime": "2021-01-14 00:25:57,201", + "created": 1610580357.201289, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32925,35 +32925,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 632.0490837097168, + "msecs": 201.28893852233887, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6287.459135055542, - "thread": 140379336402752, + "relativeCreated": 6429.787874221802, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 632.2660446166992, + "msecs": 201.5380859375, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6287.676095962524, - "thread": 140379336402752, + "relativeCreated": 6430.037021636963, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00021696090698242188 + "time_consumption": 0.0002491474151611328 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:14,633", - "created": 1610361434.633273, + "asctime": "2021-01-14 00:25:57,202", + "created": 1610580357.202354, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32970,8 +32970,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:14,632", - "created": 1610361434.632594, + "asctime": "2021-01-14 00:25:57,202", + "created": 1610580357.202004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32981,14 +32981,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 632.594108581543, + "msecs": 202.00395584106445, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6288.004159927368, - "thread": 140379336402752, + "relativeCreated": 6430.502891540527, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -32997,8 +32997,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:14,633", - "created": 1610361434.633089, + "asctime": "2021-01-14 00:25:57,202", + "created": 1610580357.202171, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33008,32 +33008,32 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 633.0890655517578, + "msecs": 202.17108726501465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6288.499116897583, - "thread": 140379336402752, + "relativeCreated": 6430.6700229644775, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 633.2728862762451, + "msecs": 202.35395431518555, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6288.68293762207, - "thread": 140379336402752, + "relativeCreated": 6430.852890014648, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001838207244873047 + "time_consumption": 0.00018286705017089844 }, { "args": [], - "asctime": "2021-01-11 11:37:14,633", - "created": 1610361434.633609, + "asctime": "2021-01-14 00:25:57,202", + "created": 1610580357.202707, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -33044,21 +33044,21 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 633.6090564727783, + "msecs": 202.70705223083496, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6289.0191078186035, - "thread": 140379336402752, + "relativeCreated": 6431.205987930298, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:14,935", - "created": 1610361434.935474, + "asctime": "2021-01-14 00:25:57,504", + "created": 1610580357.504679, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -33076,25 +33076,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:14,634", - "created": 1610361434.634001, + "asctime": "2021-01-14 00:25:57,203", + "created": 1610580357.203089, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 634.0010166168213, + "msecs": 203.08899879455566, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6289.4110679626465, - "thread": 140379336402752, + "relativeCreated": 6431.587934494019, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -33104,46 +33104,46 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:14,935", - "created": 1610361434.935061, + "asctime": "2021-01-14 00:25:57,504", + "created": 1610580357.504304, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 935.060977935791, + "msecs": 504.3039321899414, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6590.471029281616, - "thread": 140379336402752, + "relativeCreated": 6732.802867889404, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 935.4739189147949, + "msecs": 504.67896461486816, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6590.88397026062, - "thread": 140379336402752, + "relativeCreated": 6733.177900314331, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00041294097900390625 + "time_consumption": 0.0003750324249267578 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:14,936", - "created": 1610361434.936515, + "asctime": "2021-01-14 00:25:57,505", + "created": 1610580357.505428, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33160,8 +33160,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:14,936", - "created": 1610361434.936051, + "asctime": "2021-01-14 00:25:57,505", + "created": 1610580357.505025, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33171,14 +33171,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 936.0508918762207, + "msecs": 505.02490997314453, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6591.460943222046, - "thread": 140379336402752, + "relativeCreated": 6733.523845672607, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -33187,8 +33187,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:14,936", - "created": 1610361434.936288, + "asctime": "2021-01-14 00:25:57,505", + "created": 1610580357.505249, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33198,35 +33198,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 936.2881183624268, + "msecs": 505.2490234375, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6591.698169708252, - "thread": 140379336402752, + "relativeCreated": 6733.747959136963, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 936.5150928497314, + "msecs": 505.4280757904053, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6591.925144195557, - "thread": 140379336402752, + "relativeCreated": 6733.927011489868, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002269744873046875 + "time_consumption": 0.00017905235290527344 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:14,937", - "created": 1610361434.937348, + "asctime": "2021-01-14 00:25:57,506", + "created": 1610580357.506211, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33243,8 +33243,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:14,936", - "created": 1610361434.936905, + "asctime": "2021-01-14 00:25:57,505", + "created": 1610580357.505722, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33254,14 +33254,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 936.9049072265625, + "msecs": 505.7220458984375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6592.314958572388, - "thread": 140379336402752, + "relativeCreated": 6734.2209815979, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -33270,8 +33270,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:14,937", - "created": 1610361434.937113, + "asctime": "2021-01-14 00:25:57,505", + "created": 1610580357.505985, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33281,32 +33281,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 937.1130466461182, + "msecs": 505.9850215911865, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6592.523097991943, - "thread": 140379336402752, + "relativeCreated": 6734.483957290649, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 937.3478889465332, + "msecs": 506.2110424041748, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6592.757940292358, - "thread": 140379336402752, + "relativeCreated": 6734.709978103638, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00023484230041503906 + "time_consumption": 0.00022602081298828125 }, { "args": [], - "asctime": "2021-01-11 11:37:15,239", - "created": 1610361435.239193, + "asctime": "2021-01-14 00:25:57,808", + "created": 1610580357.808202, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -33324,25 +33324,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:14,937", - "created": 1610361434.937702, + "asctime": "2021-01-14 00:25:57,506", + "created": 1610580357.506666, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 937.701940536499, + "msecs": 506.6659450531006, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6593.111991882324, - "thread": 140379336402752, + "relativeCreated": 6735.1648807525635, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -33352,46 +33352,46 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:15,238", - "created": 1610361435.238854, + "asctime": "2021-01-14 00:25:57,807", + "created": 1610580357.807847, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 238.85393142700195, + "msecs": 807.8470230102539, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6894.263982772827, - "thread": 140379336402752, + "relativeCreated": 7036.345958709717, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 239.19296264648438, + "msecs": 808.2020282745361, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6894.60301399231, - "thread": 140379336402752, + "relativeCreated": 7036.700963973999, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003390312194824219 + "time_consumption": 0.00035500526428222656 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:15,240", - "created": 1610361435.240051, + "asctime": "2021-01-14 00:25:57,808", + "created": 1610580357.808931, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33408,8 +33408,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:15,239", - "created": 1610361435.239559, + "asctime": "2021-01-14 00:25:57,808", + "created": 1610580357.808561, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33419,14 +33419,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 239.55893516540527, + "msecs": 808.5610866546631, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6894.9689865112305, - "thread": 140379336402752, + "relativeCreated": 7037.060022354126, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -33435,8 +33435,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:15,239", - "created": 1610361435.239748, + "asctime": "2021-01-14 00:25:57,808", + "created": 1610580357.808746, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33446,35 +33446,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 239.7480010986328, + "msecs": 808.7460994720459, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6895.158052444458, - "thread": 140379336402752, + "relativeCreated": 7037.245035171509, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 240.0510311126709, + "msecs": 808.9311122894287, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6895.461082458496, - "thread": 140379336402752, + "relativeCreated": 7037.430047988892, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00030303001403808594 + "time_consumption": 0.0001850128173828125 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:15,240", - "created": 1610361435.24066, + "asctime": "2021-01-14 00:25:57,809", + "created": 1610580357.809674, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33491,8 +33491,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:15,240", - "created": 1610361435.240333, + "asctime": "2021-01-14 00:25:57,809", + "created": 1610580357.809235, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33502,14 +33502,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 240.33308029174805, + "msecs": 809.2350959777832, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6895.743131637573, - "thread": 140379336402752, + "relativeCreated": 7037.734031677246, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -33518,8 +33518,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:15,240", - "created": 1610361435.240494, + "asctime": "2021-01-14 00:25:57,809", + "created": 1610580357.809496, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33529,32 +33529,32 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 240.4940128326416, + "msecs": 809.4959259033203, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6895.904064178467, - "thread": 140379336402752, + "relativeCreated": 7037.994861602783, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 240.6599521636963, + "msecs": 809.6740245819092, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6896.0700035095215, - "thread": 140379336402752, + "relativeCreated": 7038.172960281372, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001659393310546875 + "time_consumption": 0.0001780986785888672 }, { "args": [], - "asctime": "2021-01-11 11:37:15,341", - "created": 1610361435.341878, + "asctime": "2021-01-14 00:25:57,910", + "created": 1610580357.910976, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -33573,25 +33573,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:15,241", - "created": 1610361435.241069, + "asctime": "2021-01-14 00:25:57,810", + "created": 1610580357.81007, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 241.06907844543457, + "msecs": 810.0700378417969, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6896.47912979126, - "thread": 140379336402752, + "relativeCreated": 7038.56897354126, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -33599,8 +33599,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:15,260", - "created": 1610361435.260559, + "asctime": "2021-01-14 00:25:57,828", + "created": 1610580357.828209, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -33610,14 +33610,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 260.55908203125, + "msecs": 828.2089233398438, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6915.969133377075, - "thread": 140378908907264, + "relativeCreated": 7056.707859039307, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33625,8 +33625,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:15,261", - "created": 1610361435.26109, + "asctime": "2021-01-14 00:25:57,828", + "created": 1610580357.828688, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -33636,14 +33636,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 261.0900402069092, + "msecs": 828.6879062652588, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6916.500091552734, - "thread": 140378908907264, + "relativeCreated": 7057.186841964722, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33651,8 +33651,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,261", - "created": 1610361435.261301, + "asctime": "2021-01-14 00:25:57,828", + "created": 1610580357.82888, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33662,14 +33662,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 261.30104064941406, + "msecs": 828.8800716400146, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6916.711091995239, - "thread": 140378908907264, + "relativeCreated": 7057.3790073394775, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33678,8 +33678,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,261", - "created": 1610361435.261508, + "asctime": "2021-01-14 00:25:57,829", + "created": 1610580357.829041, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33689,14 +33689,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 261.5079879760742, + "msecs": 829.0410041809082, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6916.918039321899, - "thread": 140378908907264, + "relativeCreated": 7057.539939880371, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33704,8 +33704,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,261", - "created": 1610361435.26172, + "asctime": "2021-01-14 00:25:57,829", + "created": 1610580357.829286, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33715,14 +33715,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 261.7199420928955, + "msecs": 829.2860984802246, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6917.129993438721, - "thread": 140378908907264, + "relativeCreated": 7057.7850341796875, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33731,8 +33731,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,261", - "created": 1610361435.261882, + "asctime": "2021-01-14 00:25:57,829", + "created": 1610580357.829447, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33742,14 +33742,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 261.88206672668457, + "msecs": 829.4470310211182, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6917.29211807251, - "thread": 140378908907264, + "relativeCreated": 7057.945966720581, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33757,8 +33757,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,262", - "created": 1610361435.262097, + "asctime": "2021-01-14 00:25:57,829", + "created": 1610580357.829644, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33768,14 +33768,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 262.0968818664551, + "msecs": 829.643964767456, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6917.50693321228, - "thread": 140378908907264, + "relativeCreated": 7058.142900466919, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33784,8 +33784,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,262", - "created": 1610361435.262265, + "asctime": "2021-01-14 00:25:57,829", + "created": 1610580357.829787, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33795,14 +33795,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 262.2649669647217, + "msecs": 829.787015914917, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6917.675018310547, - "thread": 140378908907264, + "relativeCreated": 7058.28595161438, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33810,8 +33810,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,262", - "created": 1610361435.262458, + "asctime": "2021-01-14 00:25:57,829", + "created": 1610580357.829962, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33821,14 +33821,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 262.45808601379395, + "msecs": 829.9620151519775, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6917.868137359619, - "thread": 140378908907264, + "relativeCreated": 7058.46095085144, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33837,8 +33837,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,262", - "created": 1610361435.262611, + "asctime": "2021-01-14 00:25:57,830", + "created": 1610580357.830101, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33848,14 +33848,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 262.61091232299805, + "msecs": 830.1010131835938, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6918.020963668823, - "thread": 140378908907264, + "relativeCreated": 7058.599948883057, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33863,8 +33863,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,262", - "created": 1610361435.262823, + "asctime": "2021-01-14 00:25:57,830", + "created": 1610580357.830293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33874,14 +33874,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 262.82310485839844, + "msecs": 830.2929401397705, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6918.233156204224, - "thread": 140378908907264, + "relativeCreated": 7058.791875839233, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33890,8 +33890,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,262", - "created": 1610361435.262975, + "asctime": "2021-01-14 00:25:57,830", + "created": 1610580357.830441, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33901,14 +33901,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 262.97497749328613, + "msecs": 830.4409980773926, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6918.385028839111, - "thread": 140378908907264, + "relativeCreated": 7058.9399337768555, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33916,8 +33916,8 @@ "comm-client:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:15,263", - "created": 1610361435.263211, + "asctime": "2021-01-14 00:25:57,830", + "created": 1610580357.830656, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -33927,14 +33927,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 263.2110118865967, + "msecs": 830.6560516357422, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6918.621063232422, - "thread": 140378908907264, + "relativeCreated": 7059.154987335205, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33942,8 +33942,8 @@ "comm-server:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:15,263", - "created": 1610361435.263406, + "asctime": "2021-01-14 00:25:57,830", + "created": 1610580357.830826, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -33953,14 +33953,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 263.40603828430176, + "msecs": 830.8260440826416, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6918.816089630127, - "thread": 140378908907264, + "relativeCreated": 7059.3249797821045, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33968,8 +33968,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,263", - "created": 1610361435.263583, + "asctime": "2021-01-14 00:25:57,830", + "created": 1610580357.830985, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -33979,14 +33979,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 263.5829448699951, + "msecs": 830.9850692749023, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6918.99299621582, - "thread": 140378908907264, + "relativeCreated": 7059.484004974365, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -33995,8 +33995,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,263", - "created": 1610361435.263738, + "asctime": "2021-01-14 00:25:57,831", + "created": 1610580357.831137, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34006,14 +34006,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 263.73791694641113, + "msecs": 831.13694190979, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6919.147968292236, - "thread": 140378908907264, + "relativeCreated": 7059.635877609253, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34021,8 +34021,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" ], - "asctime": "2021-01-11 11:37:15,264", - "created": 1610361435.264072, + "asctime": "2021-01-14 00:25:57,831", + "created": 1610580357.831453, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34032,14 +34032,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", "module": "stp", - "msecs": 264.0719413757324, + "msecs": 831.4530849456787, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6919.481992721558, - "thread": 140378908907264, + "relativeCreated": 7059.952020645142, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34050,25 +34050,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:15,264", - "created": 1610361435.264486, + "asctime": "2021-01-14 00:25:57,831", + "created": 1610580357.831845, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 264.48607444763184, + "msecs": 831.8450450897217, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6919.896125793457, - "thread": 140378908907264, + "relativeCreated": 7060.343980789185, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34076,25 +34076,25 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:15,264", - "created": 1610361435.264699, + "asctime": "2021-01-14 00:25:57,832", + "created": 1610580357.832052, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 264.69898223876953, + "msecs": 832.0519924163818, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6920.109033584595, - "thread": 140378908907264, + "relativeCreated": 7060.550928115845, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34103,36 +34103,36 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'88adc5a53b236ebd62d69542273a4e2b3270425bd7fb7ad83417ce5efad969f0'" + "'0e1603ea8f893c447bda8cb4ac9dccc8fdff71bf4124ab36d57e42f1ece1fea0'" ], - "asctime": "2021-01-11 11:37:15,264", - "created": 1610361435.264924, + "asctime": "2021-01-14 00:25:57,832", + "created": 1610580357.832315, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'88adc5a53b236ebd62d69542273a4e2b3270425bd7fb7ad83417ce5efad969f0'\"", + "lineno": 457, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'0e1603ea8f893c447bda8cb4ac9dccc8fdff71bf4124ab36d57e42f1ece1fea0'\"", "module": "__init__", - "msecs": 264.9240493774414, + "msecs": 832.3149681091309, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6920.334100723267, - "thread": 140378908907264, + "relativeCreated": 7060.813903808594, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 61 64 63 35 61 35 33 62 32 33 36 65 62 64 36 32 64" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 65 31 36 30 33 65 61 38 66 38 39 33 63 34 34 37 62 64" ], - "asctime": "2021-01-11 11:37:15,266", - "created": 1610361435.266157, + "asctime": "2021-01-14 00:25:57,834", + "created": 1610580357.834735, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34140,25 +34140,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 61 64 63 35 61 35 33 62 32 33 36 65 62 64 36 32 64", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 65 31 36 30 33 65 61 38 66 38 39 33 63 34 34 37 62 64", "module": "__init__", - "msecs": 266.1569118499756, + "msecs": 834.7349166870117, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6921.566963195801, - "thread": 140378900514560, + "relativeCreated": 7063.233852386475, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 61 64 63 35 61 35 33 62 32 33 36 65 62 64 36 32 64" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 65 31 36 30 33 65 61 38 66 38 39 33 63 34 34 37 62 64" ], - "asctime": "2021-01-11 11:37:15,266", - "created": 1610361435.266483, + "asctime": "2021-01-14 00:25:57,835", + "created": 1610580357.835327, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34166,16 +34166,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 61 64 63 35 61 35 33 62 32 33 36 65 62 64 36 32 64", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 65 31 36 30 33 65 61 38 66 38 39 33 63 34 34 37 62 64", "module": "__init__", - "msecs": 266.4830684661865, + "msecs": 835.3269100189209, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6921.893119812012, - "thread": 140378900514560, + "relativeCreated": 7063.825845718384, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34183,8 +34183,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,266", - "created": 1610361435.26662, + "asctime": "2021-01-14 00:25:57,835", + "created": 1610580357.835559, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34194,14 +34194,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 266.6199207305908, + "msecs": 835.5588912963867, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6922.029972076416, - "thread": 140378900514560, + "relativeCreated": 7064.05782699585, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34210,8 +34210,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,266", - "created": 1610361435.266788, + "asctime": "2021-01-14 00:25:57,835", + "created": 1610580357.835757, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34221,14 +34221,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 266.7880058288574, + "msecs": 835.7570171356201, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6922.198057174683, - "thread": 140378900514560, + "relativeCreated": 7064.255952835083, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34236,8 +34236,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,266", - "created": 1610361435.266939, + "asctime": "2021-01-14 00:25:57,836", + "created": 1610580357.836018, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34247,14 +34247,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 266.9389247894287, + "msecs": 836.0180854797363, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6922.348976135254, - "thread": 140378900514560, + "relativeCreated": 7064.517021179199, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34263,8 +34263,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,267", - "created": 1610361435.267062, + "asctime": "2021-01-14 00:25:57,836", + "created": 1610580357.836518, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34274,14 +34274,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 267.0619487762451, + "msecs": 836.5180492401123, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6922.47200012207, - "thread": 140378900514560, + "relativeCreated": 7065.016984939575, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34289,8 +34289,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,267", - "created": 1610361435.267226, + "asctime": "2021-01-14 00:25:57,836", + "created": 1610580357.83679, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34300,14 +34300,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 267.225980758667, + "msecs": 836.7900848388672, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6922.636032104492, - "thread": 140378900514560, + "relativeCreated": 7065.28902053833, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34316,8 +34316,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,267", - "created": 1610361435.267338, + "asctime": "2021-01-14 00:25:57,836", + "created": 1610580357.836959, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34327,14 +34327,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 267.3380374908447, + "msecs": 836.9588851928711, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6922.74808883667, - "thread": 140378900514560, + "relativeCreated": 7065.457820892334, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34342,8 +34342,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,267", - "created": 1610361435.267473, + "asctime": "2021-01-14 00:25:57,837", + "created": 1610580357.837196, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34353,14 +34353,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 267.4729824066162, + "msecs": 837.1961116790771, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6922.883033752441, - "thread": 140378900514560, + "relativeCreated": 7065.69504737854, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34369,8 +34369,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,267", - "created": 1610361435.267687, + "asctime": "2021-01-14 00:25:57,837", + "created": 1610580357.837407, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34380,23 +34380,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 267.6870822906494, + "msecs": 837.407112121582, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6923.097133636475, - "thread": 140378900514560, + "relativeCreated": 7065.906047821045, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "comm-server:", - "(64): 36 39 35 34 32 32 37 33 61 34 65 32 62 33 32 37 30 34 32 35 62 64 37 66 62 37 61 64 38 33 34 31 37 63 65 35 65 66 61 64 39 36 39 66 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 69 c4" + "(64): 61 38 63 62 34 61 63 39 64 63 63 63 38 66 64 66 66 37 31 62 66 34 31 32 34 61 62 33 36 64 35 37 65 34 32 66 31 65 63 65 31 66 65 61 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c3 5a" ], - "asctime": "2021-01-11 11:37:15,267", - "created": 1610361435.267989, + "asctime": "2021-01-14 00:25:57,838", + "created": 1610580357.838005, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34404,25 +34404,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 36 39 35 34 32 32 37 33 61 34 65 32 62 33 32 37 30 34 32 35 62 64 37 66 62 37 61 64 38 33 34 31 37 63 65 35 65 66 61 64 39 36 39 66 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 69 c4", + "message": "comm-server: TX -> (64): 61 38 63 62 34 61 63 39 64 63 63 63 38 66 64 66 66 37 31 62 66 34 31 32 34 61 62 33 36 64 35 37 65 34 32 66 31 65 63 65 31 66 65 61 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c3 5a", "module": "__init__", - "msecs": 267.988920211792, + "msecs": 838.0050659179688, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6923.398971557617, - "thread": 140378900514560, + "relativeCreated": 7066.504001617432, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(64): 36 39 35 34 32 32 37 33 61 34 65 32 62 33 32 37 30 34 32 35 62 64 37 66 62 37 61 64 38 33 34 31 37 63 65 35 65 66 61 64 39 36 39 66 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 69 c4" + "(64): 61 38 63 62 34 61 63 39 64 63 63 63 38 66 64 66 66 37 31 62 66 34 31 32 34 61 62 33 36 64 35 37 65 34 32 66 31 65 63 65 31 66 65 61 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c3 5a" ], - "asctime": "2021-01-11 11:37:15,268", - "created": 1610361435.2682, + "asctime": "2021-01-14 00:25:57,838", + "created": 1610580357.83837, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34430,16 +34430,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 36 39 35 34 32 32 37 33 61 34 65 32 62 33 32 37 30 34 32 35 62 64 37 66 62 37 61 64 38 33 34 31 37 63 65 35 65 66 61 64 39 36 39 66 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 69 c4", + "message": "comm-client: RX <- (64): 61 38 63 62 34 61 63 39 64 63 63 63 38 66 64 66 66 37 31 62 66 34 31 32 34 61 62 33 36 64 35 37 65 34 32 66 31 65 63 65 31 66 65 61 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c3 5a", "module": "__init__", - "msecs": 268.1999206542969, + "msecs": 838.3700847625732, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6923.609972000122, - "thread": 140378900514560, + "relativeCreated": 7066.869020462036, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34447,8 +34447,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,268", - "created": 1610361435.26841, + "asctime": "2021-01-14 00:25:57,838", + "created": 1610580357.838762, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34458,14 +34458,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 268.40996742248535, + "msecs": 838.7620449066162, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6923.820018768311, - "thread": 140378900514560, + "relativeCreated": 7067.260980606079, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34474,8 +34474,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,268", - "created": 1610361435.268504, + "asctime": "2021-01-14 00:25:57,838", + "created": 1610580357.838816, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34485,23 +34485,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 268.50390434265137, + "msecs": 838.8159275054932, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6923.913955688477, - "thread": 140378900514560, + "relativeCreated": 7067.314863204956, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "comm-server:", - "(4): aa 71 3a 3e" + "(4): 1d 65 3a 3e" ], - "asctime": "2021-01-11 11:37:15,268", - "created": 1610361435.268639, + "asctime": "2021-01-14 00:25:57,838", + "created": 1610580357.838896, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34509,25 +34509,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): aa 71 3a 3e", + "message": "comm-server: TX -> (4): 1d 65 3a 3e", "module": "__init__", - "msecs": 268.63908767700195, + "msecs": 838.8960361480713, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6924.049139022827, - "thread": 140378900514560, + "relativeCreated": 7067.394971847534, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(4): aa 71 3a 3e" + "(4): 1d 65 3a 3e" ], - "asctime": "2021-01-11 11:37:15,268", - "created": 1610361435.268771, + "asctime": "2021-01-14 00:25:57,838", + "created": 1610580357.838954, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34535,16 +34535,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): aa 71 3a 3e", + "message": "comm-client: RX <- (4): 1d 65 3a 3e", "module": "__init__", - "msecs": 268.7709331512451, + "msecs": 838.953971862793, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6924.18098449707, - "thread": 140378900514560, + "relativeCreated": 7067.452907562256, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34552,8 +34552,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,268", - "created": 1610361435.268897, + "asctime": "2021-01-14 00:25:57,839", + "created": 1610580357.839007, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34563,14 +34563,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 268.89705657958984, + "msecs": 839.0069007873535, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6924.307107925415, - "thread": 140378900514560, + "relativeCreated": 7067.505836486816, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34579,8 +34579,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,269", - "created": 1610361435.269004, + "asctime": "2021-01-14 00:25:57,839", + "created": 1610580357.839056, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34590,23 +34590,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 269.00410652160645, + "msecs": 839.0560150146484, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6924.414157867432, - "thread": 140378900514560, + "relativeCreated": 7067.554950714111, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "STP:", - "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 38 38 61 64 63 35 61 35 33 62 32 33 36 65 62 64 36 32 64 36 39 35 34 32 32 37 33 61 34 65 32 62 33 32 37 30 34 32 35 62 64 37 66 62 37 61 64 38 33 34 31 37 63 65 35 65 66 61 64 39 36 39 66 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 69 c4 aa 71" + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 30 65 31 36 30 33 65 61 38 66 38 39 33 63 34 34 37 62 64 61 38 63 62 34 61 63 39 64 63 63 63 38 66 64 66 66 37 31 62 66 34 31 32 34 61 62 33 36 64 35 37 65 34 32 66 31 65 63 65 31 66 65 61 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c3 5a 1d 65" ], - "asctime": "2021-01-11 11:37:15,269", - "created": 1610361435.269335, + "asctime": "2021-01-14 00:25:57,839", + "created": 1610580357.839231, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34614,16 +34614,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 38 38 61 64 63 35 61 35 33 62 32 33 36 65 62 64 36 32 64 36 39 35 34 32 32 37 33 61 34 65 32 62 33 32 37 30 34 32 35 62 64 37 66 62 37 61 64 38 33 34 31 37 63 65 35 65 66 61 64 39 36 39 66 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 69 c4 aa 71", + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 30 65 31 36 30 33 65 61 38 66 38 39 33 63 34 34 37 62 64 61 38 63 62 34 61 63 39 64 63 63 63 38 66 64 66 66 37 31 62 66 34 31 32 34 61 62 33 36 64 35 37 65 34 32 66 31 65 63 65 31 66 65 61 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c3 5a 1d 65", "module": "stp", - "msecs": 269.3350315093994, + "msecs": 839.231014251709, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6924.745082855225, - "thread": 140378900514560, + "relativeCreated": 7067.729949951172, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34632,27 +34632,27 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "u'88adc5a53b236ebd62d69542273a4e2b3270425bd7fb7ad83417ce5efad969f0'" + "u'0e1603ea8f893c447bda8cb4ac9dccc8fdff71bf4124ab36d57e42f1ece1fea0'" ], - "asctime": "2021-01-11 11:37:15,269", - "created": 1610361435.269598, + "asctime": "2021-01-14 00:25:57,839", + "created": 1610580357.8394, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'88adc5a53b236ebd62d69542273a4e2b3270425bd7fb7ad83417ce5efad969f0'\"", + "lineno": 457, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'0e1603ea8f893c447bda8cb4ac9dccc8fdff71bf4124ab36d57e42f1ece1fea0'\"", "module": "__init__", - "msecs": 269.59800720214844, + "msecs": 839.400053024292, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6925.008058547974, - "thread": 140378900514560, + "relativeCreated": 7067.898988723755, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34660,25 +34660,25 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:15,269", - "created": 1610361435.269742, + "asctime": "2021-01-14 00:25:57,839", + "created": 1610580357.839485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 269.7420120239258, + "msecs": 839.4849300384521, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6925.152063369751, - "thread": 140378900514560, + "relativeCreated": 7067.983865737915, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -34687,36 +34687,36 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'dffbb3933e2bc0e9335becef2901cc353fcc847890da1ac97e1388561bb1aa50cc8a896e37b2c69461d7ad619a0c4939afe2f34d541ac381f5acea024091384f'" + "'573df7dec49c17a589a829082385e72a44be9d1d151859d51d4ca44eb095c6469a8ec5cce6194833d4ed873351f960c08ea4dbe9366d0ed03fd9a9f2a7304544'" ], - "asctime": "2021-01-11 11:37:15,269", - "created": 1610361435.269941, + "asctime": "2021-01-14 00:25:57,839", + "created": 1610580357.839604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'dffbb3933e2bc0e9335becef2901cc353fcc847890da1ac97e1388561bb1aa50cc8a896e37b2c69461d7ad619a0c4939afe2f34d541ac381f5acea024091384f'\"", + "lineno": 457, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'573df7dec49c17a589a829082385e72a44be9d1d151859d51d4ca44eb095c6469a8ec5cce6194833d4ed873351f960c08ea4dbe9366d0ed03fd9a9f2a7304544'\"", "module": "__init__", - "msecs": 269.9410915374756, + "msecs": 839.6039009094238, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6925.351142883301, - "thread": 140378900514560, + "relativeCreated": 7068.102836608887, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 66 66 62 62 33 39 33 33 65 32 62 63 30 65 39 33 33 35" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 37 33 64 66 37 64 65 63 34 39 63 31 37 61 35 38 39 61" ], - "asctime": "2021-01-11 11:37:15,270", - "created": 1610361435.270667, + "asctime": "2021-01-14 00:25:57,840", + "created": 1610580357.84051, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34724,25 +34724,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 66 66 62 62 33 39 33 33 65 32 62 63 30 65 39 33 33 35", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 37 33 64 66 37 64 65 63 34 39 63 31 37 61 35 38 39 61", "module": "__init__", - "msecs": 270.66707611083984, + "msecs": 840.5098915100098, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.077127456665, - "thread": 140378908907264, + "relativeCreated": 7069.008827209473, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 66 66 62 62 33 39 33 33 65 32 62 63 30 65 39 33 33 35" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 37 33 64 66 37 64 65 63 34 39 63 31 37 61 35 38 39 61" ], - "asctime": "2021-01-11 11:37:15,270", - "created": 1610361435.270914, + "asctime": "2021-01-14 00:25:57,840", + "created": 1610580357.840657, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34750,16 +34750,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 66 66 62 62 33 39 33 33 65 32 62 63 30 65 39 33 33 35", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 37 33 64 66 37 64 65 63 34 39 63 31 37 61 35 38 39 61", "module": "__init__", - "msecs": 270.91407775878906, + "msecs": 840.6569957733154, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.324129104614, - "thread": 140378908907264, + "relativeCreated": 7069.155931472778, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34767,8 +34767,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271023, + "asctime": "2021-01-14 00:25:57,840", + "created": 1610580357.840725, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34778,14 +34778,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 271.0230350494385, + "msecs": 840.7249450683594, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.433086395264, - "thread": 140378908907264, + "relativeCreated": 7069.223880767822, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34794,8 +34794,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271118, + "asctime": "2021-01-14 00:25:57,840", + "created": 1610580357.84078, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34805,14 +34805,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 271.1179256439209, + "msecs": 840.7800197601318, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.527976989746, - "thread": 140378908907264, + "relativeCreated": 7069.278955459595, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34820,8 +34820,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271236, + "asctime": "2021-01-14 00:25:57,840", + "created": 1610580357.840846, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34831,14 +34831,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 271.2359428405762, + "msecs": 840.846061706543, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.645994186401, - "thread": 140378908907264, + "relativeCreated": 7069.344997406006, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34847,8 +34847,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271323, + "asctime": "2021-01-14 00:25:57,840", + "created": 1610580357.840896, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34858,14 +34858,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 271.32296562194824, + "msecs": 840.8958911895752, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.733016967773, - "thread": 140378908907264, + "relativeCreated": 7069.394826889038, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34873,8 +34873,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271439, + "asctime": "2021-01-14 00:25:57,840", + "created": 1610580357.840967, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34884,14 +34884,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 271.4390754699707, + "msecs": 840.9669399261475, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.849126815796, - "thread": 140378908907264, + "relativeCreated": 7069.46587562561, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34900,8 +34900,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271522, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841051, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34911,14 +34911,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 271.52204513549805, + "msecs": 841.0511016845703, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6926.932096481323, - "thread": 140378908907264, + "relativeCreated": 7069.550037384033, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34926,8 +34926,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271648, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841124, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34937,14 +34937,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 271.6479301452637, + "msecs": 841.1240577697754, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6927.057981491089, - "thread": 140378908907264, + "relativeCreated": 7069.622993469238, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -34953,8 +34953,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,271", - "created": 1610361435.271751, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841175, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -34964,23 +34964,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 271.75092697143555, + "msecs": 841.1750793457031, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6927.160978317261, - "thread": 140378908907264, + "relativeCreated": 7069.674015045166, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-client:", - "(64): 62 65 63 65 66 32 39 30 31 63 63 33 35 33 66 63 63 38 34 37 38 39 30 64 61 31 61 63 39 37 65 31 33 38 38 35 36 31 62 62 31 61 61 35 30 63 63 38 61 38 39 36 65 33 37 62 32 63 36 39 34 36 31 64" + "(64): 38 32 39 30 38 32 33 38 35 65 37 32 61 34 34 62 65 39 64 31 64 31 35 31 38 35 39 64 35 31 64 34 63 61 34 34 65 62 30 39 35 63 36 34 36 39 61 38 65 63 35 63 63 65 36 31 39 34 38 33 33 64 34 65" ], - "asctime": "2021-01-11 11:37:15,272", - "created": 1610361435.27207, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841328, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -34988,25 +34988,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 62 65 63 65 66 32 39 30 31 63 63 33 35 33 66 63 63 38 34 37 38 39 30 64 61 31 61 63 39 37 65 31 33 38 38 35 36 31 62 62 31 61 61 35 30 63 63 38 61 38 39 36 65 33 37 62 32 63 36 39 34 36 31 64", + "message": "comm-client: TX -> (64): 38 32 39 30 38 32 33 38 35 65 37 32 61 34 34 62 65 39 64 31 64 31 35 31 38 35 39 64 35 31 64 34 63 61 34 34 65 62 30 39 35 63 36 34 36 39 61 38 65 63 35 63 63 65 36 31 39 34 38 33 33 64 34 65", "module": "__init__", - "msecs": 272.06993103027344, + "msecs": 841.3279056549072, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6927.479982376099, - "thread": 140378908907264, + "relativeCreated": 7069.82684135437, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 62 65 63 65 66 32 39 30 31 63 63 33 35 33 66 63 63 38 34 37 38 39 30 64 61 31 61 63 39 37 65 31 33 38 38 35 36 31 62 62 31 61 61 35 30 63 63 38 61 38 39 36 65 33 37 62 32 63 36 39 34 36 31 64" + "(64): 38 32 39 30 38 32 33 38 35 65 37 32 61 34 34 62 65 39 64 31 64 31 35 31 38 35 39 64 35 31 64 34 63 61 34 34 65 62 30 39 35 63 36 34 36 39 61 38 65 63 35 63 63 65 36 31 39 34 38 33 33 64 34 65" ], - "asctime": "2021-01-11 11:37:15,272", - "created": 1610361435.272292, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841431, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35014,25 +35014,25 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 62 65 63 65 66 32 39 30 31 63 63 33 35 33 66 63 63 38 34 37 38 39 30 64 61 31 61 63 39 37 65 31 33 38 38 35 36 31 62 62 31 61 61 35 30 63 63 38 61 38 39 36 65 33 37 62 32 63 36 39 34 36 31 64", + "message": "comm-server: RX <- (64): 38 32 39 30 38 32 33 38 35 65 37 32 61 34 34 62 65 39 64 31 64 31 35 31 38 35 39 64 35 31 64 34 63 61 34 34 65 62 30 39 35 63 36 34 36 39 61 38 65 63 35 63 63 65 36 31 39 34 38 33 33 64 34 65", "module": "__init__", - "msecs": 272.291898727417, + "msecs": 841.4309024810791, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6927.701950073242, - "thread": 140378908907264, + "relativeCreated": 7069.929838180542, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-client:", - "(64): 37 61 64 36 31 39 61 30 63 34 39 33 39 61 66 65 32 66 33 34 64 35 34 31 61 63 33 38 31 66 35 61 63 65 61 30 32 34 30 39 31 33 38 34 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 5c 84" + "(64): 64 38 37 33 33 35 31 66 39 36 30 63 30 38 65 61 34 64 62 65 39 33 36 36 64 30 65 64 30 33 66 64 39 61 39 66 32 61 37 33 30 34 35 34 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d e2 d3" ], - "asctime": "2021-01-11 11:37:15,272", - "created": 1610361435.272894, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841617, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35040,25 +35040,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 37 61 64 36 31 39 61 30 63 34 39 33 39 61 66 65 32 66 33 34 64 35 34 31 61 63 33 38 31 66 35 61 63 65 61 30 32 34 30 39 31 33 38 34 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 5c 84", + "message": "comm-client: TX -> (64): 64 38 37 33 33 35 31 66 39 36 30 63 30 38 65 61 34 64 62 65 39 33 36 36 64 30 65 64 30 33 66 64 39 61 39 66 32 61 37 33 30 34 35 34 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d e2 d3", "module": "__init__", - "msecs": 272.89390563964844, + "msecs": 841.6171073913574, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6928.303956985474, - "thread": 140378908907264, + "relativeCreated": 7070.11604309082, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 37 61 64 36 31 39 61 30 63 34 39 33 39 61 66 65 32 66 33 34 64 35 34 31 61 63 33 38 31 66 35 61 63 65 61 30 32 34 30 39 31 33 38 34 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 5c 84" + "(64): 64 38 37 33 33 35 31 66 39 36 30 63 30 38 65 61 34 64 62 65 39 33 36 36 64 30 65 64 30 33 66 64 39 61 39 66 32 61 37 33 30 34 35 34 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d e2 d3" ], - "asctime": "2021-01-11 11:37:15,273", - "created": 1610361435.273143, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.84172, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35066,16 +35066,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 37 61 64 36 31 39 61 30 63 34 39 33 39 61 66 65 32 66 33 34 64 35 34 31 61 63 33 38 31 66 35 61 63 65 61 30 32 34 30 39 31 33 38 34 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 5c 84", + "message": "comm-server: RX <- (64): 64 38 37 33 33 35 31 66 39 36 30 63 30 38 65 61 34 64 62 65 39 33 36 36 64 30 65 64 30 33 66 64 39 61 39 66 32 61 37 33 30 34 35 34 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d e2 d3", "module": "__init__", - "msecs": 273.14305305480957, + "msecs": 841.7201042175293, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6928.553104400635, - "thread": 140378908907264, + "relativeCreated": 7070.219039916992, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35083,8 +35083,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,273", - "created": 1610361435.273362, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841831, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35094,14 +35094,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 273.3619213104248, + "msecs": 841.8309688568115, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6928.77197265625, - "thread": 140378908907264, + "relativeCreated": 7070.329904556274, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35110,8 +35110,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,273", - "created": 1610361435.273456, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.84188, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35121,23 +35121,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 273.4560966491699, + "msecs": 841.8800830841064, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6928.866147994995, - "thread": 140378908907264, + "relativeCreated": 7070.379018783569, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-client:", - "(4): 8d 2d 3a 3e" + "(4): 6a 9c 3a 3e" ], - "asctime": "2021-01-11 11:37:15,273", - "created": 1610361435.273585, + "asctime": "2021-01-14 00:25:57,841", + "created": 1610580357.841953, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35145,25 +35145,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 8d 2d 3a 3e", + "message": "comm-client: TX -> (4): 6a 9c 3a 3e", "module": "__init__", - "msecs": 273.58508110046387, + "msecs": 841.9530391693115, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6928.995132446289, - "thread": 140378908907264, + "relativeCreated": 7070.451974868774, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(4): 8d 2d 3a 3e" + "(4): 6a 9c 3a 3e" ], - "asctime": "2021-01-11 11:37:15,273", - "created": 1610361435.273682, + "asctime": "2021-01-14 00:25:57,842", + "created": 1610580357.842008, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35171,16 +35171,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 8d 2d 3a 3e", + "message": "comm-server: RX <- (4): 6a 9c 3a 3e", "module": "__init__", - "msecs": 273.6821174621582, + "msecs": 842.008113861084, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6929.092168807983, - "thread": 140378908907264, + "relativeCreated": 7070.507049560547, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35188,8 +35188,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,273", - "created": 1610361435.273776, + "asctime": "2021-01-14 00:25:57,842", + "created": 1610580357.842058, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35199,14 +35199,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 273.7760543823242, + "msecs": 842.0579433441162, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6929.186105728149, - "thread": 140378908907264, + "relativeCreated": 7070.556879043579, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35215,8 +35215,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,273", - "created": 1610361435.27386, + "asctime": "2021-01-14 00:25:57,842", + "created": 1610580357.842105, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35226,23 +35226,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 273.85997772216797, + "msecs": 842.1049118041992, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6929.270029067993, - "thread": 140378908907264, + "relativeCreated": 7070.603847503662, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "STP:", - "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 66 66 62 62 33 39 33 33 65 32 62 63 30 65 39 33 33 35 62 65 63 65 66 32 39 30 31 63 63 33 35 33 66 63 63 38 34 37 38 39 30 64 61 31 61 63 39 37 65 31 33 38 38 35 36 31 62 62 31 61 61 35 30 63 63 38 61 38 39 36 65 33 37 62 32 63 36 39 34 36 31 64 37 61 64 36 31 39 61 30 63 34 39 33 39 61 66 65 32 66 33 34 64 35 34 31 61 63 33 38 31 66 35 61 63 65 61 30 32 34 30 39 31 33 38 34 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 5c 84 8d 2d" + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 37 33 64 66 37 64 65 63 34 39 63 31 37 61 35 38 39 61 38 32 39 30 38 32 33 38 35 65 37 32 61 34 34 62 65 39 64 31 64 31 35 31 38 35 39 64 35 31 64 34 63 61 34 34 65 62 30 39 35 63 36 34 36 39 61 38 65 63 35 63 63 65 36 31 39 34 38 33 33 64 34 65 64 38 37 33 33 35 31 66 39 36 30 63 30 38 65 61 34 64 62 65 39 33 36 36 64 30 65 64 30 33 66 64 39 61 39 66 32 61 37 33 30 34 35 34 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d e2 d3 6a 9c" ], - "asctime": "2021-01-11 11:37:15,274", - "created": 1610361435.274278, + "asctime": "2021-01-14 00:25:57,842", + "created": 1610580357.842311, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35250,16 +35250,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 66 66 62 62 33 39 33 33 65 32 62 63 30 65 39 33 33 35 62 65 63 65 66 32 39 30 31 63 63 33 35 33 66 63 63 38 34 37 38 39 30 64 61 31 61 63 39 37 65 31 33 38 38 35 36 31 62 62 31 61 61 35 30 63 63 38 61 38 39 36 65 33 37 62 32 63 36 39 34 36 31 64 37 61 64 36 31 39 61 30 63 34 39 33 39 61 66 65 32 66 33 34 64 35 34 31 61 63 33 38 31 66 35 61 63 65 61 30 32 34 30 39 31 33 38 34 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 5c 84 8d 2d", + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 37 33 64 66 37 64 65 63 34 39 63 31 37 61 35 38 39 61 38 32 39 30 38 32 33 38 35 65 37 32 61 34 34 62 65 39 64 31 64 31 35 31 38 35 39 64 35 31 64 34 63 61 34 34 65 62 30 39 35 63 36 34 36 39 61 38 65 63 35 63 63 65 36 31 39 34 38 33 33 64 34 65 64 38 37 33 33 35 31 66 39 36 30 63 30 38 65 61 34 64 62 65 39 33 36 36 64 30 65 64 30 33 66 64 39 61 39 66 32 61 37 33 30 34 35 34 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d e2 d3 6a 9c", "module": "stp", - "msecs": 274.277925491333, + "msecs": 842.310905456543, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6929.687976837158, - "thread": 140378908907264, + "relativeCreated": 7070.809841156006, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35268,27 +35268,27 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "u'dffbb3933e2bc0e9335becef2901cc353fcc847890da1ac97e1388561bb1aa50cc8a896e37b2c69461d7ad619a0c4939afe2f34d541ac381f5acea024091384f'" + "u'573df7dec49c17a589a829082385e72a44be9d1d151859d51d4ca44eb095c6469a8ec5cce6194833d4ed873351f960c08ea4dbe9366d0ed03fd9a9f2a7304544'" ], - "asctime": "2021-01-11 11:37:15,274", - "created": 1610361435.274551, + "asctime": "2021-01-14 00:25:57,842", + "created": 1610580357.842413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'dffbb3933e2bc0e9335becef2901cc353fcc847890da1ac97e1388561bb1aa50cc8a896e37b2c69461d7ad619a0c4939afe2f34d541ac381f5acea024091384f'\"", + "lineno": 457, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'573df7dec49c17a589a829082385e72a44be9d1d151859d51d4ca44eb095c6469a8ec5cce6194833d4ed873351f960c08ea4dbe9366d0ed03fd9a9f2a7304544'\"", "module": "__init__", - "msecs": 274.5509147644043, + "msecs": 842.4129486083984, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6929.9609661102295, - "thread": 140378908907264, + "relativeCreated": 7070.911884307861, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35296,25 +35296,25 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:15,274", - "created": 1610361435.274711, + "asctime": "2021-01-14 00:25:57,842", + "created": 1610580357.842473, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 274.71089363098145, + "msecs": 842.473030090332, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6930.120944976807, - "thread": 140378908907264, + "relativeCreated": 7070.971965789795, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35325,25 +35325,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:15,274", - "created": 1610361435.274925, + "asctime": "2021-01-14 00:25:57,842", + "created": 1610580357.842554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 274.92499351501465, + "msecs": 842.5540924072266, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6930.33504486084, - "thread": 140378908907264, + "relativeCreated": 7071.053028106689, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35351,8 +35351,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:15,275", - "created": 1610361435.275454, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843182, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35362,14 +35362,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 275.454044342041, + "msecs": 843.1820869445801, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6930.864095687866, - "thread": 140378900514560, + "relativeCreated": 7071.681022644043, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35377,8 +35377,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:15,275", - "created": 1610361435.275676, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.84329, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35388,14 +35388,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 275.67601203918457, + "msecs": 843.2900905609131, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.08606338501, - "thread": 140378900514560, + "relativeCreated": 7071.789026260376, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35403,8 +35403,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,275", - "created": 1610361435.275775, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843358, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35414,14 +35414,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 275.7749557495117, + "msecs": 843.358039855957, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.185007095337, - "thread": 140378900514560, + "relativeCreated": 7071.85697555542, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35430,8 +35430,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,275", - "created": 1610361435.275862, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843414, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35441,14 +35441,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 275.8619785308838, + "msecs": 843.4140682220459, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.272029876709, - "thread": 140378900514560, + "relativeCreated": 7071.913003921509, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35456,8 +35456,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,275", - "created": 1610361435.27598, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843488, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35467,14 +35467,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 275.97999572753906, + "msecs": 843.4879779815674, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.390047073364, - "thread": 140378900514560, + "relativeCreated": 7071.98691368103, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35483,8 +35483,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276066, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843541, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35494,14 +35494,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 276.0660648345947, + "msecs": 843.5409069061279, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.47611618042, - "thread": 140378900514560, + "relativeCreated": 7072.039842605591, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35509,8 +35509,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276186, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.84361, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35520,14 +35520,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 276.1859893798828, + "msecs": 843.6100482940674, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.596040725708, - "thread": 140378900514560, + "relativeCreated": 7072.10898399353, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35536,8 +35536,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276265, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843659, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35547,14 +35547,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 276.26490592956543, + "msecs": 843.6589241027832, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.674957275391, - "thread": 140378900514560, + "relativeCreated": 7072.157859802246, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35562,8 +35562,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276381, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843722, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35573,14 +35573,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 276.3810157775879, + "msecs": 843.7221050262451, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.791067123413, - "thread": 140378900514560, + "relativeCreated": 7072.221040725708, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35589,8 +35589,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276465, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.84377, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35600,14 +35600,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 276.46493911743164, + "msecs": 843.7700271606445, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.874990463257, - "thread": 140378900514560, + "relativeCreated": 7072.268962860107, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35615,8 +35615,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276584, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843866, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35626,14 +35626,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 276.5839099884033, + "msecs": 843.8661098480225, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6931.9939613342285, - "thread": 140378900514560, + "relativeCreated": 7072.365045547485, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35642,8 +35642,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276666, + "asctime": "2021-01-14 00:25:57,843", + "created": 1610580357.843938, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35653,14 +35653,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 276.66592597961426, + "msecs": 843.9381122589111, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.075977325439, - "thread": 140378900514560, + "relativeCreated": 7072.437047958374, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35668,8 +35668,8 @@ "comm-server:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276802, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.844065, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35679,14 +35679,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 276.80206298828125, + "msecs": 844.0649509429932, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.212114334106, - "thread": 140378900514560, + "relativeCreated": 7072.563886642456, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35694,8 +35694,8 @@ "comm-client:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:15,276", - "created": 1610361435.276904, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.844132, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35705,14 +35705,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 276.9041061401367, + "msecs": 844.1319465637207, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.314157485962, - "thread": 140378900514560, + "relativeCreated": 7072.630882263184, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35720,8 +35720,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,277", - "created": 1610361435.277074, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.844187, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35731,14 +35731,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 277.07409858703613, + "msecs": 844.1870212554932, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.484149932861, - "thread": 140378900514560, + "relativeCreated": 7072.685956954956, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35747,8 +35747,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,277", - "created": 1610361435.277156, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.844235, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35758,14 +35758,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 277.15611457824707, + "msecs": 844.2349433898926, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.566165924072, - "thread": 140378900514560, + "relativeCreated": 7072.7338790893555, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35773,8 +35773,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" ], - "asctime": "2021-01-11 11:37:15,277", - "created": 1610361435.277332, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.84434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35784,14 +35784,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", "module": "stp", - "msecs": 277.332067489624, + "msecs": 844.3400859832764, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.742118835449, - "thread": 140378900514560, + "relativeCreated": 7072.839021682739, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35802,25 +35802,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:15,277", - "created": 1610361435.27749, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.844437, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 277.48990058898926, + "msecs": 844.4368839263916, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.899951934814, - "thread": 140378900514560, + "relativeCreated": 7072.9358196258545, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -35828,68 +35828,68 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:15,277", - "created": 1610361435.277581, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.844496, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 277.58097648620605, + "msecs": 844.4960117340088, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6932.991027832031, - "thread": 140378900514560, + "relativeCreated": 7072.994947433472, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:15,277", - "created": 1610361435.277664, + "asctime": "2021-01-14 00:25:57,844", + "created": 1610580357.84455, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 277.6639461517334, + "msecs": 844.5498943328857, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6933.073997497559, - "thread": 140378900514560, + "relativeCreated": 7073.048830032349, + "thread": 140019264112384, "threadName": "Thread-10" } ], - "msecs": 341.87793731689453, + "msecs": 910.9759330749512, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6997.28798866272, - "thread": 140379336402752, + "relativeCreated": 7139.474868774414, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.06421399116516113 + "time_consumption": 0.06642603874206543 }, { "args": [], - "asctime": "2021-01-11 11:37:15,544", - "created": 1610361435.544225, + "asctime": "2021-01-14 00:25:58,113", + "created": 1610580358.113293, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -35908,25 +35908,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:15,342", - "created": 1610361435.342672, + "asctime": "2021-01-14 00:25:57,911", + "created": 1610580357.911874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 342.67210960388184, + "msecs": 911.8740558624268, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 6998.082160949707, - "thread": 140379336402752, + "relativeCreated": 7140.37299156189, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -35934,8 +35934,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:15,375", - "created": 1610361435.375944, + "asctime": "2021-01-14 00:25:57,943", + "created": 1610580357.943772, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35945,14 +35945,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 375.9438991546631, + "msecs": 943.7720775604248, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7031.353950500488, - "thread": 140378908907264, + "relativeCreated": 7172.271013259888, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35960,8 +35960,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:15,376", - "created": 1610361435.376543, + "asctime": "2021-01-14 00:25:57,944", + "created": 1610580357.944375, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -35971,14 +35971,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 376.5430450439453, + "msecs": 944.3750381469727, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7031.9530963897705, - "thread": 140378908907264, + "relativeCreated": 7172.873973846436, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -35986,8 +35986,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,376", - "created": 1610361435.376872, + "asctime": "2021-01-14 00:25:57,944", + "created": 1610580357.944644, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -35997,14 +35997,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 376.87206268310547, + "msecs": 944.6439743041992, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7032.282114028931, - "thread": 140378908907264, + "relativeCreated": 7173.142910003662, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36013,8 +36013,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,377", - "created": 1610361435.377164, + "asctime": "2021-01-14 00:25:57,944", + "created": 1610580357.944917, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36024,14 +36024,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 377.1638870239258, + "msecs": 944.9169635772705, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7032.573938369751, - "thread": 140378908907264, + "relativeCreated": 7173.415899276733, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36039,8 +36039,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,377", - "created": 1610361435.377485, + "asctime": "2021-01-14 00:25:57,945", + "created": 1610580357.945356, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36050,14 +36050,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 377.4850368499756, + "msecs": 945.3558921813965, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7032.895088195801, - "thread": 140378908907264, + "relativeCreated": 7173.854827880859, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36066,8 +36066,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,377", - "created": 1610361435.377684, + "asctime": "2021-01-14 00:25:57,945", + "created": 1610580357.945591, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36077,14 +36077,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 377.6841163635254, + "msecs": 945.5909729003906, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7033.094167709351, - "thread": 140378908907264, + "relativeCreated": 7174.0899085998535, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36092,8 +36092,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,377", - "created": 1610361435.377971, + "asctime": "2021-01-14 00:25:57,946", + "created": 1610580357.946207, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36103,14 +36103,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 377.97093391418457, + "msecs": 946.2070465087891, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7033.38098526001, - "thread": 140378908907264, + "relativeCreated": 7174.705982208252, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36119,8 +36119,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,378", - "created": 1610361435.378172, + "asctime": "2021-01-14 00:25:57,946", + "created": 1610580357.946428, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36130,14 +36130,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 378.1719207763672, + "msecs": 946.4280605316162, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7033.581972122192, - "thread": 140378908907264, + "relativeCreated": 7174.926996231079, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36145,8 +36145,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,378", - "created": 1610361435.378444, + "asctime": "2021-01-14 00:25:57,946", + "created": 1610580357.94669, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36156,14 +36156,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 378.44395637512207, + "msecs": 946.6900825500488, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7033.854007720947, - "thread": 140378908907264, + "relativeCreated": 7175.189018249512, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36172,8 +36172,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,378", - "created": 1610361435.378638, + "asctime": "2021-01-14 00:25:57,946", + "created": 1610580357.946885, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36183,14 +36183,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 378.63802909851074, + "msecs": 946.8851089477539, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7034.048080444336, - "thread": 140378908907264, + "relativeCreated": 7175.384044647217, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36198,8 +36198,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:15,379", - "created": 1610361435.379126, + "asctime": "2021-01-14 00:25:57,947", + "created": 1610580357.947407, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -36209,14 +36209,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 379.12607192993164, + "msecs": 947.4070072174072, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7034.536123275757, - "thread": 140378908907264, + "relativeCreated": 7175.90594291687, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36224,8 +36224,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:15,379", - "created": 1610361435.379467, + "asctime": "2021-01-14 00:25:57,947", + "created": 1610580357.947882, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -36235,14 +36235,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 379.4670104980469, + "msecs": 947.8819370269775, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7034.877061843872, - "thread": 140378908907264, + "relativeCreated": 7176.38087272644, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36250,8 +36250,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,379", - "created": 1610361435.379663, + "asctime": "2021-01-14 00:25:57,948", + "created": 1610580357.948259, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36261,14 +36261,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 379.66299057006836, + "msecs": 948.2591152191162, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7035.073041915894, - "thread": 140378908907264, + "relativeCreated": 7176.758050918579, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36277,8 +36277,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,379", - "created": 1610361435.379781, + "asctime": "2021-01-14 00:25:57,948", + "created": 1610580357.948505, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36288,14 +36288,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 379.78100776672363, + "msecs": 948.5049247741699, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7035.191059112549, - "thread": 140378908907264, + "relativeCreated": 7177.003860473633, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36303,8 +36303,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,379", - "created": 1610361435.379919, + "asctime": "2021-01-14 00:25:57,948", + "created": 1610580357.948785, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36314,14 +36314,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 379.91905212402344, + "msecs": 948.7850666046143, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7035.329103469849, - "thread": 140378908907264, + "relativeCreated": 7177.284002304077, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36330,8 +36330,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,380", - "created": 1610361435.380031, + "asctime": "2021-01-14 00:25:57,949", + "created": 1610580357.949024, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36341,14 +36341,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 380.0311088562012, + "msecs": 949.023962020874, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7035.441160202026, - "thread": 140378908907264, + "relativeCreated": 7177.522897720337, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36356,8 +36356,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" ], - "asctime": "2021-01-11 11:37:15,380", - "created": 1610361435.380408, + "asctime": "2021-01-14 00:25:57,949", + "created": 1610580357.949554, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36367,14 +36367,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", "module": "stp", - "msecs": 380.40804862976074, + "msecs": 949.5539665222168, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7035.818099975586, - "thread": 140378908907264, + "relativeCreated": 7178.05290222168, + "thread": 140019272505088, "threadName": "Thread-9" }, { @@ -36385,71 +36385,71 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:15,380", - "created": 1610361435.380679, + "asctime": "2021-01-14 00:25:57,950", + "created": 1610580357.950028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 380.6788921356201, + "msecs": 950.0279426574707, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7036.088943481445, - "thread": 140378908907264, + "relativeCreated": 7178.526878356934, + "thread": 140019272505088, "threadName": "Thread-9" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:15,380", - "created": 1610361435.380868, + "asctime": "2021-01-14 00:25:57,950", + "created": 1610580357.950336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 380.86795806884766, + "msecs": 950.3359794616699, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7036.278009414673, - "thread": 140378908907264, + "relativeCreated": 7178.834915161133, + "thread": 140019272505088, "threadName": "Thread-9" } ], - "msecs": 544.2249774932861, + "msecs": 113.29293251037598, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7199.635028839111, - "thread": 140379336402752, + "relativeCreated": 7341.791868209839, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.16335701942443848 + "time_consumption": 0.16295695304870605 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:15,545", - "created": 1610361435.545522, + "asctime": "2021-01-14 00:25:58,114", + "created": 1610580358.114221, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36466,8 +36466,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:15,545", - "created": 1610361435.545018, + "asctime": "2021-01-14 00:25:58,113", + "created": 1610580358.113831, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36477,14 +36477,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 545.0179576873779, + "msecs": 113.8310432434082, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7200.428009033203, - "thread": 140379336402752, + "relativeCreated": 7342.329978942871, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -36493,8 +36493,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:15,545", - "created": 1610361435.545263, + "asctime": "2021-01-14 00:25:58,114", + "created": 1610580358.114035, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36504,35 +36504,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 545.2630519866943, + "msecs": 114.03489112854004, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7200.6731033325195, - "thread": 140379336402752, + "relativeCreated": 7342.533826828003, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 545.5219745635986, + "msecs": 114.22109603881836, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7200.932025909424, - "thread": 140379336402752, + "relativeCreated": 7342.720031738281, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002589225769042969 + "time_consumption": 0.0001862049102783203 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:15,546", - "created": 1610361435.546625, + "asctime": "2021-01-14 00:25:58,114", + "created": 1610580358.114937, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36549,8 +36549,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:15,546", - "created": 1610361435.546066, + "asctime": "2021-01-14 00:25:58,114", + "created": 1610580358.114512, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36560,14 +36560,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 546.0660457611084, + "msecs": 114.51196670532227, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7201.476097106934, - "thread": 140379336402752, + "relativeCreated": 7343.010902404785, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -36576,8 +36576,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:15,546", - "created": 1610361435.546383, + "asctime": "2021-01-14 00:25:58,114", + "created": 1610580358.114696, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36587,32 +36587,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 546.3829040527344, + "msecs": 114.69602584838867, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7201.79295539856, - "thread": 140379336402752, + "relativeCreated": 7343.194961547852, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 546.6248989105225, + "msecs": 114.93706703186035, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7202.034950256348, - "thread": 140379336402752, + "relativeCreated": 7343.436002731323, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00024199485778808594 + "time_consumption": 0.0002410411834716797 }, { "args": [], - "asctime": "2021-01-11 11:37:15,748", - "created": 1610361435.748502, + "asctime": "2021-01-14 00:25:58,316", + "created": 1610580358.316559, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -36631,25 +36631,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:15,547", - "created": 1610361435.547136, + "asctime": "2021-01-14 00:25:58,115", + "created": 1610580358.115395, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 547.1360683441162, + "msecs": 115.39506912231445, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7202.546119689941, - "thread": 140379336402752, + "relativeCreated": 7343.894004821777, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -36657,8 +36657,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:15,582", - "created": 1610361435.582453, + "asctime": "2021-01-14 00:25:58,146", + "created": 1610580358.14677, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -36668,14 +36668,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 582.4530124664307, + "msecs": 146.77000045776367, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7237.863063812256, - "thread": 140378900514560, + "relativeCreated": 7375.268936157227, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36683,8 +36683,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:15,582", - "created": 1610361435.582975, + "asctime": "2021-01-14 00:25:58,147", + "created": 1610580358.147396, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -36694,14 +36694,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 582.974910736084, + "msecs": 147.39608764648438, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7238.384962081909, - "thread": 140378900514560, + "relativeCreated": 7375.895023345947, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36709,8 +36709,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,583", - "created": 1610361435.58317, + "asctime": "2021-01-14 00:25:58,147", + "created": 1610580358.147687, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36720,14 +36720,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 583.1699371337891, + "msecs": 147.68695831298828, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7238.579988479614, - "thread": 140378900514560, + "relativeCreated": 7376.185894012451, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36736,8 +36736,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:15,583", - "created": 1610361435.583376, + "asctime": "2021-01-14 00:25:58,148", + "created": 1610580358.14822, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36747,14 +36747,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 583.3759307861328, + "msecs": 148.22006225585938, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7238.785982131958, - "thread": 140378900514560, + "relativeCreated": 7376.718997955322, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36762,8 +36762,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,583", - "created": 1610361435.583626, + "asctime": "2021-01-14 00:25:58,148", + "created": 1610580358.148548, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36773,14 +36773,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 583.6260318756104, + "msecs": 148.54788780212402, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7239.036083221436, - "thread": 140378900514560, + "relativeCreated": 7377.046823501587, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36789,8 +36789,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,583", - "created": 1610361435.583812, + "asctime": "2021-01-14 00:25:58,148", + "created": 1610580358.148733, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36800,14 +36800,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 583.8119983673096, + "msecs": 148.73290061950684, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7239.222049713135, - "thread": 140378900514560, + "relativeCreated": 7377.23183631897, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36815,8 +36815,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,584", - "created": 1610361435.584109, + "asctime": "2021-01-14 00:25:58,148", + "created": 1610580358.148953, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36826,14 +36826,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 584.1090679168701, + "msecs": 148.95296096801758, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7239.519119262695, - "thread": 140378900514560, + "relativeCreated": 7377.4518966674805, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36842,8 +36842,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,584", - "created": 1610361435.584346, + "asctime": "2021-01-14 00:25:58,149", + "created": 1610580358.149158, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36853,14 +36853,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 584.3460559844971, + "msecs": 149.15800094604492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7239.756107330322, - "thread": 140378900514560, + "relativeCreated": 7377.656936645508, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36868,8 +36868,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,584", - "created": 1610361435.58463, + "asctime": "2021-01-14 00:25:58,149", + "created": 1610580358.149422, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36879,14 +36879,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 584.630012512207, + "msecs": 149.42193031311035, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7240.040063858032, - "thread": 140378900514560, + "relativeCreated": 7377.920866012573, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36895,8 +36895,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,584", - "created": 1610361435.584904, + "asctime": "2021-01-14 00:25:58,149", + "created": 1610580358.14963, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36906,14 +36906,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 584.9039554595947, + "msecs": 149.63006973266602, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7240.31400680542, - "thread": 140378900514560, + "relativeCreated": 7378.129005432129, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36921,8 +36921,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:15,585", - "created": 1610361435.585452, + "asctime": "2021-01-14 00:25:58,150", + "created": 1610580358.150122, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -36932,14 +36932,14 @@ "lineno": 284, "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 585.4520797729492, + "msecs": 150.12192726135254, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7240.862131118774, - "thread": 140378900514560, + "relativeCreated": 7378.620862960815, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36947,8 +36947,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:15,585", - "created": 1610361435.585732, + "asctime": "2021-01-14 00:25:58,150", + "created": 1610580358.150444, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -36958,14 +36958,14 @@ "lineno": 414, "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 585.7319831848145, + "msecs": 150.44403076171875, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7241.14203453064, - "thread": 140378900514560, + "relativeCreated": 7378.942966461182, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -36973,8 +36973,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,585", - "created": 1610361435.585977, + "asctime": "2021-01-14 00:25:58,150", + "created": 1610580358.150689, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -36984,14 +36984,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 585.9770774841309, + "msecs": 150.68888664245605, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7241.387128829956, - "thread": 140378900514560, + "relativeCreated": 7379.187822341919, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -37000,8 +37000,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:15,586", - "created": 1610361435.586154, + "asctime": "2021-01-14 00:25:58,150", + "created": 1610580358.150851, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -37011,14 +37011,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 586.1539840698242, + "msecs": 150.85101127624512, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7241.564035415649, - "thread": 140378900514560, + "relativeCreated": 7379.349946975708, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -37026,8 +37026,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:15,586", - "created": 1610361435.586342, + "asctime": "2021-01-14 00:25:58,151", + "created": 1610580358.151079, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -37037,14 +37037,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 586.3420963287354, + "msecs": 151.0789394378662, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7241.752147674561, - "thread": 140378900514560, + "relativeCreated": 7379.577875137329, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -37053,8 +37053,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:15,586", - "created": 1610361435.586495, + "asctime": "2021-01-14 00:25:58,151", + "created": 1610580358.151382, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -37064,14 +37064,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 586.4949226379395, + "msecs": 151.3819694519043, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7241.904973983765, - "thread": 140378900514560, + "relativeCreated": 7379.880905151367, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -37079,8 +37079,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" ], - "asctime": "2021-01-11 11:37:15,587", - "created": 1610361435.587104, + "asctime": "2021-01-14 00:25:58,151", + "created": 1610580358.151831, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -37090,14 +37090,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", "module": "stp", - "msecs": 587.104082107544, + "msecs": 151.83091163635254, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7242.514133453369, - "thread": 140378900514560, + "relativeCreated": 7380.329847335815, + "thread": 140019264112384, "threadName": "Thread-10" }, { @@ -37108,71 +37108,71 @@ "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:15,587", - "created": 1610361435.587596, + "asctime": "2021-01-14 00:25:58,152", + "created": 1610580358.15229, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 587.5959396362305, + "msecs": 152.29010581970215, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7243.005990982056, - "thread": 140378900514560, + "relativeCreated": 7380.789041519165, + "thread": 140019264112384, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:15,587", - "created": 1610361435.587919, + "asctime": "2021-01-14 00:25:58,152", + "created": 1610580358.152641, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 587.9189968109131, + "msecs": 152.64105796813965, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7243.329048156738, - "thread": 140378900514560, + "relativeCreated": 7381.1399936676025, + "thread": 140019264112384, "threadName": "Thread-10" } ], - "msecs": 748.5020160675049, + "msecs": 316.5590763092041, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7403.91206741333, - "thread": 140379336402752, + "relativeCreated": 7545.058012008667, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.1605830192565918 + "time_consumption": 0.16391801834106445 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:15,749", - "created": 1610361435.749478, + "asctime": "2021-01-14 00:25:58,317", + "created": 1610580358.317522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -37189,8 +37189,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:15,749", - "created": 1610361435.749074, + "asctime": "2021-01-14 00:25:58,317", + "created": 1610580358.317089, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -37200,14 +37200,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 749.0739822387695, + "msecs": 317.0890808105469, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7404.484033584595, - "thread": 140379336402752, + "relativeCreated": 7545.58801651001, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37216,8 +37216,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:15,749", - "created": 1610361435.749286, + "asctime": "2021-01-14 00:25:58,317", + "created": 1610580358.317318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -37227,35 +37227,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 749.2859363555908, + "msecs": 317.3179626464844, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7404.695987701416, - "thread": 140379336402752, + "relativeCreated": 7545.816898345947, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 749.4781017303467, + "msecs": 317.5220489501953, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7404.888153076172, - "thread": 140379336402752, + "relativeCreated": 7546.020984649658, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00019216537475585938 + "time_consumption": 0.0002040863037109375 }, { "args": [ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:15,750", - "created": 1610361435.750326, + "asctime": "2021-01-14 00:25:58,318", + "created": 1610580358.318365, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -37272,8 +37272,8 @@ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:15,749", - "created": 1610361435.749757, + "asctime": "2021-01-14 00:25:58,317", + "created": 1610580358.317881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -37283,14 +37283,14 @@ "lineno": 22, "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", "module": "test", - "msecs": 749.7570514678955, + "msecs": 317.88110733032227, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7405.167102813721, - "thread": 140379336402752, + "relativeCreated": 7546.380043029785, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37299,8 +37299,8 @@ "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:15,750", - "created": 1610361435.750049, + "asctime": "2021-01-14 00:25:58,318", + "created": 1610580358.318167, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -37310,39 +37310,39 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 750.0491142272949, + "msecs": 318.16697120666504, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7405.45916557312, - "thread": 140379336402752, + "relativeCreated": 7546.665906906128, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 750.3259181976318, + "msecs": 318.36509704589844, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 7405.735969543457, - "thread": 140379336402752, + "relativeCreated": 7546.864032745361, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00027680397033691406 + "time_consumption": 0.00019812583923339844 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 1.975982904434204, - "time_finished": "2021-01-11 11:37:15,750", - "time_start": "2021-01-11 11:37:13,774" + "time_consumption": 1.978898048400879, + "time_finished": "2021-01-14 00:25:58,318", + "time_start": "2021-01-14 00:25:56,339" }, "_Tb-78E4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:22,180", - "created": 1610361442.180471, + "asctime": "2021-01-14 00:26:04,735", + "created": 1610580364.735624, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37353,18 +37353,18 @@ "message": "_Tb-78E4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 180.47094345092773, + "msecs": 735.6240749359131, "msg": "_Tb-78E4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13835.880994796753, + "relativeCreated": 13964.123010635376, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:22,190", - "created": 1610361442.190678, + "asctime": "2021-01-14 00:26:04,745", + "created": 1610580364.745985, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -37379,8 +37379,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:22,181", - "created": 1610361442.181534, + "asctime": "2021-01-14 00:26:04,736", + "created": 1610580364.736511, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37390,22 +37390,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 181.5340518951416, + "msecs": 736.5109920501709, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13836.944103240967, - "thread": 140379336402752, + "relativeCreated": 13965.009927749634, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,182", - "created": 1610361442.182317, + "asctime": "2021-01-14 00:26:04,737", + "created": 1610580364.737499, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37415,22 +37415,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 182.31701850891113, + "msecs": 737.4989986419678, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13837.727069854736, - "thread": 140379336402752, + "relativeCreated": 13965.99793434143, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,182", - "created": 1610361442.182523, + "asctime": "2021-01-14 00:26:04,737", + "created": 1610580364.737797, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37440,39 +37440,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 182.52301216125488, + "msecs": 737.7970218658447, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13837.93306350708, - "thread": 140379336402752, + "relativeCreated": 13966.295957565308, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,182", - "created": 1610361442.182948, + "asctime": "2021-01-14 00:26:04,738", + "created": 1610580364.738359, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 182.94811248779297, + "msecs": 738.3589744567871, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13838.358163833618, - "thread": 140379336402752, + "relativeCreated": 13966.85791015625, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37481,25 +37481,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:22,183", - "created": 1610361442.183116, + "asctime": "2021-01-14 00:26:04,738", + "created": 1610580364.738609, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 183.11595916748047, + "msecs": 738.6090755462646, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13838.526010513306, - "thread": 140379336402752, + "relativeCreated": 13967.108011245728, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37507,25 +37507,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,183", - "created": 1610361442.183368, + "asctime": "2021-01-14 00:26:04,738", + "created": 1610580364.738923, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 183.36796760559082, + "msecs": 738.9230728149414, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13838.778018951416, - "thread": 140379336402752, + "relativeCreated": 13967.422008514404, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37533,25 +37533,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,183", - "created": 1610361442.183551, + "asctime": "2021-01-14 00:26:04,739", + "created": 1610580364.739165, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 183.55107307434082, + "msecs": 739.1650676727295, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13838.961124420166, - "thread": 140379336402752, + "relativeCreated": 13967.664003372192, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37559,25 +37559,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:22,183", - "created": 1610361442.183748, + "asctime": "2021-01-14 00:26:04,739", + "created": 1610580364.739357, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 183.7480068206787, + "msecs": 739.3569946289062, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13839.158058166504, - "thread": 140379336402752, + "relativeCreated": 13967.85593032837, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37585,25 +37585,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:22,183", - "created": 1610361442.183931, + "asctime": "2021-01-14 00:26:04,739", + "created": 1610580364.739548, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 183.9311122894287, + "msecs": 739.5479679107666, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13839.341163635254, - "thread": 140379336402752, + "relativeCreated": 13968.04690361023, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37613,8 +37613,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:22,184", - "created": 1610361442.184119, + "asctime": "2021-01-14 00:26:04,739", + "created": 1610580364.739739, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37624,14 +37624,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 184.11898612976074, + "msecs": 739.738941192627, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13839.529037475586, - "thread": 140379336402752, + "relativeCreated": 13968.23787689209, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37641,8 +37641,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:22,184", - "created": 1610361442.184318, + "asctime": "2021-01-14 00:26:04,740", + "created": 1610580364.740013, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37652,14 +37652,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 184.31806564331055, + "msecs": 740.0128841400146, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13839.728116989136, - "thread": 140379336402752, + "relativeCreated": 13968.511819839478, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37669,8 +37669,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:22,184", - "created": 1610361442.184519, + "asctime": "2021-01-14 00:26:04,740", + "created": 1610580364.740249, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37680,14 +37680,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 184.51905250549316, + "msecs": 740.2489185333252, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13839.929103851318, - "thread": 140379336402752, + "relativeCreated": 13968.747854232788, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37697,8 +37697,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:22,184", - "created": 1610361442.184723, + "asctime": "2021-01-14 00:26:04,740", + "created": 1610580364.740467, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37708,39 +37708,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 184.722900390625, + "msecs": 740.4670715332031, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13840.13295173645, - "thread": 140379336402752, + "relativeCreated": 13968.966007232666, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,184", - "created": 1610361442.184912, + "asctime": "2021-01-14 00:26:04,740", + "created": 1610580364.740658, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 184.91196632385254, + "msecs": 740.6580448150635, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13840.322017669678, - "thread": 140379336402752, + "relativeCreated": 13969.156980514526, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37749,25 +37749,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:22,185", - "created": 1610361442.185098, + "asctime": "2021-01-14 00:26:04,740", + "created": 1610580364.740898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 185.09793281555176, + "msecs": 740.8978939056396, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13840.507984161377, - "thread": 140379336402752, + "relativeCreated": 13969.396829605103, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37775,25 +37775,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:22,185", - "created": 1610361442.185278, + "asctime": "2021-01-14 00:26:04,741", + "created": 1610580364.741099, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 185.27793884277344, + "msecs": 741.0991191864014, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13840.687990188599, - "thread": 140379336402752, + "relativeCreated": 13969.598054885864, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37801,25 +37801,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:22,185", - "created": 1610361442.185473, + "asctime": "2021-01-14 00:26:04,741", + "created": 1610580364.741355, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 185.47296524047852, + "msecs": 741.3549423217773, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13840.883016586304, - "thread": 140379336402752, + "relativeCreated": 13969.85387802124, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37829,8 +37829,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:22,185", - "created": 1610361442.185643, + "asctime": "2021-01-14 00:26:04,741", + "created": 1610580364.7415, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37840,14 +37840,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 185.64295768737793, + "msecs": 741.4999008178711, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13841.053009033203, - "thread": 140379336402752, + "relativeCreated": 13969.998836517334, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37857,8 +37857,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:22,185", - "created": 1610361442.185814, + "asctime": "2021-01-14 00:26:04,741", + "created": 1610580364.741679, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -37868,14 +37868,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 185.81390380859375, + "msecs": 741.6789531707764, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13841.223955154419, - "thread": 140379336402752, + "relativeCreated": 13970.17788887024, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37884,25 +37884,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:22,185", - "created": 1610361442.185977, + "asctime": "2021-01-14 00:26:04,741", + "created": 1610580364.74182, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 185.97698211669922, + "msecs": 741.8200969696045, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13841.387033462524, - "thread": 140379336402752, + "relativeCreated": 13970.319032669067, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37911,25 +37911,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:22,186", - "created": 1610361442.186136, + "asctime": "2021-01-14 00:26:04,741", + "created": 1610580364.74195, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 186.13600730895996, + "msecs": 741.9500350952148, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13841.546058654785, - "thread": 140379336402752, + "relativeCreated": 13970.448970794678, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -37938,75 +37938,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:22,186", - "created": 1610361442.186288, + "asctime": "2021-01-14 00:26:04,742", + "created": 1610580364.742078, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 186.28811836242676, + "msecs": 742.0780658721924, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13841.698169708252, - "thread": 140379336402752, + "relativeCreated": 13970.577001571655, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,186", - "created": 1610361442.186541, + "asctime": "2021-01-14 00:26:04,742", + "created": 1610580364.742221, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 186.54108047485352, + "msecs": 742.2211170196533, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13841.951131820679, - "thread": 140379336402752, + "relativeCreated": 13970.720052719116, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,186", - "created": 1610361442.186993, + "asctime": "2021-01-14 00:26:04,742", + "created": 1610580364.742538, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 186.99288368225098, + "msecs": 742.5379753112793, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13842.402935028076, - "thread": 140379336402752, + "relativeCreated": 13971.036911010742, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38015,25 +38015,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:22,187", - "created": 1610361442.187181, + "asctime": "2021-01-14 00:26:04,742", + "created": 1610580364.742698, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 187.1809959411621, + "msecs": 742.6979541778564, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13842.591047286987, - "thread": 140379336402752, + "relativeCreated": 13971.19688987732, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38041,25 +38041,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,187", - "created": 1610361442.18738, + "asctime": "2021-01-14 00:26:04,742", + "created": 1610580364.742889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 187.3800754547119, + "msecs": 742.8889274597168, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13842.790126800537, - "thread": 140379336402752, + "relativeCreated": 13971.38786315918, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38067,25 +38067,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,187", - "created": 1610361442.187532, + "asctime": "2021-01-14 00:26:04,743", + "created": 1610580364.743026, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 187.5319480895996, + "msecs": 743.0260181427002, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13842.941999435425, - "thread": 140379336402752, + "relativeCreated": 13971.524953842163, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38093,25 +38093,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:22,187", - "created": 1610361442.187715, + "asctime": "2021-01-14 00:26:04,743", + "created": 1610580364.743157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 187.7150535583496, + "msecs": 743.156909942627, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13843.125104904175, - "thread": 140379336402752, + "relativeCreated": 13971.65584564209, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38119,25 +38119,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:22,187", - "created": 1610361442.187892, + "asctime": "2021-01-14 00:26:04,743", + "created": 1610580364.743308, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 187.89196014404297, + "msecs": 743.3080673217773, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13843.302011489868, - "thread": 140379336402752, + "relativeCreated": 13971.80700302124, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38147,8 +38147,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:22,188", - "created": 1610361442.188061, + "asctime": "2021-01-14 00:26:04,743", + "created": 1610580364.743524, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38158,14 +38158,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 188.06099891662598, + "msecs": 743.5240745544434, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13843.471050262451, - "thread": 140379336402752, + "relativeCreated": 13972.023010253906, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38175,8 +38175,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:22,188", - "created": 1610361442.188253, + "asctime": "2021-01-14 00:26:04,743", + "created": 1610580364.743746, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38186,14 +38186,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 188.25292587280273, + "msecs": 743.7460422515869, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13843.662977218628, - "thread": 140379336402752, + "relativeCreated": 13972.24497795105, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38203,8 +38203,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:22,188", - "created": 1610361442.18859, + "asctime": "2021-01-14 00:26:04,744", + "created": 1610580364.744006, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38214,14 +38214,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 188.59004974365234, + "msecs": 744.0059185028076, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13844.000101089478, - "thread": 140379336402752, + "relativeCreated": 13972.50485420227, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38231,8 +38231,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:22,188", - "created": 1610361442.188801, + "asctime": "2021-01-14 00:26:04,744", + "created": 1610580364.744151, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38242,39 +38242,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 188.80105018615723, + "msecs": 744.1511154174805, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13844.211101531982, - "thread": 140379336402752, + "relativeCreated": 13972.650051116943, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,188", - "created": 1610361442.188966, + "asctime": "2021-01-14 00:26:04,744", + "created": 1610580364.744287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 188.9660358428955, + "msecs": 744.2870140075684, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13844.37608718872, - "thread": 140379336402752, + "relativeCreated": 13972.785949707031, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38283,25 +38283,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:22,189", - "created": 1610361442.189155, + "asctime": "2021-01-14 00:26:04,744", + "created": 1610580364.744439, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 189.15510177612305, + "msecs": 744.438886642456, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13844.565153121948, - "thread": 140379336402752, + "relativeCreated": 13972.937822341919, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38309,25 +38309,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:22,189", - "created": 1610361442.189345, + "asctime": "2021-01-14 00:26:04,744", + "created": 1610580364.744587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 189.3448829650879, + "msecs": 744.5869445800781, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13844.754934310913, - "thread": 140379336402752, + "relativeCreated": 13973.085880279541, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38335,25 +38335,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:22,189", - "created": 1610361442.18955, + "asctime": "2021-01-14 00:26:04,744", + "created": 1610580364.744727, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 189.54992294311523, + "msecs": 744.7268962860107, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13844.95997428894, - "thread": 140379336402752, + "relativeCreated": 13973.225831985474, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38363,8 +38363,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:22,189", - "created": 1610361442.189722, + "asctime": "2021-01-14 00:26:04,744", + "created": 1610580364.744867, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38374,14 +38374,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 189.72206115722656, + "msecs": 744.8670864105225, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13845.132112503052, - "thread": 140379336402752, + "relativeCreated": 13973.366022109985, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38391,8 +38391,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:22,189", - "created": 1610361442.189911, + "asctime": "2021-01-14 00:26:04,745", + "created": 1610580364.745063, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38402,14 +38402,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 189.910888671875, + "msecs": 745.063066482544, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13845.3209400177, - "thread": 140379336402752, + "relativeCreated": 13973.562002182007, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38418,25 +38418,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:22,190", - "created": 1610361442.190079, + "asctime": "2021-01-14 00:26:04,745", + "created": 1610580364.745333, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 190.0789737701416, + "msecs": 745.3329563140869, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13845.489025115967, - "thread": 140379336402752, + "relativeCreated": 13973.83189201355, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38445,25 +38445,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:22,190", - "created": 1610361442.190236, + "asctime": "2021-01-14 00:26:04,745", + "created": 1610580364.745491, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 190.23609161376953, + "msecs": 745.4910278320312, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13845.646142959595, - "thread": 140379336402752, + "relativeCreated": 13973.989963531494, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38472,68 +38472,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:22,190", - "created": 1610361442.190429, + "asctime": "2021-01-14 00:26:04,745", + "created": 1610580364.745651, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 190.4289722442627, + "msecs": 745.6510066986084, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13845.839023590088, - "thread": 140379336402752, + "relativeCreated": 13974.149942398071, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,190", - "created": 1610361442.190548, + "asctime": "2021-01-14 00:26:04,745", + "created": 1610580364.74582, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 190.54794311523438, + "msecs": 745.8200454711914, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13845.95799446106, - "thread": 140379336402752, + "relativeCreated": 13974.318981170654, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 190.67788124084473, + "msecs": 745.9850311279297, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13846.08793258667, - "thread": 140379336402752, + "relativeCreated": 13974.483966827393, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00012993812561035156 + "time_consumption": 0.00016498565673828125 }, { "args": [], - "asctime": "2021-01-11 11:37:22,534", - "created": 1610361442.534891, + "asctime": "2021-01-14 00:26:05,090", + "created": 1610580365.09013, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -38548,8 +38548,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:22,190", - "created": 1610361442.190971, + "asctime": "2021-01-14 00:26:04,746", + "created": 1610580364.746172, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38559,22 +38559,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 190.97089767456055, + "msecs": 746.1719512939453, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13846.380949020386, - "thread": 140379336402752, + "relativeCreated": 13974.670886993408, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:22,191", - "created": 1610361442.191027, + "asctime": "2021-01-14 00:26:04,746", + "created": 1610580364.746227, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38584,39 +38584,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 191.0269260406494, + "msecs": 746.2270259857178, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13846.436977386475, - "thread": 140379336402752, + "relativeCreated": 13974.72596168518, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,191", - "created": 1610361442.191081, + "asctime": "2021-01-14 00:26:04,746", + "created": 1610580364.746286, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 191.08104705810547, + "msecs": 746.2859153747559, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13846.49109840393, - "thread": 140379336402752, + "relativeCreated": 13974.784851074219, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38627,33 +38627,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,191", - "created": 1610361442.191167, + "asctime": "2021-01-14 00:26:04,746", + "created": 1610580364.746378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 191.16711616516113, + "msecs": 746.3779449462891, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13846.577167510986, - "thread": 140379336402752, + "relativeCreated": 13974.876880645752, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,191", - "created": 1610361442.191543, + "asctime": "2021-01-14 00:26:04,746", + "created": 1610580364.746794, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38663,22 +38663,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 191.5431022644043, + "msecs": 746.7939853668213, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13846.95315361023, - "thread": 140379336402752, + "relativeCreated": 13975.292921066284, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,191", - "created": 1610361442.191618, + "asctime": "2021-01-14 00:26:04,746", + "created": 1610580364.746867, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38688,39 +38688,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 191.6179656982422, + "msecs": 746.8669414520264, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13847.028017044067, - "thread": 140379336402752, + "relativeCreated": 13975.36587715149, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,191", - "created": 1610361442.191679, + "asctime": "2021-01-14 00:26:04,746", + "created": 1610580364.746928, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 191.6790008544922, + "msecs": 746.9279766082764, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13847.089052200317, - "thread": 140379336402752, + "relativeCreated": 13975.42691230774, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -38728,8 +38728,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199191, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754271, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38739,14 +38739,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 199.19109344482422, + "msecs": 754.2710304260254, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13854.60114479065, - "thread": 140377784841984, + "relativeCreated": 13982.769966125488, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38754,8 +38754,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199393, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754424, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38765,14 +38765,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 199.39303398132324, + "msecs": 754.4240951538086, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13854.803085327148, - "thread": 140377784841984, + "relativeCreated": 13982.923030853271, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38780,8 +38780,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199471, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754489, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38791,14 +38791,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 199.47099685668945, + "msecs": 754.4889450073242, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13854.881048202515, - "thread": 140377784841984, + "relativeCreated": 13982.987880706787, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38807,8 +38807,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199557, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754548, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38818,14 +38818,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 199.55706596374512, + "msecs": 754.5480728149414, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13854.96711730957, - "thread": 140377784841984, + "relativeCreated": 13983.047008514404, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38833,8 +38833,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199624, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754613, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38844,14 +38844,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 199.62406158447266, + "msecs": 754.612922668457, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.034112930298, - "thread": 140377784841984, + "relativeCreated": 13983.11185836792, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38860,8 +38860,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199678, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754668, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38871,14 +38871,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 199.6779441833496, + "msecs": 754.6679973602295, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.087995529175, - "thread": 140377784841984, + "relativeCreated": 13983.166933059692, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38886,8 +38886,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.19975, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754736, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38897,14 +38897,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 199.74994659423828, + "msecs": 754.7359466552734, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.159997940063, - "thread": 140377784841984, + "relativeCreated": 13983.234882354736, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38913,8 +38913,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199803, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754789, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38924,14 +38924,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 199.80311393737793, + "msecs": 754.7891139984131, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.213165283203, - "thread": 140377784841984, + "relativeCreated": 13983.288049697876, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38939,8 +38939,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199862, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.75485, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38950,14 +38950,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 199.86200332641602, + "msecs": 754.849910736084, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.272054672241, - "thread": 140377784841984, + "relativeCreated": 13983.348846435547, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38966,8 +38966,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199908, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754898, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -38977,14 +38977,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 199.90801811218262, + "msecs": 754.8980712890625, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.318069458008, - "thread": 140377784841984, + "relativeCreated": 13983.397006988525, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -38992,8 +38992,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,199", - "created": 1610361442.199976, + "asctime": "2021-01-14 00:26:04,754", + "created": 1610580364.754968, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39003,14 +39003,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 199.97596740722656, + "msecs": 754.9679279327393, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.386018753052, - "thread": 140377784841984, + "relativeCreated": 13983.466863632202, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39019,8 +39019,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200023, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755017, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39030,14 +39030,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 200.02293586730957, + "msecs": 755.0170421600342, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.432987213135, - "thread": 140377784841984, + "relativeCreated": 13983.515977859497, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39045,8 +39045,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200188, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.75509, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39056,14 +39056,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 200.18792152404785, + "msecs": 755.0899982452393, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.597972869873, - "thread": 140377784841984, + "relativeCreated": 13983.588933944702, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39071,8 +39071,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200289, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755153, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39082,14 +39082,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 200.2890110015869, + "msecs": 755.1529407501221, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.699062347412, - "thread": 140377784841984, + "relativeCreated": 13983.651876449585, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39097,8 +39097,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200347, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755209, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39108,14 +39108,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 200.3469467163086, + "msecs": 755.2089691162109, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.756998062134, - "thread": 140377784841984, + "relativeCreated": 13983.707904815674, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39124,8 +39124,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200394, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755258, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39135,14 +39135,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 200.3939151763916, + "msecs": 755.2580833435059, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.803966522217, - "thread": 140377784841984, + "relativeCreated": 13983.757019042969, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39150,8 +39150,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200481, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755357, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39161,14 +39161,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 200.48093795776367, + "msecs": 755.357027053833, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13855.890989303589, - "thread": 140377784841984, + "relativeCreated": 13983.855962753296, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39179,25 +39179,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200609, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755492, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 200.6089687347412, + "msecs": 755.4919719696045, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13856.019020080566, - "thread": 140377784841984, + "relativeCreated": 13983.990907669067, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39205,25 +39205,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.200668, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755558, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 200.6680965423584, + "msecs": 755.5580139160156, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13856.078147888184, - "thread": 140377784841984, + "relativeCreated": 13984.056949615479, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39234,25 +39234,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,200", - "created": 1610361442.20075, + "asctime": "2021-01-14 00:26:04,755", + "created": 1610580364.755651, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 200.75011253356934, + "msecs": 755.6509971618652, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13856.160163879395, - "thread": 140377784841984, + "relativeCreated": 13984.149932861328, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39260,8 +39260,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,202", - "created": 1610361442.202594, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756069, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39271,14 +39271,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 202.59404182434082, + "msecs": 756.0689449310303, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.004093170166, - "thread": 140377776449280, + "relativeCreated": 13984.567880630493, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39286,8 +39286,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,202", - "created": 1610361442.202734, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756181, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39297,14 +39297,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 202.73399353027344, + "msecs": 756.181001663208, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.144044876099, - "thread": 140377776449280, + "relativeCreated": 13984.67993736267, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39312,8 +39312,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,202", - "created": 1610361442.202796, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756274, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39323,14 +39323,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 202.79598236083984, + "msecs": 756.2739849090576, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.206033706665, - "thread": 140377776449280, + "relativeCreated": 13984.77292060852, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39339,8 +39339,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,202", - "created": 1610361442.20285, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756354, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39350,14 +39350,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 202.8501033782959, + "msecs": 756.3540935516357, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.260154724121, - "thread": 140377776449280, + "relativeCreated": 13984.853029251099, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39365,8 +39365,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,202", - "created": 1610361442.202922, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756464, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39376,14 +39376,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 202.92210578918457, + "msecs": 756.4640045166016, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.33215713501, - "thread": 140377776449280, + "relativeCreated": 13984.962940216064, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39392,8 +39392,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,202", - "created": 1610361442.202973, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756522, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39403,14 +39403,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 202.9728889465332, + "msecs": 756.5219402313232, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.382940292358, - "thread": 140377776449280, + "relativeCreated": 13985.020875930786, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39418,8 +39418,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.20304, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756615, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39429,14 +39429,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 203.03988456726074, + "msecs": 756.6149234771729, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.449935913086, - "thread": 140377776449280, + "relativeCreated": 13985.113859176636, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39445,8 +39445,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203089, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756687, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39456,14 +39456,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 203.08899879455566, + "msecs": 756.6869258880615, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.49905014038, - "thread": 140377776449280, + "relativeCreated": 13985.185861587524, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39471,8 +39471,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203155, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.75678, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39482,14 +39482,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 203.1550407409668, + "msecs": 756.7799091339111, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.565092086792, - "thread": 140377776449280, + "relativeCreated": 13985.278844833374, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39498,8 +39498,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203204, + "asctime": "2021-01-14 00:26:04,756", + "created": 1610580364.756891, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39509,14 +39509,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 203.20391654968262, + "msecs": 756.8910121917725, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.613967895508, - "thread": 140377776449280, + "relativeCreated": 13985.389947891235, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39524,8 +39524,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203276, + "asctime": "2021-01-14 00:26:04,757", + "created": 1610580364.757067, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39535,14 +39535,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 203.2759189605713, + "msecs": 757.0669651031494, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.685970306396, - "thread": 140377776449280, + "relativeCreated": 13985.565900802612, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39551,8 +39551,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203332, + "asctime": "2021-01-14 00:26:04,757", + "created": 1610580364.75721, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39562,14 +39562,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 203.33194732666016, + "msecs": 757.2100162506104, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.741998672485, - "thread": 140377776449280, + "relativeCreated": 13985.708951950073, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39577,8 +39577,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203424, + "asctime": "2021-01-14 00:26:04,757", + "created": 1610580364.757389, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39588,14 +39588,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 203.42397689819336, + "msecs": 757.3890686035156, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.834028244019, - "thread": 140377776449280, + "relativeCreated": 13985.888004302979, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39603,8 +39603,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203501, + "asctime": "2021-01-14 00:26:04,757", + "created": 1610580364.757578, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39614,14 +39614,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 203.50098609924316, + "msecs": 757.5778961181641, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.911037445068, - "thread": 140377776449280, + "relativeCreated": 13986.076831817627, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39629,8 +39629,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.20357, + "asctime": "2021-01-14 00:26:04,757", + "created": 1610580364.757682, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39640,14 +39640,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 203.56988906860352, + "msecs": 757.6820850372314, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13858.979940414429, - "thread": 140377776449280, + "relativeCreated": 13986.181020736694, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39656,8 +39656,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203629, + "asctime": "2021-01-14 00:26:04,757", + "created": 1610580364.757767, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39667,14 +39667,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 203.6290168762207, + "msecs": 757.7669620513916, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13859.039068222046, - "thread": 140377776449280, + "relativeCreated": 13986.265897750854, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39682,8 +39682,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203752, + "asctime": "2021-01-14 00:26:04,757", + "created": 1610580364.757941, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39693,14 +39693,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 203.7520408630371, + "msecs": 757.9410076141357, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13859.162092208862, - "thread": 140377776449280, + "relativeCreated": 13986.439943313599, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39711,25 +39711,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203883, + "asctime": "2021-01-14 00:26:04,758", + "created": 1610580364.758128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 203.88293266296387, + "msecs": 758.1279277801514, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13859.292984008789, - "thread": 140377776449280, + "relativeCreated": 13986.626863479614, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -39737,43 +39737,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:22,203", - "created": 1610361442.203961, + "asctime": "2021-01-14 00:26:04,758", + "created": 1610580364.758239, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 203.96089553833008, + "msecs": 758.2390308380127, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13859.370946884155, - "thread": 140377776449280, + "relativeCreated": 13986.737966537476, + "thread": 140018140047104, "threadName": "Thread-22" } ], - "msecs": 534.89089012146, + "msecs": 90.13009071350098, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14190.300941467285, - "thread": 140379336402752, + "relativeCreated": 14318.629026412964, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3309299945831299 + "time_consumption": 0.3318910598754883 }, { "args": [], - "asctime": "2021-01-11 11:37:22,535", - "created": 1610361442.535752, + "asctime": "2021-01-14 00:26:05,091", + "created": 1610580365.091098, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -39791,8 +39791,8 @@ "10", "None" ], - "asctime": "2021-01-11 11:37:22,535", - "created": 1610361442.53553, + "asctime": "2021-01-14 00:26:05,090", + "created": 1610580365.090788, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39802,32 +39802,32 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=None", "module": "__init__", - "msecs": 535.5300903320312, + "msecs": 90.78788757324219, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14190.940141677856, - "thread": 140379336402752, + "relativeCreated": 14319.286823272705, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 535.7520580291748, + "msecs": 91.09807014465332, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14191.162109375, - "thread": 140379336402752, + "relativeCreated": 14319.597005844116, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002219676971435547 + "time_consumption": 0.0003101825714111328 }, { "args": [], - "asctime": "2021-01-11 11:37:22,737", - "created": 1610361442.737173, + "asctime": "2021-01-14 00:26:05,292", + "created": 1610580365.292986, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -39846,25 +39846,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:22,536", - "created": 1610361442.536138, + "asctime": "2021-01-14 00:26:05,091", + "created": 1610580365.091645, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 536.1380577087402, + "msecs": 91.6450023651123, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14191.548109054565, - "thread": 140379336402752, + "relativeCreated": 14320.143938064575, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -39872,8 +39872,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:22,565", - "created": 1610361442.565457, + "asctime": "2021-01-14 00:26:05,121", + "created": 1610580365.121361, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39883,14 +39883,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 565.4571056365967, + "msecs": 121.36101722717285, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14220.867156982422, - "thread": 140377784841984, + "relativeCreated": 14349.859952926636, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39898,8 +39898,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:22,566", - "created": 1610361442.566066, + "asctime": "2021-01-14 00:26:05,121", + "created": 1610580365.121955, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -39909,14 +39909,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 566.0660266876221, + "msecs": 121.95491790771484, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14221.476078033447, - "thread": 140377784841984, + "relativeCreated": 14350.453853607178, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39924,8 +39924,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,566", - "created": 1610361442.566287, + "asctime": "2021-01-14 00:26:05,122", + "created": 1610580365.122464, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39935,14 +39935,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 566.2870407104492, + "msecs": 122.46394157409668, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14221.697092056274, - "thread": 140377784841984, + "relativeCreated": 14350.96287727356, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39951,8 +39951,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,566", - "created": 1610361442.566467, + "asctime": "2021-01-14 00:26:05,122", + "created": 1610580365.122695, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39962,14 +39962,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 566.4670467376709, + "msecs": 122.6949691772461, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14221.877098083496, - "thread": 140377784841984, + "relativeCreated": 14351.193904876709, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -39977,8 +39977,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,566", - "created": 1610361442.566681, + "asctime": "2021-01-14 00:26:05,122", + "created": 1610580365.122925, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -39988,14 +39988,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 566.680908203125, + "msecs": 122.9250431060791, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14222.09095954895, - "thread": 140377784841984, + "relativeCreated": 14351.423978805542, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40004,8 +40004,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,566", - "created": 1610361442.566846, + "asctime": "2021-01-14 00:26:05,123", + "created": 1610580365.123097, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40015,14 +40015,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 566.8458938598633, + "msecs": 123.09694290161133, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14222.255945205688, - "thread": 140377784841984, + "relativeCreated": 14351.595878601074, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40030,8 +40030,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,567", - "created": 1610361442.567204, + "asctime": "2021-01-14 00:26:05,123", + "created": 1610580365.12336, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40041,14 +40041,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 567.2039985656738, + "msecs": 123.35991859436035, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14222.614049911499, - "thread": 140377784841984, + "relativeCreated": 14351.858854293823, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40057,8 +40057,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,567", - "created": 1610361442.567477, + "asctime": "2021-01-14 00:26:05,123", + "created": 1610580365.123574, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40068,14 +40068,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 567.4769878387451, + "msecs": 123.57401847839355, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14222.88703918457, - "thread": 140377784841984, + "relativeCreated": 14352.072954177856, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40083,8 +40083,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,567", - "created": 1610361442.567684, + "asctime": "2021-01-14 00:26:05,123", + "created": 1610580365.123836, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40094,14 +40094,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 567.6839351654053, + "msecs": 123.83604049682617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14223.09398651123, - "thread": 140377784841984, + "relativeCreated": 14352.334976196289, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40110,8 +40110,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,567", - "created": 1610361442.56784, + "asctime": "2021-01-14 00:26:05,124", + "created": 1610580365.124033, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40121,14 +40121,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 567.8400993347168, + "msecs": 124.03297424316406, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14223.250150680542, - "thread": 140377784841984, + "relativeCreated": 14352.531909942627, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40136,8 +40136,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,568", - "created": 1610361442.568068, + "asctime": "2021-01-14 00:26:05,124", + "created": 1610580365.124302, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40147,14 +40147,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 568.0680274963379, + "msecs": 124.30191040039062, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14223.478078842163, - "thread": 140377784841984, + "relativeCreated": 14352.800846099854, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40163,8 +40163,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,568", - "created": 1610361442.568223, + "asctime": "2021-01-14 00:26:05,124", + "created": 1610580365.124505, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40174,14 +40174,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 568.2229995727539, + "msecs": 124.50504302978516, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14223.63305091858, - "thread": 140377784841984, + "relativeCreated": 14353.003978729248, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40189,8 +40189,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:22,568", - "created": 1610361442.568473, + "asctime": "2021-01-14 00:26:05,124", + "created": 1610580365.124696, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -40200,14 +40200,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 568.4731006622314, + "msecs": 124.69601631164551, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14223.883152008057, - "thread": 140377784841984, + "relativeCreated": 14353.194952011108, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40215,8 +40215,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:22,568", - "created": 1610361442.56866, + "asctime": "2021-01-14 00:26:05,124", + "created": 1610580365.124807, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -40226,14 +40226,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 568.6600208282471, + "msecs": 124.80688095092773, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14224.070072174072, - "thread": 140377784841984, + "relativeCreated": 14353.30581665039, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40241,8 +40241,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,568", - "created": 1610361442.568869, + "asctime": "2021-01-14 00:26:05,124", + "created": 1610580365.124915, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40252,14 +40252,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 568.8691139221191, + "msecs": 124.91488456726074, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14224.279165267944, - "thread": 140377784841984, + "relativeCreated": 14353.413820266724, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40268,8 +40268,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,569", - "created": 1610361442.569085, + "asctime": "2021-01-14 00:26:05,125", + "created": 1610580365.125106, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40279,14 +40279,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 569.084882736206, + "msecs": 125.1060962677002, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14224.494934082031, - "thread": 140377784841984, + "relativeCreated": 14353.605031967163, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40294,8 +40294,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:22,569", - "created": 1610361442.569492, + "asctime": "2021-01-14 00:26:05,125", + "created": 1610580365.12551, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40305,14 +40305,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 569.4921016693115, + "msecs": 125.50997734069824, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14224.902153015137, - "thread": 140377784841984, + "relativeCreated": 14354.008913040161, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40323,25 +40323,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:22,569", - "created": 1610361442.569942, + "asctime": "2021-01-14 00:26:05,125", + "created": 1610580365.125824, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 569.9419975280762, + "msecs": 125.823974609375, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14225.352048873901, - "thread": 140377784841984, + "relativeCreated": 14354.322910308838, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40349,25 +40349,25 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:22,570", - "created": 1610361442.570203, + "asctime": "2021-01-14 00:26:05,125", + "created": 1610580365.125984, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 570.2030658721924, + "msecs": 125.98395347595215, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14225.613117218018, - "thread": 140377784841984, + "relativeCreated": 14354.482889175415, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40378,25 +40378,25 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:22,570", - "created": 1610361442.570497, + "asctime": "2021-01-14 00:26:05,126", + "created": 1610580365.126209, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 570.4970359802246, + "msecs": 126.20902061462402, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14225.90708732605, - "thread": 140377784841984, + "relativeCreated": 14354.707956314087, + "thread": 140018148439808, "threadName": "Thread-21" }, { @@ -40404,8 +40404,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:22,571", - "created": 1610361442.571708, + "asctime": "2021-01-14 00:26:05,159", + "created": 1610580365.15993, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -40415,14 +40415,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 571.7079639434814, + "msecs": 159.92999076843262, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14227.118015289307, - "thread": 140377776449280, + "relativeCreated": 14388.428926467896, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40430,8 +40430,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:22,572", - "created": 1610361442.57234, + "asctime": "2021-01-14 00:26:05,160", + "created": 1610580365.160467, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -40441,14 +40441,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 572.3400115966797, + "msecs": 160.46690940856934, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14227.750062942505, - "thread": 140377776449280, + "relativeCreated": 14388.965845108032, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40456,8 +40456,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,572", - "created": 1610361442.572647, + "asctime": "2021-01-14 00:26:05,160", + "created": 1610580365.160789, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40467,14 +40467,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 572.6470947265625, + "msecs": 160.78901290893555, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14228.057146072388, - "thread": 140377776449280, + "relativeCreated": 14389.287948608398, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40483,8 +40483,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,572", - "created": 1610361442.572937, + "asctime": "2021-01-14 00:26:05,161", + "created": 1610580365.161055, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40494,14 +40494,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 572.93701171875, + "msecs": 161.0550880432129, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14228.347063064575, - "thread": 140377776449280, + "relativeCreated": 14389.554023742676, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40509,8 +40509,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,573", - "created": 1610361442.573257, + "asctime": "2021-01-14 00:26:05,161", + "created": 1610580365.161421, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40520,14 +40520,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 573.2569694519043, + "msecs": 161.4210605621338, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14228.66702079773, - "thread": 140377776449280, + "relativeCreated": 14389.919996261597, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40536,8 +40536,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,573", - "created": 1610361442.573498, + "asctime": "2021-01-14 00:26:05,161", + "created": 1610580365.161707, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40547,14 +40547,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 573.498010635376, + "msecs": 161.70692443847656, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14228.908061981201, - "thread": 140377776449280, + "relativeCreated": 14390.20586013794, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40562,8 +40562,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,573", - "created": 1610361442.573804, + "asctime": "2021-01-14 00:26:05,162", + "created": 1610580365.162243, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40573,14 +40573,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 573.8039016723633, + "msecs": 162.24288940429688, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14229.213953018188, - "thread": 140377776449280, + "relativeCreated": 14390.74182510376, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40589,8 +40589,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,574", - "created": 1610361442.574025, + "asctime": "2021-01-14 00:26:05,162", + "created": 1610580365.162551, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40600,14 +40600,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 574.0249156951904, + "msecs": 162.5509262084961, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14229.434967041016, - "thread": 140377776449280, + "relativeCreated": 14391.049861907959, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40615,8 +40615,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,574", - "created": 1610361442.574326, + "asctime": "2021-01-14 00:26:05,162", + "created": 1610580365.162879, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40626,14 +40626,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 574.3260383605957, + "msecs": 162.87899017333984, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14229.73608970642, - "thread": 140377776449280, + "relativeCreated": 14391.377925872803, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40642,8 +40642,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,574", - "created": 1610361442.574666, + "asctime": "2021-01-14 00:26:05,163", + "created": 1610580365.16314, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40653,14 +40653,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 574.6660232543945, + "msecs": 163.14005851745605, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14230.07607460022, - "thread": 140377776449280, + "relativeCreated": 14391.638994216919, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40668,8 +40668,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,574", - "created": 1610361442.574963, + "asctime": "2021-01-14 00:26:05,163", + "created": 1610580365.163462, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40679,14 +40679,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 574.9630928039551, + "msecs": 163.46192359924316, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14230.37314414978, - "thread": 140377776449280, + "relativeCreated": 14391.960859298706, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40695,8 +40695,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.575317, + "asctime": "2021-01-14 00:26:05,163", + "created": 1610580365.163695, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40706,14 +40706,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 575.3169059753418, + "msecs": 163.6950969696045, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14230.726957321167, - "thread": 140377776449280, + "relativeCreated": 14392.194032669067, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40721,8 +40721,8 @@ "comm-server:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.575432, + "asctime": "2021-01-14 00:26:05,164", + "created": 1610580365.16413, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -40732,14 +40732,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 575.4320621490479, + "msecs": 164.12997245788574, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14230.842113494873, - "thread": 140377776449280, + "relativeCreated": 14392.628908157349, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40747,8 +40747,8 @@ "comm-client:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.575564, + "asctime": "2021-01-14 00:26:05,164", + "created": 1610580365.164344, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -40758,14 +40758,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 575.563907623291, + "msecs": 164.34407234191895, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14230.973958969116, - "thread": 140377776449280, + "relativeCreated": 14392.843008041382, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40773,8 +40773,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.575622, + "asctime": "2021-01-14 00:26:05,164", + "created": 1610580365.164473, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40784,14 +40784,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 575.6220817565918, + "msecs": 164.4730567932129, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14231.032133102417, - "thread": 140377776449280, + "relativeCreated": 14392.971992492676, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40800,8 +40800,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.575672, + "asctime": "2021-01-14 00:26:05,164", + "created": 1610580365.164616, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40811,14 +40811,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 575.671911239624, + "msecs": 164.61610794067383, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14231.08196258545, - "thread": 140377776449280, + "relativeCreated": 14393.115043640137, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40826,8 +40826,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.575779, + "asctime": "2021-01-14 00:26:05,164", + "created": 1610580365.164827, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -40837,14 +40837,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", "module": "stp", - "msecs": 575.7789611816406, + "msecs": 164.8271083831787, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14231.189012527466, - "thread": 140377776449280, + "relativeCreated": 14393.326044082642, + "thread": 140018140047104, "threadName": "Thread-22" }, { @@ -40855,71 +40855,71 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.575899, + "asctime": "2021-01-14 00:26:05,165", + "created": 1610580365.165064, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 575.8988857269287, + "msecs": 165.06409645080566, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14231.308937072754, - "thread": 140377776449280, + "relativeCreated": 14393.563032150269, + "thread": 140018140047104, "threadName": "Thread-22" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,575", - "created": 1610361442.57598, + "asctime": "2021-01-14 00:26:05,165", + "created": 1610580365.165236, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 575.9799480438232, + "msecs": 165.2359962463379, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14231.389999389648, - "thread": 140377776449280, + "relativeCreated": 14393.7349319458, + "thread": 140018140047104, "threadName": "Thread-22" } ], - "msecs": 737.1730804443359, + "msecs": 292.9859161376953, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14392.583131790161, - "thread": 140379336402752, + "relativeCreated": 14521.484851837158, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.1611931324005127 + "time_consumption": 0.12774991989135742 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,738", - "created": 1610361442.738159, + "asctime": "2021-01-14 00:26:05,294", + "created": 1610580365.294377, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40936,8 +40936,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,737", - "created": 1610361442.737739, + "asctime": "2021-01-14 00:26:05,293", + "created": 1610580365.293788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40947,14 +40947,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 737.739086151123, + "msecs": 293.78795623779297, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14393.149137496948, - "thread": 140379336402752, + "relativeCreated": 14522.286891937256, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -40963,8 +40963,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,737", - "created": 1610361442.737961, + "asctime": "2021-01-14 00:26:05,294", + "created": 1610580365.294077, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40974,35 +40974,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 737.9610538482666, + "msecs": 294.07691955566406, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14393.371105194092, - "thread": 140379336402752, + "relativeCreated": 14522.575855255127, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 738.1589412689209, + "msecs": 294.37708854675293, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14393.568992614746, - "thread": 140379336402752, + "relativeCreated": 14522.876024246216, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00019788742065429688 + "time_consumption": 0.0003001689910888672 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,738", - "created": 1610361442.738791, + "asctime": "2021-01-14 00:26:05,295", + "created": 1610580365.295268, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41019,8 +41019,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,738", - "created": 1610361442.738445, + "asctime": "2021-01-14 00:26:05,294", + "created": 1610580365.294878, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41030,14 +41030,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 738.4450435638428, + "msecs": 294.8780059814453, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14393.855094909668, - "thread": 140379336402752, + "relativeCreated": 14523.376941680908, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41046,8 +41046,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,738", - "created": 1610361442.73862, + "asctime": "2021-01-14 00:26:05,295", + "created": 1610580365.295075, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41057,39 +41057,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 738.6200428009033, + "msecs": 295.0749397277832, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14394.030094146729, - "thread": 140379336402752, + "relativeCreated": 14523.573875427246, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 738.7909889221191, + "msecs": 295.26805877685547, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14394.201040267944, - "thread": 140379336402752, + "relativeCreated": 14523.766994476318, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001709461212158203 + "time_consumption": 0.00019311904907226562 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.5583200454711914, - "time_finished": "2021-01-11 11:37:22,738", - "time_start": "2021-01-11 11:37:22,180" + "time_consumption": 0.5596439838409424, + "time_finished": "2021-01-14 00:26:05,295", + "time_start": "2021-01-14 00:26:04,735" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2021-01-11 11:37:08,378", - "created": 1610361428.378978, + "asctime": "2021-01-14 00:25:50,831", + "created": 1610580350.831319, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41100,20 +41100,20 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 378.97801399230957, + "msecs": 831.3190937042236, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 34.388065338134766, + "relativeCreated": 59.81802940368652, "testcaseLogger": [ { "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379176, + "asctime": "2021-01-14 00:25:50,831", + "created": 1610580350.831514, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -41124,14 +41124,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 379.17590141296387, + "msecs": 831.5138816833496, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 34.58595275878906, - "thread": 140379336402752, + "relativeCreated": 60.0128173828125, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -41139,8 +41139,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379445, + "asctime": "2021-01-14 00:25:50,831", + "created": 1610580350.831811, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41157,8 +41157,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379321, + "asctime": "2021-01-14 00:25:50,831", + "created": 1610580350.831694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41168,14 +41168,14 @@ "lineno": 22, "message": "Result (status is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 379.3210983276367, + "msecs": 831.6938877105713, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 34.731149673461914, - "thread": 140379336402752, + "relativeCreated": 60.19282341003418, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41183,8 +41183,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.37939, + "asctime": "2021-01-14 00:25:50,831", + "created": 1610580350.831754, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41194,34 +41194,34 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 379.39000129699707, + "msecs": 831.7539691925049, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 34.800052642822266, - "thread": 140379336402752, + "relativeCreated": 60.25290489196777, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 379.44507598876953, + "msecs": 831.8109512329102, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 34.85512733459473, - "thread": 140379336402752, + "relativeCreated": 60.30988693237305, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 5.507469177246094e-05 + "time_consumption": 5.698204040527344e-05 }, { "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379542, + "asctime": "2021-01-14 00:25:50,831", + "created": 1610580350.831897, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -41232,14 +41232,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 379.54211235046387, + "msecs": 831.8970203399658, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 34.95216369628906, - "thread": 140379336402752, + "relativeCreated": 60.39595603942871, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -41247,8 +41247,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379716, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832049, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41265,8 +41265,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379634, + "asctime": "2021-01-14 00:25:50,831", + "created": 1610580350.831969, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41276,14 +41276,14 @@ "lineno": 22, "message": "Result (status is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 379.63390350341797, + "msecs": 831.9690227508545, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.043954849243164, - "thread": 140379336402752, + "relativeCreated": 60.46795845031738, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41291,8 +41291,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379677, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.83201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41302,25 +41302,25 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 379.67705726623535, + "msecs": 832.01003074646, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.08710861206055, - "thread": 140379336402752, + "relativeCreated": 60.50896644592285, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 379.7159194946289, + "msecs": 832.0488929748535, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.1259708404541, - "thread": 140379336402752, + "relativeCreated": 60.547828674316406, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 3.886222839355469e-05 }, @@ -41329,8 +41329,8 @@ "'S'", "" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379868, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832202, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41347,8 +41347,8 @@ "'S'", "" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379788, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832121, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41358,14 +41358,14 @@ "lineno": 22, "message": "Result (Content in message object for status): 'S' ()", "module": "test", - "msecs": 379.7879219055176, + "msecs": 832.1208953857422, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.19797325134277, - "thread": 140379336402752, + "relativeCreated": 60.61983108520508, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41374,8 +41374,8 @@ "'S'", "" ], - "asctime": "2021-01-11 11:37:08,379", - "created": 1610361428.379828, + "asctime": "2021-01-14 00:25:50,832", + "created": 1610580350.832161, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41385,39 +41385,39 @@ "lineno": 26, "message": "Expectation (Content in message object for status): result = 'S' ()", "module": "test", - "msecs": 379.82797622680664, + "msecs": 832.1609497070312, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.238027572631836, - "thread": 140379336402752, + "relativeCreated": 60.65988540649414, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 379.8680305480957, + "msecs": 832.2019577026367, "msg": "Content in message object for status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 35.2780818939209, - "thread": 140379336402752, + "relativeCreated": 60.70089340209961, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 4.100799560546875e-05 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0008900165557861328, - "time_finished": "2021-01-11 11:37:08,379", - "time_start": "2021-01-11 11:37:08,378" + "time_consumption": 0.0008828639984130859, + "time_finished": "2021-01-14 00:25:50,832", + "time_start": "2021-01-14 00:25:50,831" }, "_YfrfUE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:22,739", - "created": 1610361442.739392, + "asctime": "2021-01-14 00:26:05,296", + "created": 1610580365.296016, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41428,18 +41428,18 @@ "message": "_YfrfUE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 739.3920421600342, + "msecs": 296.01597785949707, "msg": "_YfrfUE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14394.80209350586, + "relativeCreated": 14524.51491355896, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749269, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.30562, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -41454,8 +41454,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:22,741", - "created": 1610361442.74106, + "asctime": "2021-01-14 00:26:05,297", + "created": 1610580365.297595, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41465,22 +41465,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 741.0600185394287, + "msecs": 297.5950241088867, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14396.470069885254, - "thread": 140379336402752, + "relativeCreated": 14526.09395980835, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,742", - "created": 1610361442.742327, + "asctime": "2021-01-14 00:26:05,298", + "created": 1610580365.298642, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41490,22 +41490,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 742.3269748687744, + "msecs": 298.6419200897217, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14397.7370262146, - "thread": 140379336402752, + "relativeCreated": 14527.140855789185, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,742", - "created": 1610361442.742654, + "asctime": "2021-01-14 00:26:05,299", + "created": 1610580365.299056, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41515,39 +41515,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 742.6540851593018, + "msecs": 299.0560531616211, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14398.064136505127, - "thread": 140379336402752, + "relativeCreated": 14527.554988861084, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,743", - "created": 1610361442.743321, + "asctime": "2021-01-14 00:26:05,299", + "created": 1610580365.299774, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 743.3209419250488, + "msecs": 299.7739315032959, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14398.730993270874, - "thread": 140379336402752, + "relativeCreated": 14528.272867202759, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41556,25 +41556,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:22,743", - "created": 1610361442.74356, + "asctime": "2021-01-14 00:26:05,300", + "created": 1610580365.300089, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 743.5600757598877, + "msecs": 300.08888244628906, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14398.970127105713, - "thread": 140379336402752, + "relativeCreated": 14528.587818145752, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41582,25 +41582,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,743", - "created": 1610361442.743823, + "asctime": "2021-01-14 00:26:05,300", + "created": 1610580365.300466, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 743.8230514526367, + "msecs": 300.46606063842773, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14399.233102798462, - "thread": 140379336402752, + "relativeCreated": 14528.96499633789, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41608,25 +41608,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,744", - "created": 1610361442.744006, + "asctime": "2021-01-14 00:26:05,300", + "created": 1610580365.300726, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 744.0059185028076, + "msecs": 300.72593688964844, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14399.415969848633, - "thread": 140379336402752, + "relativeCreated": 14529.224872589111, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41634,25 +41634,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:22,744", - "created": 1610361442.744221, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.301031, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 744.2209720611572, + "msecs": 301.03111267089844, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14399.631023406982, - "thread": 140379336402752, + "relativeCreated": 14529.530048370361, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41660,25 +41660,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:22,744", - "created": 1610361442.744536, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.301161, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 744.5359230041504, + "msecs": 301.1610507965088, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14399.945974349976, - "thread": 140379336402752, + "relativeCreated": 14529.659986495972, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41688,8 +41688,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:22,744", - "created": 1610361442.744788, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.301283, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41699,14 +41699,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 744.7879314422607, + "msecs": 301.2828826904297, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14400.197982788086, - "thread": 140379336402752, + "relativeCreated": 14529.781818389893, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41716,8 +41716,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:22,745", - "created": 1610361442.745015, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.301401, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41727,14 +41727,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 745.0149059295654, + "msecs": 301.40089988708496, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14400.42495727539, - "thread": 140379336402752, + "relativeCreated": 14529.899835586548, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41744,8 +41744,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:22,745", - "created": 1610361442.745274, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.30152, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41755,14 +41755,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 745.2740669250488, + "msecs": 301.52010917663574, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14400.684118270874, - "thread": 140379336402752, + "relativeCreated": 14530.019044876099, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41772,8 +41772,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:22,745", - "created": 1610361442.745499, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.30164, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41783,39 +41783,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 745.4988956451416, + "msecs": 301.6400337219238, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14400.908946990967, - "thread": 140379336402752, + "relativeCreated": 14530.138969421387, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,745", - "created": 1610361442.745738, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.301743, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 745.7380294799805, + "msecs": 301.7430305480957, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14401.148080825806, - "thread": 140379336402752, + "relativeCreated": 14530.241966247559, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41824,25 +41824,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:22,745", - "created": 1610361442.745971, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.301865, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 745.9709644317627, + "msecs": 301.8651008605957, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14401.381015777588, - "thread": 140379336402752, + "relativeCreated": 14530.364036560059, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41850,25 +41850,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:22,746", - "created": 1610361442.746159, + "asctime": "2021-01-14 00:26:05,301", + "created": 1610580365.301985, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 746.1590766906738, + "msecs": 301.9850254058838, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14401.569128036499, - "thread": 140379336402752, + "relativeCreated": 14530.483961105347, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41876,25 +41876,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:22,746", - "created": 1610361442.746344, + "asctime": "2021-01-14 00:26:05,302", + "created": 1610580365.302164, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 746.3440895080566, + "msecs": 302.16407775878906, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14401.754140853882, - "thread": 140379336402752, + "relativeCreated": 14530.663013458252, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41904,8 +41904,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:22,746", - "created": 1610361442.746564, + "asctime": "2021-01-14 00:26:05,302", + "created": 1610580365.302337, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41915,14 +41915,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 746.5639114379883, + "msecs": 302.3369312286377, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14401.973962783813, - "thread": 140379336402752, + "relativeCreated": 14530.8358669281, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41932,8 +41932,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:22,746", - "created": 1610361442.74685, + "asctime": "2021-01-14 00:26:05,302", + "created": 1610580365.302469, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -41943,14 +41943,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 746.8500137329102, + "msecs": 302.46901512145996, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14402.260065078735, - "thread": 140379336402752, + "relativeCreated": 14530.967950820923, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41959,25 +41959,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:22,747", - "created": 1610361442.747097, + "asctime": "2021-01-14 00:26:05,302", + "created": 1610580365.302592, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 747.0970153808594, + "msecs": 302.59203910827637, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14402.507066726685, - "thread": 140379336402752, + "relativeCreated": 14531.09097480774, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -41986,25 +41986,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:22,747", - "created": 1610361442.747345, + "asctime": "2021-01-14 00:26:05,302", + "created": 1610580365.302777, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 747.344970703125, + "msecs": 302.7770519256592, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14402.75502204895, - "thread": 140379336402752, + "relativeCreated": 14531.275987625122, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42013,75 +42013,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:22,747", - "created": 1610361442.747584, + "asctime": "2021-01-14 00:26:05,302", + "created": 1610580365.302923, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 747.5841045379639, + "msecs": 302.92296409606934, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14402.994155883789, - "thread": 140379336402752, + "relativeCreated": 14531.421899795532, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,747", - "created": 1610361442.747832, + "asctime": "2021-01-14 00:26:05,303", + "created": 1610580365.303034, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 747.8320598602295, + "msecs": 303.03406715393066, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.242111206055, - "thread": 140379336402752, + "relativeCreated": 14531.533002853394, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748102, + "asctime": "2021-01-14 00:26:05,303", + "created": 1610580365.303391, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 748.1019496917725, + "msecs": 303.3909797668457, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.512001037598, - "thread": 140379336402752, + "relativeCreated": 14531.889915466309, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42090,25 +42090,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748167, + "asctime": "2021-01-14 00:26:05,303", + "created": 1610580365.303525, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 748.1670379638672, + "msecs": 303.5249710083008, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.577089309692, - "thread": 140379336402752, + "relativeCreated": 14532.023906707764, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42116,25 +42116,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.74824, + "asctime": "2021-01-14 00:26:05,303", + "created": 1610580365.303678, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 748.2399940490723, + "msecs": 303.678035736084, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.650045394897, - "thread": 140379336402752, + "relativeCreated": 14532.176971435547, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42142,25 +42142,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748294, + "asctime": "2021-01-14 00:26:05,303", + "created": 1610580365.303816, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 748.2941150665283, + "msecs": 303.8160800933838, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.704166412354, - "thread": 140379336402752, + "relativeCreated": 14532.315015792847, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42168,25 +42168,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748345, + "asctime": "2021-01-14 00:26:05,303", + "created": 1610580365.30392, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 748.344898223877, + "msecs": 303.92003059387207, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.754949569702, - "thread": 140379336402752, + "relativeCreated": 14532.418966293335, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42194,25 +42194,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748394, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304018, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 748.3940124511719, + "msecs": 304.0180206298828, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.804063796997, - "thread": 140379336402752, + "relativeCreated": 14532.516956329346, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42222,8 +42222,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.74845, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304154, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42233,14 +42233,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 748.4500408172607, + "msecs": 304.1539192199707, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.860092163086, - "thread": 140379336402752, + "relativeCreated": 14532.652854919434, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42250,8 +42250,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748506, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304318, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42261,14 +42261,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 748.5060691833496, + "msecs": 304.3179512023926, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.916120529175, - "thread": 140379336402752, + "relativeCreated": 14532.816886901855, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42278,8 +42278,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748561, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304435, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42289,14 +42289,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 748.560905456543, + "msecs": 304.43501472473145, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14403.970956802368, - "thread": 140379336402752, + "relativeCreated": 14532.933950424194, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42306,8 +42306,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748618, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304551, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42317,39 +42317,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 748.6178874969482, + "msecs": 304.5508861541748, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.027938842773, - "thread": 140379336402752, + "relativeCreated": 14533.049821853638, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.74867, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304651, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 748.6701011657715, + "msecs": 304.65102195739746, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.080152511597, - "thread": 140379336402752, + "relativeCreated": 14533.14995765686, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42358,25 +42358,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748727, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.30477, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 748.7270832061768, + "msecs": 304.76999282836914, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.137134552002, - "thread": 140379336402752, + "relativeCreated": 14533.268928527832, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42384,25 +42384,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748794, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304888, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 748.7940788269043, + "msecs": 304.8880100250244, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.20413017273, - "thread": 140379336402752, + "relativeCreated": 14533.386945724487, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42410,25 +42410,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748856, + "asctime": "2021-01-14 00:26:05,304", + "created": 1610580365.304999, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 748.8560676574707, + "msecs": 304.99911308288574, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.266119003296, - "thread": 140379336402752, + "relativeCreated": 14533.498048782349, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42438,8 +42438,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.74891, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.305108, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42449,14 +42449,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 748.9099502563477, + "msecs": 305.10807037353516, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.320001602173, - "thread": 140379336402752, + "relativeCreated": 14533.607006072998, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42466,8 +42466,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:22,748", - "created": 1610361442.748964, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.30522, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42477,14 +42477,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 748.9640712738037, + "msecs": 305.2198886871338, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.374122619629, - "thread": 140379336402752, + "relativeCreated": 14533.718824386597, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42493,25 +42493,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749028, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.305307, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 749.0279674530029, + "msecs": 305.30691146850586, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.438018798828, - "thread": 140379336402752, + "relativeCreated": 14533.805847167969, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42520,25 +42520,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749089, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.305383, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 749.0890026092529, + "msecs": 305.38296699523926, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.499053955078, - "thread": 140379336402752, + "relativeCreated": 14533.881902694702, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42547,68 +42547,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749149, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.30546, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 749.1490840911865, + "msecs": 305.45997619628906, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.559135437012, - "thread": 140379336402752, + "relativeCreated": 14533.958911895752, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749216, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.305536, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 749.2160797119141, + "msecs": 305.53603172302246, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.62613105774, - "thread": 140379336402752, + "relativeCreated": 14534.034967422485, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 749.2690086364746, + "msecs": 305.6199550628662, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.6790599823, - "thread": 140379336402752, + "relativeCreated": 14534.11889076233, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 5.2928924560546875e-05 + "time_consumption": 8.392333984375e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:23,092", - "created": 1610361443.092877, + "asctime": "2021-01-14 00:26:05,649", + "created": 1610580365.649961, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -42623,8 +42623,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749381, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.305804, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42634,22 +42634,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 749.3810653686523, + "msecs": 305.8040142059326, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.791116714478, - "thread": 140379336402752, + "relativeCreated": 14534.302949905396, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749428, + "asctime": "2021-01-14 00:26:05,305", + "created": 1610580365.305909, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42659,39 +42659,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 749.4280338287354, + "msecs": 305.9089183807373, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.83808517456, - "thread": 140379336402752, + "relativeCreated": 14534.4078540802, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749475, + "asctime": "2021-01-14 00:26:05,306", + "created": 1610580365.30601, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 749.4750022888184, + "msecs": 306.01000785827637, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.885053634644, - "thread": 140379336402752, + "relativeCreated": 14534.50894355774, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42702,33 +42702,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749549, + "asctime": "2021-01-14 00:26:05,306", + "created": 1610580365.306178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 749.5489120483398, + "msecs": 306.17809295654297, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14404.958963394165, - "thread": 140379336402752, + "relativeCreated": 14534.677028656006, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749714, + "asctime": "2021-01-14 00:26:05,306", + "created": 1610580365.30649, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42738,22 +42738,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 749.7138977050781, + "msecs": 306.4899444580078, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.123949050903, - "thread": 140379336402752, + "relativeCreated": 14534.98888015747, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749775, + "asctime": "2021-01-14 00:26:05,306", + "created": 1610580365.306613, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42763,39 +42763,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 749.7749328613281, + "msecs": 306.6129684448242, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.184984207153, - "thread": 140379336402752, + "relativeCreated": 14535.111904144287, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749836, + "asctime": "2021-01-14 00:26:05,306", + "created": 1610580365.306718, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 749.8359680175781, + "msecs": 306.718111038208, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.246019363403, - "thread": 140379336402752, + "relativeCreated": 14535.21704673767, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -42803,8 +42803,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,749", - "created": 1610361442.749968, + "asctime": "2021-01-14 00:26:05,307", + "created": 1610580365.307948, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42814,14 +42814,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 749.9680519104004, + "msecs": 307.94811248779297, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.378103256226, - "thread": 140377768056576, + "relativeCreated": 14536.447048187256, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -42829,8 +42829,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750096, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308136, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -42840,14 +42840,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 750.0960826873779, + "msecs": 308.135986328125, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.506134033203, - "thread": 140377768056576, + "relativeCreated": 14536.634922027588, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -42855,8 +42855,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750155, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308227, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -42866,14 +42866,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 750.154972076416, + "msecs": 308.2270622253418, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.565023422241, - "thread": 140377768056576, + "relativeCreated": 14536.725997924805, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -42882,8 +42882,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750202, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308307, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -42893,14 +42893,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 750.201940536499, + "msecs": 308.3069324493408, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.611991882324, - "thread": 140377768056576, + "relativeCreated": 14536.805868148804, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -42908,8 +42908,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750257, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308401, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -42919,14 +42919,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 750.2570152282715, + "msecs": 308.40110778808594, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.667066574097, - "thread": 140377768056576, + "relativeCreated": 14536.900043487549, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -42935,8 +42935,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750299, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308476, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -42946,14 +42946,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 750.2989768981934, + "msecs": 308.4759712219238, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.709028244019, - "thread": 140377768056576, + "relativeCreated": 14536.974906921387, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -42961,8 +42961,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.75037, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308584, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -42972,14 +42972,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 750.3700256347656, + "msecs": 308.58397483825684, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.78007698059, - "thread": 140377768056576, + "relativeCreated": 14537.08291053772, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -42988,8 +42988,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750419, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308659, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -42999,14 +42999,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 750.4189014434814, + "msecs": 308.6590766906738, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.828952789307, - "thread": 140377768056576, + "relativeCreated": 14537.158012390137, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43014,8 +43014,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750481, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308757, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43025,14 +43025,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 750.4808902740479, + "msecs": 308.75706672668457, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.890941619873, - "thread": 140377768056576, + "relativeCreated": 14537.256002426147, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43041,8 +43041,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750528, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.308831, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43052,14 +43052,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 750.52809715271, + "msecs": 308.83097648620605, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14405.938148498535, - "thread": 140377768056576, + "relativeCreated": 14537.329912185669, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43067,8 +43067,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750594, + "asctime": "2021-01-14 00:26:05,308", + "created": 1610580365.30895, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43078,14 +43078,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 750.593900680542, + "msecs": 308.94994735717773, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.003952026367, - "thread": 140377768056576, + "relativeCreated": 14537.44888305664, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43094,8 +43094,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750649, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.309051, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43105,14 +43105,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 750.6489753723145, + "msecs": 309.0510368347168, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.05902671814, - "thread": 140377768056576, + "relativeCreated": 14537.54997253418, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43120,8 +43120,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750724, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.309218, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43131,14 +43131,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 750.7240772247314, + "msecs": 309.2179298400879, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.134128570557, - "thread": 140377768056576, + "relativeCreated": 14537.71686553955, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43146,8 +43146,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750782, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.309338, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43157,14 +43157,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 750.7820129394531, + "msecs": 309.3380928039551, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.192064285278, - "thread": 140377768056576, + "relativeCreated": 14537.837028503418, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43172,8 +43172,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750836, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.309424, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43183,14 +43183,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 750.8358955383301, + "msecs": 309.42392349243164, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.245946884155, - "thread": 140377768056576, + "relativeCreated": 14537.922859191895, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43199,8 +43199,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750887, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.309503, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43210,14 +43210,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 750.8869171142578, + "msecs": 309.50307846069336, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.296968460083, - "thread": 140377768056576, + "relativeCreated": 14538.002014160156, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43225,8 +43225,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:22,750", - "created": 1610361442.750986, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.309656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43236,14 +43236,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 750.9860992431641, + "msecs": 309.65590476989746, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.39615058899, - "thread": 140377768056576, + "relativeCreated": 14538.15484046936, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43254,25 +43254,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,751", - "created": 1610361442.751101, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.30983, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 751.101016998291, + "msecs": 309.8299503326416, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.511068344116, - "thread": 140377768056576, + "relativeCreated": 14538.328886032104, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43280,25 +43280,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:22,751", - "created": 1610361442.751165, + "asctime": "2021-01-14 00:26:05,309", + "created": 1610580365.309926, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 751.1649131774902, + "msecs": 309.92603302001953, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.574964523315, - "thread": 140377768056576, + "relativeCreated": 14538.424968719482, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43309,25 +43309,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,751", - "created": 1610361442.751246, + "asctime": "2021-01-14 00:26:05,310", + "created": 1610580365.310052, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 751.2459754943848, + "msecs": 310.05191802978516, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14406.65602684021, - "thread": 140377768056576, + "relativeCreated": 14538.550853729248, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43335,8 +43335,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752139, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316007, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43346,14 +43346,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 752.1390914916992, + "msecs": 316.0068988800049, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.549142837524, - "thread": 140377759663872, + "relativeCreated": 14544.505834579468, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43361,8 +43361,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752241, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316192, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43372,14 +43372,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 752.2408962249756, + "msecs": 316.1919116973877, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.6509475708, - "thread": 140377759663872, + "relativeCreated": 14544.69084739685, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43387,8 +43387,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752289, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316276, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43398,14 +43398,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 752.2890567779541, + "msecs": 316.27607345581055, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.69910812378, - "thread": 140377759663872, + "relativeCreated": 14544.775009155273, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43414,8 +43414,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752332, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316377, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43425,14 +43425,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.3319721221924, + "msecs": 316.3769245147705, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.742023468018, - "thread": 140377759663872, + "relativeCreated": 14544.875860214233, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43440,8 +43440,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752394, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316473, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43451,14 +43451,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 752.3939609527588, + "msecs": 316.47300720214844, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.804012298584, - "thread": 140377759663872, + "relativeCreated": 14544.971942901611, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43467,8 +43467,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752442, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316544, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43478,14 +43478,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.4418830871582, + "msecs": 316.5440559387207, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.851934432983, - "thread": 140377759663872, + "relativeCreated": 14545.042991638184, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43493,8 +43493,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752523, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316637, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43504,14 +43504,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 752.5229454040527, + "msecs": 316.6370391845703, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.932996749878, - "thread": 140377759663872, + "relativeCreated": 14545.135974884033, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43520,8 +43520,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752581, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316704, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43531,14 +43531,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.5808811187744, + "msecs": 316.70403480529785, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14407.9909324646, - "thread": 140377759663872, + "relativeCreated": 14545.20297050476, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43546,8 +43546,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752659, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316785, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43557,14 +43557,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 752.6590824127197, + "msecs": 316.7850971221924, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.069133758545, - "thread": 140377759663872, + "relativeCreated": 14545.284032821655, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43573,8 +43573,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752717, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316856, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43584,14 +43584,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.7170181274414, + "msecs": 316.85590744018555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.127069473267, - "thread": 140377759663872, + "relativeCreated": 14545.354843139648, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43599,8 +43599,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752814, + "asctime": "2021-01-14 00:26:05,316", + "created": 1610580365.316946, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43610,14 +43610,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 752.8140544891357, + "msecs": 316.94602966308594, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.224105834961, - "thread": 140377759663872, + "relativeCreated": 14545.444965362549, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43626,8 +43626,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.752873, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317011, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43637,14 +43637,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.8729438781738, + "msecs": 317.01111793518066, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.282995223999, - "thread": 140377759663872, + "relativeCreated": 14545.510053634644, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43652,8 +43652,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:22,752", - "created": 1610361442.75297, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317109, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43663,14 +43663,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 752.9699802398682, + "msecs": 317.1091079711914, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.380031585693, - "thread": 140377759663872, + "relativeCreated": 14545.608043670654, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43678,8 +43678,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:22,753", - "created": 1610361442.753032, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317211, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43689,14 +43689,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 753.0319690704346, + "msecs": 317.2109127044678, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.44202041626, - "thread": 140377759663872, + "relativeCreated": 14545.70984840393, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43704,8 +43704,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,753", - "created": 1610361442.753086, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317286, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43715,14 +43715,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 753.0860900878906, + "msecs": 317.28601455688477, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.496141433716, - "thread": 140377759663872, + "relativeCreated": 14545.784950256348, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43731,8 +43731,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,753", - "created": 1610361442.753137, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317357, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43742,14 +43742,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 753.1371116638184, + "msecs": 317.35706329345703, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.547163009644, - "thread": 140377759663872, + "relativeCreated": 14545.85599899292, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43757,8 +43757,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:22,753", - "created": 1610361442.753245, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317499, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -43768,14 +43768,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 753.2451152801514, + "msecs": 317.49892234802246, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.655166625977, - "thread": 140377759663872, + "relativeCreated": 14545.997858047485, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43786,25 +43786,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:22,753", - "created": 1610361442.753351, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317678, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 753.3509731292725, + "msecs": 317.67797470092773, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.761024475098, - "thread": 140377759663872, + "relativeCreated": 14546.17691040039, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -43812,43 +43812,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:22,753", - "created": 1610361442.753421, + "asctime": "2021-01-14 00:26:05,317", + "created": 1610580365.317792, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 753.4210681915283, + "msecs": 317.7919387817383, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14408.831119537354, - "thread": 140377759663872, + "relativeCreated": 14546.290874481201, + "thread": 140018123261696, "threadName": "Thread-24" } ], - "msecs": 92.87691116333008, + "msecs": 649.960994720459, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14748.286962509155, - "thread": 140379336402752, + "relativeCreated": 14878.459930419922, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.33945584297180176 + "time_consumption": 0.3321690559387207 }, { "args": [], - "asctime": "2021-01-11 11:37:23,093", - "created": 1610361443.093801, + "asctime": "2021-01-14 00:26:05,650", + "created": 1610580365.650984, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -43866,8 +43866,8 @@ "None", "0" ], - "asctime": "2021-01-11 11:37:23,093", - "created": 1610361443.093544, + "asctime": "2021-01-14 00:26:05,650", + "created": 1610580365.65068, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43877,32 +43877,32 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=None and DID=0", "module": "__init__", - "msecs": 93.54400634765625, + "msecs": 650.6800651550293, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14748.954057693481, - "thread": 140379336402752, + "relativeCreated": 14879.179000854492, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 93.80102157592773, + "msecs": 650.9840488433838, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14749.211072921753, - "thread": 140379336402752, + "relativeCreated": 14879.482984542847, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002570152282714844 + "time_consumption": 0.0003039836883544922 }, { "args": [], - "asctime": "2021-01-11 11:37:23,295", - "created": 1610361443.295979, + "asctime": "2021-01-14 00:26:05,852", + "created": 1610580365.852938, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -43921,25 +43921,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:23,094", - "created": 1610361443.094449, + "asctime": "2021-01-14 00:26:05,651", + "created": 1610580365.65153, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 94.44904327392578, + "msecs": 651.5300273895264, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14749.859094619751, - "thread": 140379336402752, + "relativeCreated": 14880.02896308899, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -43947,8 +43947,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:23,116", - "created": 1610361443.116817, + "asctime": "2021-01-14 00:26:05,675", + "created": 1610580365.675693, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43958,14 +43958,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 116.81699752807617, + "msecs": 675.6930351257324, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14772.227048873901, - "thread": 140377768056576, + "relativeCreated": 14904.191970825195, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43973,8 +43973,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:23,117", - "created": 1610361443.117561, + "asctime": "2021-01-14 00:26:05,676", + "created": 1610580365.676309, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43984,14 +43984,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 117.56110191345215, + "msecs": 676.3091087341309, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14772.971153259277, - "thread": 140377768056576, + "relativeCreated": 14904.808044433594, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -43999,8 +43999,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,117", - "created": 1610361443.117803, + "asctime": "2021-01-14 00:26:05,676", + "created": 1610580365.676563, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44010,14 +44010,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 117.80309677124023, + "msecs": 676.563024520874, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14773.213148117065, - "thread": 140377768056576, + "relativeCreated": 14905.061960220337, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44026,8 +44026,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,118", - "created": 1610361443.118027, + "asctime": "2021-01-14 00:26:05,676", + "created": 1610580365.676781, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44037,14 +44037,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 118.0269718170166, + "msecs": 676.7809391021729, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14773.437023162842, - "thread": 140377768056576, + "relativeCreated": 14905.279874801636, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44052,8 +44052,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,118", - "created": 1610361443.118305, + "asctime": "2021-01-14 00:26:05,677", + "created": 1610580365.677064, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44063,14 +44063,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 118.30496788024902, + "msecs": 677.0639419555664, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14773.715019226074, - "thread": 140377768056576, + "relativeCreated": 14905.56287765503, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44079,8 +44079,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,118", - "created": 1610361443.118565, + "asctime": "2021-01-14 00:26:05,677", + "created": 1610580365.677312, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44090,14 +44090,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 118.56508255004883, + "msecs": 677.311897277832, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14773.975133895874, - "thread": 140377768056576, + "relativeCreated": 14905.810832977295, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44105,8 +44105,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,118", - "created": 1610361443.118871, + "asctime": "2021-01-14 00:26:05,677", + "created": 1610580365.677687, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44116,14 +44116,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 118.87097358703613, + "msecs": 677.6869297027588, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14774.281024932861, - "thread": 140377768056576, + "relativeCreated": 14906.185865402222, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44132,8 +44132,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,119", - "created": 1610361443.119427, + "asctime": "2021-01-14 00:26:05,677", + "created": 1610580365.677951, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44143,14 +44143,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 119.42696571350098, + "msecs": 677.9510974884033, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14774.837017059326, - "thread": 140377768056576, + "relativeCreated": 14906.450033187866, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44158,8 +44158,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,119", - "created": 1610361443.119771, + "asctime": "2021-01-14 00:26:05,678", + "created": 1610580365.678259, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44169,14 +44169,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 119.77100372314453, + "msecs": 678.2588958740234, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14775.18105506897, - "thread": 140377768056576, + "relativeCreated": 14906.757831573486, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44185,8 +44185,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,120", - "created": 1610361443.1201, + "asctime": "2021-01-14 00:26:05,678", + "created": 1610580365.678485, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44196,14 +44196,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 120.10002136230469, + "msecs": 678.4849166870117, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14775.51007270813, - "thread": 140377768056576, + "relativeCreated": 14906.983852386475, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44211,8 +44211,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,120", - "created": 1610361443.120348, + "asctime": "2021-01-14 00:26:05,678", + "created": 1610580365.678814, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44222,14 +44222,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 120.34797668457031, + "msecs": 678.8139343261719, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14775.758028030396, - "thread": 140377768056576, + "relativeCreated": 14907.312870025635, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44238,8 +44238,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,120", - "created": 1610361443.120516, + "asctime": "2021-01-14 00:26:05,679", + "created": 1610580365.679045, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44249,14 +44249,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 120.51606178283691, + "msecs": 679.0449619293213, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14775.926113128662, - "thread": 140377768056576, + "relativeCreated": 14907.543897628784, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44264,8 +44264,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:23,120", - "created": 1610361443.120798, + "asctime": "2021-01-14 00:26:05,679", + "created": 1610580365.679408, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -44275,14 +44275,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 120.79811096191406, + "msecs": 679.408073425293, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14776.20816230774, - "thread": 140377768056576, + "relativeCreated": 14907.907009124756, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44290,8 +44290,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:23,121", - "created": 1610361443.121094, + "asctime": "2021-01-14 00:26:05,679", + "created": 1610580365.679901, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -44301,14 +44301,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 121.0939884185791, + "msecs": 679.9008846282959, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14776.504039764404, - "thread": 140377768056576, + "relativeCreated": 14908.399820327759, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44316,8 +44316,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,121", - "created": 1610361443.12128, + "asctime": "2021-01-14 00:26:05,680", + "created": 1610580365.680167, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44327,14 +44327,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 121.27995491027832, + "msecs": 680.1669597625732, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14776.690006256104, - "thread": 140377768056576, + "relativeCreated": 14908.665895462036, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44343,8 +44343,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,121", - "created": 1610361443.121468, + "asctime": "2021-01-14 00:26:05,680", + "created": 1610580365.680393, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44354,14 +44354,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 121.46806716918945, + "msecs": 680.3929805755615, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14776.878118515015, - "thread": 140377768056576, + "relativeCreated": 14908.891916275024, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44369,8 +44369,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:23,121", - "created": 1610361443.121886, + "asctime": "2021-01-14 00:26:05,680", + "created": 1610580365.680835, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44380,14 +44380,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 121.88601493835449, + "msecs": 680.8350086212158, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14777.29606628418, - "thread": 140377768056576, + "relativeCreated": 14909.333944320679, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44398,25 +44398,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:23,122", - "created": 1610361443.122284, + "asctime": "2021-01-14 00:26:05,681", + "created": 1610580365.681372, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 122.283935546875, + "msecs": 681.3719272613525, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14777.6939868927, - "thread": 140377768056576, + "relativeCreated": 14909.870862960815, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44424,25 +44424,25 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:23,122", - "created": 1610361443.122515, + "asctime": "2021-01-14 00:26:05,681", + "created": 1610580365.68168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 122.51496315002441, + "msecs": 681.6799640655518, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14777.92501449585, - "thread": 140377768056576, + "relativeCreated": 14910.178899765015, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44453,25 +44453,25 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:23,122", - "created": 1610361443.122873, + "asctime": "2021-01-14 00:26:05,682", + "created": 1610580365.682045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 122.87306785583496, + "msecs": 682.0449829101562, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14778.28311920166, - "thread": 140377768056576, + "relativeCreated": 14910.54391860962, + "thread": 140018131654400, "threadName": "Thread-23" }, { @@ -44479,8 +44479,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:23,154", - "created": 1610361443.154935, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684491, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -44490,14 +44490,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 154.93488311767578, + "msecs": 684.4909191131592, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14810.344934463501, - "thread": 140377759663872, + "relativeCreated": 14912.989854812622, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44505,8 +44505,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:23,155", - "created": 1610361443.155551, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684617, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -44516,14 +44516,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 155.55095672607422, + "msecs": 684.6170425415039, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14810.9610080719, - "thread": 140377759663872, + "relativeCreated": 14913.115978240967, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44531,8 +44531,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,155", - "created": 1610361443.15575, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684675, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44542,14 +44542,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 155.75003623962402, + "msecs": 684.6749782562256, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14811.16008758545, - "thread": 140377759663872, + "relativeCreated": 14913.173913955688, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44558,8 +44558,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,155", - "created": 1610361443.155915, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684737, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44569,14 +44569,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.9150218963623, + "msecs": 684.736967086792, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14811.325073242188, - "thread": 140377759663872, + "relativeCreated": 14913.235902786255, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44584,8 +44584,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,156", - "created": 1610361443.156105, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44595,14 +44595,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 156.10504150390625, + "msecs": 684.8020553588867, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14811.515092849731, - "thread": 140377759663872, + "relativeCreated": 14913.30099105835, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44611,8 +44611,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,156", - "created": 1610361443.156266, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684853, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44622,14 +44622,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 156.2659740447998, + "msecs": 684.8530769348145, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14811.676025390625, - "thread": 140377759663872, + "relativeCreated": 14913.352012634277, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44637,8 +44637,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,156", - "created": 1610361443.15647, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684923, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44648,14 +44648,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 156.47006034851074, + "msecs": 684.9229335784912, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14811.880111694336, - "thread": 140377759663872, + "relativeCreated": 14913.421869277954, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44664,8 +44664,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,156", - "created": 1610361443.156612, + "asctime": "2021-01-14 00:26:05,684", + "created": 1610580365.684975, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44675,14 +44675,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 156.61191940307617, + "msecs": 684.9749088287354, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14812.021970748901, - "thread": 140377759663872, + "relativeCreated": 14913.473844528198, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44690,8 +44690,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,156", - "created": 1610361443.156859, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685036, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44701,14 +44701,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 156.8589210510254, + "msecs": 685.0359439849854, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14812.26897239685, - "thread": 140377759663872, + "relativeCreated": 14913.534879684448, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44717,8 +44717,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,157", - "created": 1610361443.157094, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685084, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44728,14 +44728,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 157.09400177001953, + "msecs": 685.0841045379639, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14812.504053115845, - "thread": 140377759663872, + "relativeCreated": 14913.583040237427, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44743,8 +44743,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,157", - "created": 1610361443.157292, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685159, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44754,14 +44754,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 157.29188919067383, + "msecs": 685.1589679718018, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14812.701940536499, - "thread": 140377759663872, + "relativeCreated": 14913.657903671265, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44770,8 +44770,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,157", - "created": 1610361443.157473, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685211, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44781,14 +44781,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 157.47308731079102, + "msecs": 685.2109432220459, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14812.883138656616, - "thread": 140377759663872, + "relativeCreated": 14913.709878921509, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44796,8 +44796,8 @@ "comm-server:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:23,157", - "created": 1610361443.157758, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685293, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -44807,14 +44807,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 157.75799751281738, + "msecs": 685.2929592132568, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14813.168048858643, - "thread": 140377759663872, + "relativeCreated": 14913.79189491272, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44822,8 +44822,8 @@ "comm-client:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:23,158", - "created": 1610361443.158041, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685375, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -44833,14 +44833,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 158.04100036621094, + "msecs": 685.3749752044678, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14813.451051712036, - "thread": 140377759663872, + "relativeCreated": 14913.87391090393, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44848,8 +44848,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,158", - "created": 1610361443.158274, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685461, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44859,14 +44859,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 158.27393531799316, + "msecs": 685.4610443115234, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14813.683986663818, - "thread": 140377759663872, + "relativeCreated": 14913.959980010986, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44875,8 +44875,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,158", - "created": 1610361443.158478, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685511, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44886,14 +44886,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 158.4780216217041, + "msecs": 685.5111122131348, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14813.88807296753, - "thread": 140377759663872, + "relativeCreated": 14914.010047912598, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44901,8 +44901,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" ], - "asctime": "2021-01-11 11:37:23,158", - "created": 1610361443.158889, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685616, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -44912,14 +44912,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", "module": "stp", - "msecs": 158.8890552520752, + "msecs": 685.6160163879395, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14814.2991065979, - "thread": 140377759663872, + "relativeCreated": 14914.114952087402, + "thread": 140018123261696, "threadName": "Thread-24" }, { @@ -44930,71 +44930,71 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:23,159", - "created": 1610361443.159552, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685724, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 159.55209732055664, + "msecs": 685.7240200042725, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14814.962148666382, - "thread": 140377759663872, + "relativeCreated": 14914.222955703735, + "thread": 140018123261696, "threadName": "Thread-24" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,159", - "created": 1610361443.159856, + "asctime": "2021-01-14 00:26:05,685", + "created": 1610580365.685802, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 159.85608100891113, + "msecs": 685.8019828796387, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14815.266132354736, - "thread": 140377759663872, + "relativeCreated": 14914.300918579102, + "thread": 140018123261696, "threadName": "Thread-24" } ], - "msecs": 295.9790229797363, + "msecs": 852.9379367828369, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14951.389074325562, - "thread": 140379336402752, + "relativeCreated": 15081.4368724823, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.1361229419708252 + "time_consumption": 0.16713595390319824 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,297", - "created": 1610361443.297353, + "asctime": "2021-01-14 00:26:05,854", + "created": 1610580365.854779, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45011,8 +45011,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,296", - "created": 1610361443.296765, + "asctime": "2021-01-14 00:26:05,854", + "created": 1610580365.854233, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45022,14 +45022,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 296.7650890350342, + "msecs": 854.2330265045166, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14952.17514038086, - "thread": 140379336402752, + "relativeCreated": 15082.73196220398, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45038,8 +45038,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,297", - "created": 1610361443.297061, + "asctime": "2021-01-14 00:26:05,854", + "created": 1610580365.854513, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45049,35 +45049,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 297.0609664916992, + "msecs": 854.5129299163818, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14952.471017837524, - "thread": 140379336402752, + "relativeCreated": 15083.011865615845, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 297.35302925109863, + "msecs": 854.7790050506592, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14952.763080596924, - "thread": 140379336402752, + "relativeCreated": 15083.277940750122, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00029206275939941406 + "time_consumption": 0.00026607513427734375 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,298", - "created": 1610361443.298545, + "asctime": "2021-01-14 00:26:05,855", + "created": 1610580365.855594, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45094,8 +45094,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,298", - "created": 1610361443.298012, + "asctime": "2021-01-14 00:26:05,855", + "created": 1610580365.855159, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45105,14 +45105,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 298.01201820373535, + "msecs": 855.1590442657471, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14953.42206954956, - "thread": 140379336402752, + "relativeCreated": 15083.65797996521, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45121,8 +45121,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,298", - "created": 1610361443.298274, + "asctime": "2021-01-14 00:26:05,855", + "created": 1610580365.85537, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45132,39 +45132,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 298.27404022216797, + "msecs": 855.370044708252, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14953.684091567993, - "thread": 140379336402752, + "relativeCreated": 15083.868980407715, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 298.54488372802734, + "msecs": 855.5939197540283, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14953.954935073853, - "thread": 140379336402752, + "relativeCreated": 15084.092855453491, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.000270843505859375 + "time_consumption": 0.0002238750457763672 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.5591528415679932, - "time_finished": "2021-01-11 11:37:23,298", - "time_start": "2021-01-11 11:37:22,739" + "time_consumption": 0.5595779418945312, + "time_finished": "2021-01-14 00:26:05,855", + "time_start": "2021-01-14 00:26:05,296" }, "_YhmzIE4lEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:26,904", - "created": 1610361446.904303, + "asctime": "2021-01-14 00:26:09,470", + "created": 1610580369.470612, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45175,18 +45175,18 @@ "message": "_YhmzIE4lEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 904.3030738830566, + "msecs": 470.6120491027832, "msg": "_YhmzIE4lEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18559.713125228882, + "relativeCreated": 18699.110984802246, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:26,912", - "created": 1610361446.912475, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481141, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -45201,8 +45201,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,905", - "created": 1610361446.905381, + "asctime": "2021-01-14 00:26:09,471", + "created": 1610580369.471971, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45212,22 +45212,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 905.3809642791748, + "msecs": 471.9710350036621, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18560.791015625, - "thread": 140379336402752, + "relativeCreated": 18700.469970703125, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,905", - "created": 1610361446.905991, + "asctime": "2021-01-14 00:26:09,473", + "created": 1610580369.473245, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45237,22 +45237,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 905.9910774230957, + "msecs": 473.24490547180176, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18561.40112876892, - "thread": 140379336402752, + "relativeCreated": 18701.743841171265, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,906", - "created": 1610361446.906155, + "asctime": "2021-01-14 00:26:09,473", + "created": 1610580369.473684, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45262,39 +45262,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 906.1551094055176, + "msecs": 473.68407249450684, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18561.565160751343, - "thread": 140379336402752, + "relativeCreated": 18702.18300819397, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,906", - "created": 1610361446.906551, + "asctime": "2021-01-14 00:26:09,474", + "created": 1610580369.474379, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 906.5508842468262, + "msecs": 474.3790626525879, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18561.96093559265, - "thread": 140379336402752, + "relativeCreated": 18702.87799835205, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45303,25 +45303,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:26,906", - "created": 1610361446.9067, + "asctime": "2021-01-14 00:26:09,474", + "created": 1610580369.474833, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 906.6998958587646, + "msecs": 474.83301162719727, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18562.10994720459, - "thread": 140379336402752, + "relativeCreated": 18703.33194732666, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45329,25 +45329,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,906", - "created": 1610361446.906964, + "asctime": "2021-01-14 00:26:09,475", + "created": 1610580369.475157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 906.9640636444092, + "msecs": 475.1570224761963, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18562.374114990234, - "thread": 140379336402752, + "relativeCreated": 18703.65595817566, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45355,25 +45355,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.90709, + "asctime": "2021-01-14 00:26:09,475", + "created": 1610580369.47545, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 907.0899486541748, + "msecs": 475.4500389099121, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18562.5, - "thread": 140379336402752, + "relativeCreated": 18703.948974609375, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45381,25 +45381,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.907204, + "asctime": "2021-01-14 00:26:09,475", + "created": 1610580369.47564, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 907.2039127349854, + "msecs": 475.64005851745605, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18562.61396408081, - "thread": 140379336402752, + "relativeCreated": 18704.13899421692, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45407,25 +45407,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.907311, + "asctime": "2021-01-14 00:26:09,475", + "created": 1610580369.475845, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 907.310962677002, + "msecs": 475.8450984954834, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18562.721014022827, - "thread": 140379336402752, + "relativeCreated": 18704.344034194946, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45435,8 +45435,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.907448, + "asctime": "2021-01-14 00:26:09,476", + "created": 1610580369.476137, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45446,14 +45446,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 907.4480533599854, + "msecs": 476.1369228363037, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18562.85810470581, - "thread": 140379336402752, + "relativeCreated": 18704.635858535767, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45463,8 +45463,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.907574, + "asctime": "2021-01-14 00:26:09,476", + "created": 1610580369.476406, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45474,14 +45474,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 907.573938369751, + "msecs": 476.4060974121094, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18562.983989715576, - "thread": 140379336402752, + "relativeCreated": 18704.905033111572, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45491,8 +45491,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.907703, + "asctime": "2021-01-14 00:26:09,476", + "created": 1610580369.476682, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45502,14 +45502,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 907.7029228210449, + "msecs": 476.6819477081299, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18563.11297416687, - "thread": 140379336402752, + "relativeCreated": 18705.180883407593, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45519,8 +45519,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.907844, + "asctime": "2021-01-14 00:26:09,476", + "created": 1610580369.476952, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45530,39 +45530,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 907.844066619873, + "msecs": 476.95207595825195, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18563.2541179657, - "thread": 140379336402752, + "relativeCreated": 18705.451011657715, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,907", - "created": 1610361446.907946, + "asctime": "2021-01-14 00:26:09,477", + "created": 1610580369.477199, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 907.9461097717285, + "msecs": 477.1990776062012, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18563.356161117554, - "thread": 140379336402752, + "relativeCreated": 18705.698013305664, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45571,25 +45571,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:26,908", - "created": 1610361446.908082, + "asctime": "2021-01-14 00:26:09,477", + "created": 1610580369.477374, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 908.0820083618164, + "msecs": 477.3740768432617, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18563.49205970764, - "thread": 140379336402752, + "relativeCreated": 18705.873012542725, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45597,25 +45597,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:26,908", - "created": 1610361446.908218, + "asctime": "2021-01-14 00:26:09,477", + "created": 1610580369.477556, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 908.2179069519043, + "msecs": 477.5559902191162, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18563.62795829773, - "thread": 140379336402752, + "relativeCreated": 18706.05492591858, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45623,25 +45623,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:26,908", - "created": 1610361446.908353, + "asctime": "2021-01-14 00:26:09,477", + "created": 1610580369.477714, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 908.3530902862549, + "msecs": 477.71406173706055, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18563.76314163208, - "thread": 140379336402752, + "relativeCreated": 18706.212997436523, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45651,8 +45651,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:26,908", - "created": 1610361446.908498, + "asctime": "2021-01-14 00:26:09,477", + "created": 1610580369.477989, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45662,14 +45662,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 908.4980487823486, + "msecs": 477.98895835876465, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18563.908100128174, - "thread": 140379336402752, + "relativeCreated": 18706.487894058228, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45679,8 +45679,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:26,908", - "created": 1610361446.908788, + "asctime": "2021-01-14 00:26:09,478", + "created": 1610580369.478256, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45690,14 +45690,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 908.7879657745361, + "msecs": 478.2559871673584, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18564.19801712036, - "thread": 140379336402752, + "relativeCreated": 18706.75492286682, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45706,25 +45706,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:26,908", - "created": 1610361446.908967, + "asctime": "2021-01-14 00:26:09,478", + "created": 1610580369.478465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 908.9670181274414, + "msecs": 478.46508026123047, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18564.377069473267, - "thread": 140379336402752, + "relativeCreated": 18706.964015960693, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45733,25 +45733,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:26,909", - "created": 1610361446.909098, + "asctime": "2021-01-14 00:26:09,478", + "created": 1610580369.478651, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 909.0979099273682, + "msecs": 478.6510467529297, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18564.507961273193, - "thread": 140379336402752, + "relativeCreated": 18707.149982452393, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45760,75 +45760,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:26,909", - "created": 1610361446.909209, + "asctime": "2021-01-14 00:26:09,478", + "created": 1610580369.478828, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 909.2090129852295, + "msecs": 478.82795333862305, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18564.619064331055, - "thread": 140379336402752, + "relativeCreated": 18707.326889038086, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,909", - "created": 1610361446.909319, + "asctime": "2021-01-14 00:26:09,478", + "created": 1610580369.478994, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 909.3189239501953, + "msecs": 478.99389266967773, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18564.72897529602, - "thread": 140379336402752, + "relativeCreated": 18707.49282836914, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,909", - "created": 1610361446.909581, + "asctime": "2021-01-14 00:26:09,479", + "created": 1610580369.479502, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 909.5809459686279, + "msecs": 479.50196266174316, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18564.990997314453, - "thread": 140379336402752, + "relativeCreated": 18708.000898361206, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45837,25 +45837,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:26,910", - "created": 1610361446.910101, + "asctime": "2021-01-14 00:26:09,479", + "created": 1610580369.479584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 910.1009368896484, + "msecs": 479.5839786529541, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18565.510988235474, - "thread": 140379336402752, + "relativeCreated": 18708.082914352417, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45863,25 +45863,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,910", - "created": 1610361446.910266, + "asctime": "2021-01-14 00:26:09,479", + "created": 1610580369.479911, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 910.2659225463867, + "msecs": 479.91108894348145, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18565.675973892212, - "thread": 140379336402752, + "relativeCreated": 18708.410024642944, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45889,25 +45889,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,910", - "created": 1610361446.910394, + "asctime": "2021-01-14 00:26:09,479", + "created": 1610580369.479985, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 910.3939533233643, + "msecs": 479.98499870300293, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18565.80400466919, - "thread": 140379336402752, + "relativeCreated": 18708.483934402466, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45915,25 +45915,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:26,910", - "created": 1610361446.910515, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480054, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 910.5150699615479, + "msecs": 480.0539016723633, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18565.925121307373, - "thread": 140379336402752, + "relativeCreated": 18708.552837371826, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45941,25 +45941,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:26,910", - "created": 1610361446.910632, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480135, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 910.6318950653076, + "msecs": 480.1349639892578, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.041946411133, - "thread": 140379336402752, + "relativeCreated": 18708.63389968872, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45969,8 +45969,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:26,910", - "created": 1610361446.910759, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480195, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -45980,14 +45980,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 910.7589721679688, + "msecs": 480.1950454711914, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.169023513794, - "thread": 140379336402752, + "relativeCreated": 18708.693981170654, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -45997,8 +45997,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:26,910", - "created": 1610361446.910885, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480253, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46008,14 +46008,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 910.8850955963135, + "msecs": 480.2529811859131, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.29514694214, - "thread": 140379336402752, + "relativeCreated": 18708.751916885376, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46025,8 +46025,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.91101, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480309, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46036,14 +46036,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 911.0100269317627, + "msecs": 480.30900955200195, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.420078277588, - "thread": 140379336402752, + "relativeCreated": 18708.807945251465, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46053,8 +46053,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.911143, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480365, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46064,39 +46064,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 911.1430644989014, + "msecs": 480.3650379180908, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.553115844727, - "thread": 140379336402752, + "relativeCreated": 18708.863973617554, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.911261, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.48042, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 911.2610816955566, + "msecs": 480.4201126098633, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.671133041382, - "thread": 140379336402752, + "relativeCreated": 18708.919048309326, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46105,25 +46105,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.911392, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480484, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 911.3919734954834, + "msecs": 480.4840087890625, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.80202484131, - "thread": 140379336402752, + "relativeCreated": 18708.982944488525, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46131,25 +46131,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.91153, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480549, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 911.5300178527832, + "msecs": 480.5490970611572, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18566.94006919861, - "thread": 140379336402752, + "relativeCreated": 18709.04803276062, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46157,25 +46157,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.911665, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480625, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 911.6649627685547, + "msecs": 480.6249141693115, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.07501411438, - "thread": 140379336402752, + "relativeCreated": 18709.123849868774, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46185,8 +46185,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.911783, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480705, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46196,14 +46196,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 911.78297996521, + "msecs": 480.70502281188965, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.193031311035, - "thread": 140379336402752, + "relativeCreated": 18709.203958511353, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46213,8 +46213,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:26,911", - "created": 1610361446.911905, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480787, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46224,14 +46224,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 911.90505027771, + "msecs": 480.7870388031006, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.315101623535, - "thread": 140379336402752, + "relativeCreated": 18709.285974502563, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46240,25 +46240,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:26,912", - "created": 1610361446.912025, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480866, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 912.024974822998, + "msecs": 480.8659553527832, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.435026168823, - "thread": 140379336402752, + "relativeCreated": 18709.364891052246, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46267,25 +46267,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:26,912", - "created": 1610361446.912134, + "asctime": "2021-01-14 00:26:09,480", + "created": 1610580369.480941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 912.1339321136475, + "msecs": 480.9410572052002, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.543983459473, - "thread": 140379336402752, + "relativeCreated": 18709.439992904663, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46294,68 +46294,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:26,912", - "created": 1610361446.912249, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.48101, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 912.2490882873535, + "msecs": 481.00996017456055, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.65913963318, - "thread": 140379336402752, + "relativeCreated": 18709.508895874023, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,912", - "created": 1610361446.912359, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481072, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 912.3589992523193, + "msecs": 481.07194900512695, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.769050598145, - "thread": 140379336402752, + "relativeCreated": 18709.57088470459, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 912.4751091003418, + "msecs": 481.1410903930664, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18567.885160446167, - "thread": 140379336402752, + "relativeCreated": 18709.64002609253, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00011610984802246094 + "time_consumption": 6.914138793945312e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:27,256", - "created": 1610361447.256901, + "asctime": "2021-01-14 00:26:09,824", + "created": 1610580369.824885, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -46370,8 +46370,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,912", - "created": 1610361446.912784, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481285, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46381,22 +46381,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 912.7840995788574, + "msecs": 481.28509521484375, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18568.194150924683, - "thread": 140379336402752, + "relativeCreated": 18709.784030914307, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,912", - "created": 1610361446.912898, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481335, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46406,39 +46406,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 912.898063659668, + "msecs": 481.334924697876, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18568.308115005493, - "thread": 140379336402752, + "relativeCreated": 18709.83386039734, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,913", - "created": 1610361446.913, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481382, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 913.0001068115234, + "msecs": 481.381893157959, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18568.41015815735, - "thread": 140379336402752, + "relativeCreated": 18709.880828857422, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46449,33 +46449,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,913", - "created": 1610361446.913161, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481461, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 913.161039352417, + "msecs": 481.4610481262207, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18568.571090698242, - "thread": 140379336402752, + "relativeCreated": 18709.959983825684, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,913", - "created": 1610361446.913408, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481579, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46485,22 +46485,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 913.4080410003662, + "msecs": 481.579065322876, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18568.81809234619, - "thread": 140379336402752, + "relativeCreated": 18710.07800102234, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,913", - "created": 1610361446.913521, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.481633, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46510,39 +46510,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 913.5210514068604, + "msecs": 481.63294792175293, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18568.931102752686, - "thread": 140379336402752, + "relativeCreated": 18710.131883621216, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,913", - "created": 1610361446.913628, + "asctime": "2021-01-14 00:26:09,481", + "created": 1610580369.48168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 913.628101348877, + "msecs": 481.67991638183594, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18569.038152694702, - "thread": 140379336402752, + "relativeCreated": 18710.1788520813, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -46550,8 +46550,8 @@ "comm-client:", "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" ], - "asctime": "2021-01-11 11:37:26,917", - "created": 1610361446.917926, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.483453, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46561,14 +46561,14 @@ "lineno": 284, "message": "comm-client: TX -> (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", "module": "__init__", - "msecs": 917.9260730743408, + "msecs": 483.45303535461426, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18573.336124420166, - "thread": 140376979535616, + "relativeCreated": 18711.951971054077, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46576,8 +46576,8 @@ "comm-server:", "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918049, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.483545, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46587,14 +46587,14 @@ "lineno": 414, "message": "comm-server: RX <- (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", "module": "__init__", - "msecs": 918.0490970611572, + "msecs": 483.54506492614746, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18573.459148406982, - "thread": 140376979535616, + "relativeCreated": 18712.04400062561, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46602,8 +46602,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918127, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.483598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46613,14 +46613,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 918.1270599365234, + "msecs": 483.597993850708, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18573.53711128235, - "thread": 140376979535616, + "relativeCreated": 18712.09692955017, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46629,8 +46629,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918205, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.483654, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46640,14 +46640,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 918.2050228118896, + "msecs": 483.6540222167969, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18573.615074157715, - "thread": 140376979535616, + "relativeCreated": 18712.15295791626, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46655,8 +46655,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918308, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.483728, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46666,14 +46666,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 918.3080196380615, + "msecs": 483.72793197631836, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18573.718070983887, - "thread": 140376979535616, + "relativeCreated": 18712.22686767578, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46682,8 +46682,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918378, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.48378, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46693,14 +46693,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 918.3781147003174, + "msecs": 483.7799072265625, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18573.788166046143, - "thread": 140376979535616, + "relativeCreated": 18712.278842926025, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46708,8 +46708,8 @@ "STP:", "(17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13" ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918479, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.483846, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46719,14 +46719,14 @@ "lineno": 148, "message": "STP: message identified - (17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13", "module": "stp", - "msecs": 918.4789657592773, + "msecs": 483.84594917297363, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18573.889017105103, - "thread": 140376979535616, + "relativeCreated": 18712.344884872437, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46737,25 +46737,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918656, + "asctime": "2021-01-14 00:26:09,483", + "created": 1610580369.483967, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 918.6561107635498, + "msecs": 483.9670658111572, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18574.066162109375, - "thread": 140376979535616, + "relativeCreated": 18712.46600151062, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46763,25 +46763,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918784, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.48403, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 918.7839031219482, + "msecs": 484.03000831604004, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18574.193954467773, - "thread": 140376979535616, + "relativeCreated": 18712.528944015503, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46792,25 +46792,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,918", - "created": 1610361446.918944, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484114, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 918.9438819885254, + "msecs": 484.1139316558838, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18574.35393333435, - "thread": 140376979535616, + "relativeCreated": 18712.612867355347, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -46818,8 +46818,8 @@ "comm-server:", "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" ], - "asctime": "2021-01-11 11:37:26,919", - "created": 1610361446.919298, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484323, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46829,14 +46829,14 @@ "lineno": 284, "message": "comm-server: TX -> (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", "module": "__init__", - "msecs": 919.2979335784912, + "msecs": 484.32302474975586, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18574.707984924316, - "thread": 140376971142912, + "relativeCreated": 18712.82196044922, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -46844,8 +46844,8 @@ "comm-client:", "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" ], - "asctime": "2021-01-11 11:37:26,919", - "created": 1610361446.919428, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484429, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46855,14 +46855,14 @@ "lineno": 414, "message": "comm-client: RX <- (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", "module": "__init__", - "msecs": 919.4281101226807, + "msecs": 484.42888259887695, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18574.838161468506, - "thread": 140376971142912, + "relativeCreated": 18712.92781829834, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -46870,8 +46870,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,919", - "created": 1610361446.919506, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484496, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46881,14 +46881,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 919.5060729980469, + "msecs": 484.4961166381836, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18574.916124343872, - "thread": 140376971142912, + "relativeCreated": 18712.995052337646, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -46897,8 +46897,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:26,919", - "created": 1610361446.919578, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484563, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46908,14 +46908,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 919.5780754089355, + "msecs": 484.56311225891113, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18574.98812675476, - "thread": 140376971142912, + "relativeCreated": 18713.062047958374, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -46923,8 +46923,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,919", - "created": 1610361446.91969, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484654, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46934,14 +46934,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 919.6898937225342, + "msecs": 484.6539497375488, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18575.09994506836, - "thread": 140376971142912, + "relativeCreated": 18713.15288543701, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -46950,8 +46950,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:26,919", - "created": 1610361446.919761, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484717, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46961,14 +46961,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 919.7609424591064, + "msecs": 484.71689224243164, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18575.17099380493, - "thread": 140376971142912, + "relativeCreated": 18713.215827941895, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -46976,8 +46976,8 @@ "STP:", "(17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12" ], - "asctime": "2021-01-11 11:37:26,919", - "created": 1610361446.919855, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484795, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -46987,14 +46987,14 @@ "lineno": 148, "message": "STP: message identified - (17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12", "module": "stp", - "msecs": 919.8551177978516, + "msecs": 484.79509353637695, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18575.265169143677, - "thread": 140376971142912, + "relativeCreated": 18713.29402923584, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47005,25 +47005,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,920", - "created": 1610361446.920033, + "asctime": "2021-01-14 00:26:09,484", + "created": 1610580369.484934, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 920.0329780578613, + "msecs": 484.93409156799316, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18575.443029403687, - "thread": 140376971142912, + "relativeCreated": 18713.433027267456, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47031,43 +47031,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:26,920", - "created": 1610361446.920139, + "asctime": "2021-01-14 00:26:09,485", + "created": 1610580369.485009, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 920.1390743255615, + "msecs": 485.00895500183105, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18575.549125671387, - "thread": 140376971142912, + "relativeCreated": 18713.507890701294, + "thread": 140017334740736, "threadName": "Thread-36" } ], - "msecs": 256.9010257720947, + "msecs": 824.8848915100098, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18912.31107711792, - "thread": 140379336402752, + "relativeCreated": 19053.383827209473, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3367619514465332 + "time_consumption": 0.3398759365081787 }, { "args": [], - "asctime": "2021-01-11 11:37:27,459", - "created": 1610361447.459012, + "asctime": "2021-01-14 00:26:10,027", + "created": 1610580370.027935, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -47086,25 +47086,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:27,257", - "created": 1610361447.257654, + "asctime": "2021-01-14 00:26:09,826", + "created": 1610580369.826148, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 257.65395164489746, + "msecs": 826.1480331420898, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18913.064002990723, - "thread": 140379336402752, + "relativeCreated": 19054.646968841553, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -47112,8 +47112,8 @@ "comm-client:", "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-11 11:37:27,284", - "created": 1610361447.284505, + "asctime": "2021-01-14 00:26:09,850", + "created": 1610580369.850089, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -47123,14 +47123,14 @@ "lineno": 284, "message": "comm-client: TX -> (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 284.50489044189453, + "msecs": 850.0890731811523, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18939.91494178772, - "thread": 140376979535616, + "relativeCreated": 19078.588008880615, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -47138,8 +47138,8 @@ "comm-server:", "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-11 11:37:27,285", - "created": 1610361447.285216, + "asctime": "2021-01-14 00:26:09,850", + "created": 1610580369.850717, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -47149,14 +47149,14 @@ "lineno": 414, "message": "comm-server: RX <- (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 285.2160930633545, + "msecs": 850.7170677185059, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18940.62614440918, - "thread": 140376979535616, + "relativeCreated": 19079.21600341797, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -47164,8 +47164,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:27,285", - "created": 1610361447.28545, + "asctime": "2021-01-14 00:26:09,851", + "created": 1610580369.851202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47175,14 +47175,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 285.4499816894531, + "msecs": 851.2020111083984, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18940.86003303528, - "thread": 140376979535616, + "relativeCreated": 19079.70094680786, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -47191,8 +47191,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:27,285", - "created": 1610361447.285634, + "asctime": "2021-01-14 00:26:09,851", + "created": 1610580369.851467, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47202,14 +47202,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 285.63404083251953, + "msecs": 851.4668941497803, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18941.044092178345, - "thread": 140376979535616, + "relativeCreated": 19079.965829849243, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -47217,8 +47217,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:27,285", - "created": 1610361447.285985, + "asctime": "2021-01-14 00:26:09,851", + "created": 1610580369.851995, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47228,14 +47228,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 285.98499298095703, + "msecs": 851.9949913024902, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18941.395044326782, - "thread": 140376979535616, + "relativeCreated": 19080.493927001953, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -47244,8 +47244,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:27,286", - "created": 1610361447.286191, + "asctime": "2021-01-14 00:26:09,852", + "created": 1610580369.852239, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47255,14 +47255,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 286.1909866333008, + "msecs": 852.2388935089111, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18941.601037979126, - "thread": 140376979535616, + "relativeCreated": 19080.737829208374, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -47270,8 +47270,8 @@ "STP:", "(41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d" ], - "asctime": "2021-01-11 11:37:27,286", - "created": 1610361447.286576, + "asctime": "2021-01-14 00:26:09,852", + "created": 1610580369.852686, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47281,14 +47281,14 @@ "lineno": 148, "message": "STP: message identified - (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", "module": "stp", - "msecs": 286.5760326385498, + "msecs": 852.6859283447266, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18941.986083984375, - "thread": 140376979535616, + "relativeCreated": 19081.18486404419, + "thread": 140017343133440, "threadName": "Thread-35" }, { @@ -47299,71 +47299,71 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:27,287", - "created": 1610361447.287453, + "asctime": "2021-01-14 00:26:09,853", + "created": 1610580369.853291, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 287.45293617248535, + "msecs": 853.2910346984863, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18942.86298751831, - "thread": 140376979535616, + "relativeCreated": 19081.78997039795, + "thread": 140017343133440, "threadName": "Thread-35" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:27,287", - "created": 1610361447.287883, + "asctime": "2021-01-14 00:26:09,853", + "created": 1610580369.853557, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 287.88304328918457, + "msecs": 853.5571098327637, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18943.29309463501, - "thread": 140376979535616, + "relativeCreated": 19082.056045532227, + "thread": 140017343133440, "threadName": "Thread-35" } ], - "msecs": 459.0120315551758, + "msecs": 27.935028076171875, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19114.422082901, - "thread": 140379336402752, + "relativeCreated": 19256.433963775635, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.1711289882659912 + "time_consumption": 0.1743779182434082 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:27,460", - "created": 1610361447.460141, + "asctime": "2021-01-14 00:26:10,029", + "created": 1610580370.029605, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47380,8 +47380,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:27,459", - "created": 1610361447.459668, + "asctime": "2021-01-14 00:26:10,028", + "created": 1610580370.028574, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47391,14 +47391,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 459.6679210662842, + "msecs": 28.573989868164062, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19115.07797241211, - "thread": 140379336402752, + "relativeCreated": 19257.072925567627, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -47407,8 +47407,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:27,459", - "created": 1610361447.459917, + "asctime": "2021-01-14 00:26:10,029", + "created": 1610580370.029288, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47418,35 +47418,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 459.9170684814453, + "msecs": 29.288053512573242, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19115.32711982727, - "thread": 140379336402752, + "relativeCreated": 19257.786989212036, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 460.1409435272217, + "msecs": 29.60491180419922, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19115.550994873047, - "thread": 140379336402752, + "relativeCreated": 19258.103847503662, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002238750457763672 + "time_consumption": 0.00031685829162597656 }, { "args": [ "{'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:27,461", - "created": 1610361447.46134, + "asctime": "2021-01-14 00:26:10,030", + "created": 1610580370.030578, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47463,8 +47463,8 @@ "{'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:27,460", - "created": 1610361447.460894, + "asctime": "2021-01-14 00:26:10,030", + "created": 1610580370.030073, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47474,14 +47474,14 @@ "lineno": 22, "message": "Result (Received message on server side): {'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 460.8941078186035, + "msecs": 30.072927474975586, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19116.30415916443, - "thread": 140379336402752, + "relativeCreated": 19258.57186317444, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -47490,8 +47490,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:27,461", - "created": 1610361447.461137, + "asctime": "2021-01-14 00:26:10,030", + "created": 1610580370.030331, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47501,32 +47501,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 461.137056350708, + "msecs": 30.330896377563477, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19116.547107696533, - "thread": 140379336402752, + "relativeCreated": 19258.829832077026, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 461.33995056152344, + "msecs": 30.577898025512695, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19116.75000190735, - "thread": 140379336402752, + "relativeCreated": 19259.076833724976, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002028942108154297 + "time_consumption": 0.00024700164794921875 }, { "args": [], - "asctime": "2021-01-11 11:37:27,663", - "created": 1610361447.663339, + "asctime": "2021-01-14 00:26:10,232", + "created": 1610580370.232435, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -47545,25 +47545,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:27,461", - "created": 1610361447.461819, + "asctime": "2021-01-14 00:26:10,031", + "created": 1610580370.031147, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 461.8189334869385, + "msecs": 31.147003173828125, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19117.228984832764, - "thread": 140379336402752, + "relativeCreated": 19259.64593887329, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -47571,8 +47571,8 @@ "comm-server:", "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" ], - "asctime": "2021-01-11 11:37:27,485", - "created": 1610361447.485326, + "asctime": "2021-01-14 00:26:10,051", + "created": 1610580370.051818, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -47582,14 +47582,14 @@ "lineno": 284, "message": "comm-server: TX -> (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", "module": "__init__", - "msecs": 485.32605171203613, + "msecs": 51.817893981933594, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19140.73610305786, - "thread": 140376971142912, + "relativeCreated": 19280.316829681396, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47597,8 +47597,8 @@ "comm-client:", "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" ], - "asctime": "2021-01-11 11:37:27,485", - "created": 1610361447.48577, + "asctime": "2021-01-14 00:26:10,052", + "created": 1610580370.052372, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -47608,14 +47608,14 @@ "lineno": 414, "message": "comm-client: RX <- (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", "module": "__init__", - "msecs": 485.76998710632324, + "msecs": 52.371978759765625, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19141.18003845215, - "thread": 140376971142912, + "relativeCreated": 19280.87091445923, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47623,8 +47623,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:27,485", - "created": 1610361447.485977, + "asctime": "2021-01-14 00:26:10,052", + "created": 1610580370.052655, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47634,14 +47634,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 485.9769344329834, + "msecs": 52.65498161315918, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19141.38698577881, - "thread": 140376971142912, + "relativeCreated": 19281.153917312622, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47650,8 +47650,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:27,486", - "created": 1610361447.486161, + "asctime": "2021-01-14 00:26:10,052", + "created": 1610580370.052913, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47661,14 +47661,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 486.1609935760498, + "msecs": 52.91295051574707, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19141.571044921875, - "thread": 140376971142912, + "relativeCreated": 19281.41188621521, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47676,8 +47676,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:27,486", - "created": 1610361447.486517, + "asctime": "2021-01-14 00:26:10,053", + "created": 1610580370.053665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47687,14 +47687,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 486.51695251464844, + "msecs": 53.6649227142334, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19141.927003860474, - "thread": 140376971142912, + "relativeCreated": 19282.163858413696, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47703,8 +47703,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:27,486", - "created": 1610361447.486761, + "asctime": "2021-01-14 00:26:10,053", + "created": 1610580370.053856, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47714,14 +47714,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 486.76109313964844, + "msecs": 53.85589599609375, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19142.171144485474, - "thread": 140376971142912, + "relativeCreated": 19282.354831695557, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47729,8 +47729,8 @@ "STP:", "(41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b" ], - "asctime": "2021-01-11 11:37:27,487", - "created": 1610361447.487171, + "asctime": "2021-01-14 00:26:10,054", + "created": 1610580370.05414, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -47740,14 +47740,14 @@ "lineno": 148, "message": "STP: message identified - (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", "module": "stp", - "msecs": 487.170934677124, + "msecs": 54.14009094238281, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19142.58098602295, - "thread": 140376971142912, + "relativeCreated": 19282.639026641846, + "thread": 140017334740736, "threadName": "Thread-36" }, { @@ -47758,71 +47758,71 @@ "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:27,488", - "created": 1610361447.488085, + "asctime": "2021-01-14 00:26:10,054", + "created": 1610580370.054629, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 488.0850315093994, + "msecs": 54.62908744812012, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19143.495082855225, - "thread": 140376971142912, + "relativeCreated": 19283.128023147583, + "thread": 140017334740736, "threadName": "Thread-36" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:27,488", - "created": 1610361447.488435, + "asctime": "2021-01-14 00:26:10,054", + "created": 1610580370.05489, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 488.4350299835205, + "msecs": 54.88991737365723, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19143.845081329346, - "thread": 140376971142912, + "relativeCreated": 19283.38885307312, + "thread": 140017334740736, "threadName": "Thread-36" } ], - "msecs": 663.3388996124268, + "msecs": 232.4349880218506, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19318.748950958252, - "thread": 140379336402752, + "relativeCreated": 19460.933923721313, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.17490386962890625 + "time_consumption": 0.17754507064819336 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:27,664", - "created": 1610361447.66442, + "asctime": "2021-01-14 00:26:10,234", + "created": 1610580370.234105, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47839,8 +47839,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:27,663", - "created": 1610361447.663862, + "asctime": "2021-01-14 00:26:10,233", + "created": 1610580370.233561, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47850,14 +47850,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 663.8619899749756, + "msecs": 233.56103897094727, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19319.2720413208, - "thread": 140379336402752, + "relativeCreated": 19462.05997467041, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -47866,8 +47866,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:27,664", - "created": 1610361447.664123, + "asctime": "2021-01-14 00:26:10,233", + "created": 1610580370.233854, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47877,35 +47877,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 664.1230583190918, + "msecs": 233.8540554046631, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19319.533109664917, - "thread": 140379336402752, + "relativeCreated": 19462.352991104126, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 664.4198894500732, + "msecs": 234.10511016845703, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19319.8299407959, - "thread": 140379336402752, + "relativeCreated": 19462.60404586792, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002968311309814453 + "time_consumption": 0.0002510547637939453 }, { "args": [ "{'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:27,665", - "created": 1610361447.665291, + "asctime": "2021-01-14 00:26:10,235", + "created": 1610580370.235002, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47922,8 +47922,8 @@ "{'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:27,664", - "created": 1610361447.664833, + "asctime": "2021-01-14 00:26:10,234", + "created": 1610580370.234527, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47933,14 +47933,14 @@ "lineno": 22, "message": "Result (Received message on client side): {'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 664.8330688476562, + "msecs": 234.5271110534668, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19320.24312019348, - "thread": 140379336402752, + "relativeCreated": 19463.02604675293, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -47949,8 +47949,8 @@ "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-11 11:37:27,665", - "created": 1610361447.665083, + "asctime": "2021-01-14 00:26:10,234", + "created": 1610580370.234762, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -47960,39 +47960,39 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 665.0829315185547, + "msecs": 234.76195335388184, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19320.49298286438, - "thread": 140379336402752, + "relativeCreated": 19463.260889053345, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 665.2910709381104, + "msecs": 235.0020408630371, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 19320.701122283936, - "thread": 140379336402752, + "relativeCreated": 19463.5009765625, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00020813941955566406 + "time_consumption": 0.00024008750915527344 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.7609879970550537, - "time_finished": "2021-01-11 11:37:27,665", - "time_start": "2021-01-11 11:37:26,904" + "time_consumption": 0.7643899917602539, + "time_finished": "2021-01-14 00:26:10,235", + "time_start": "2021-01-14 00:26:09,470" }, "_ZJMD8EzaEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:09,135", - "created": 1610361429.135852, + "asctime": "2021-01-14 00:25:51,588", + "created": 1610580351.588699, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48003,18 +48003,18 @@ "message": "_ZJMD8EzaEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 135.85209846496582, + "msecs": 588.6991024017334, "msg": "_ZJMD8EzaEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 791.262149810791, + "relativeCreated": 817.1980381011963, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143982, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599633, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -48029,8 +48029,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:09,137", - "created": 1610361429.137057, + "asctime": "2021-01-14 00:25:51,589", + "created": 1610580351.58991, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48040,22 +48040,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 137.05706596374512, + "msecs": 589.9100303649902, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 792.4671173095703, - "thread": 140379336402752, + "relativeCreated": 818.4089660644531, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:09,138", - "created": 1610361429.138149, + "asctime": "2021-01-14 00:25:51,590", + "created": 1610580351.590864, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48065,22 +48065,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 138.14902305603027, + "msecs": 590.8639430999756, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 793.5590744018555, - "thread": 140379336402752, + "relativeCreated": 819.3628787994385, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:09,138", - "created": 1610361429.138469, + "asctime": "2021-01-14 00:25:51,591", + "created": 1610580351.591221, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48090,39 +48090,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 138.46898078918457, + "msecs": 591.2210941314697, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 793.8790321350098, - "thread": 140379336402752, + "relativeCreated": 819.7200298309326, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:09,139", - "created": 1610361429.139062, + "asctime": "2021-01-14 00:25:51,592", + "created": 1610580351.592132, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 139.06192779541016, + "msecs": 592.1320915222168, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 794.4719791412354, - "thread": 140379336402752, + "relativeCreated": 820.6310272216797, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48131,25 +48131,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:09,139", - "created": 1610361429.139408, + "asctime": "2021-01-14 00:25:51,592", + "created": 1610580351.592517, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 139.40811157226562, + "msecs": 592.5168991088867, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 794.8181629180908, - "thread": 140379336402752, + "relativeCreated": 821.0158348083496, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48157,25 +48157,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:09,139", - "created": 1610361429.139817, + "asctime": "2021-01-14 00:25:51,592", + "created": 1610580351.592812, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 139.8169994354248, + "msecs": 592.8120613098145, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 795.22705078125, - "thread": 140379336402752, + "relativeCreated": 821.3109970092773, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48183,25 +48183,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.140009, + "asctime": "2021-01-14 00:25:51,592", + "created": 1610580351.592996, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 140.00892639160156, + "msecs": 592.9958820343018, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 795.4189777374268, - "thread": 140379336402752, + "relativeCreated": 821.4948177337646, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48209,25 +48209,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.140181, + "asctime": "2021-01-14 00:25:51,593", + "created": 1610580351.593205, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 140.1810646057129, + "msecs": 593.2049751281738, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 795.5911159515381, - "thread": 140379336402752, + "relativeCreated": 821.7039108276367, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48235,25 +48235,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.140356, + "asctime": "2021-01-14 00:25:51,593", + "created": 1610580351.593374, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 140.35606384277344, + "msecs": 593.3740139007568, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 795.7661151885986, - "thread": 140379336402752, + "relativeCreated": 821.8729496002197, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48263,8 +48263,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.140542, + "asctime": "2021-01-14 00:25:51,593", + "created": 1610580351.593687, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48274,14 +48274,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 140.54203033447266, + "msecs": 593.6870574951172, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 795.9520816802979, - "thread": 140379336402752, + "relativeCreated": 822.1859931945801, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48291,8 +48291,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.14073, + "asctime": "2021-01-14 00:25:51,593", + "created": 1610580351.593897, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48302,14 +48302,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 140.7299041748047, + "msecs": 593.8971042633057, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.1399555206299, - "thread": 140379336402752, + "relativeCreated": 822.3960399627686, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48319,8 +48319,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.140834, + "asctime": "2021-01-14 00:25:51,594", + "created": 1610580351.594082, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48330,14 +48330,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 140.83409309387207, + "msecs": 594.0821170806885, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.2441444396973, - "thread": 140379336402752, + "relativeCreated": 822.5810527801514, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48347,8 +48347,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.140891, + "asctime": "2021-01-14 00:25:51,594", + "created": 1610580351.594262, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48358,39 +48358,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 140.89107513427734, + "msecs": 594.261884689331, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.3011264801025, - "thread": 140379336402752, + "relativeCreated": 822.760820388794, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:09,140", - "created": 1610361429.140946, + "asctime": "2021-01-14 00:25:51,594", + "created": 1610580351.594425, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 140.9459114074707, + "msecs": 594.4249629974365, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.3559627532959, - "thread": 140379336402752, + "relativeCreated": 822.9238986968994, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48399,25 +48399,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.14101, + "asctime": "2021-01-14 00:25:51,594", + "created": 1610580351.594629, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 141.01004600524902, + "msecs": 594.6290493011475, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.4200973510742, - "thread": 140379336402752, + "relativeCreated": 823.1279850006104, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48425,25 +48425,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141071, + "asctime": "2021-01-14 00:25:51,594", + "created": 1610580351.594818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 141.07108116149902, + "msecs": 594.818115234375, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.4811325073242, - "thread": 140379336402752, + "relativeCreated": 823.3170509338379, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48451,25 +48451,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141151, + "asctime": "2021-01-14 00:25:51,595", + "created": 1610580351.595078, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 141.15095138549805, + "msecs": 595.0779914855957, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.5610027313232, - "thread": 140379336402752, + "relativeCreated": 823.5769271850586, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48479,8 +48479,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141229, + "asctime": "2021-01-14 00:25:51,595", + "created": 1610580351.595315, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48490,14 +48490,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 141.22891426086426, + "msecs": 595.3149795532227, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.6389656066895, - "thread": 140379336402752, + "relativeCreated": 823.8139152526855, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48507,8 +48507,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141288, + "asctime": "2021-01-14 00:25:51,595", + "created": 1610580351.595502, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48518,14 +48518,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 141.28804206848145, + "msecs": 595.5018997192383, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.6980934143066, - "thread": 140379336402752, + "relativeCreated": 824.0008354187012, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48534,25 +48534,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141344, + "asctime": "2021-01-14 00:25:51,595", + "created": 1610580351.595745, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 141.3440704345703, + "msecs": 595.7450866699219, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.7541217803955, - "thread": 140379336402752, + "relativeCreated": 824.2440223693848, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48561,25 +48561,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141404, + "asctime": "2021-01-14 00:25:51,595", + "created": 1610580351.595993, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 141.4039134979248, + "msecs": 595.9930419921875, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.81396484375, - "thread": 140379336402752, + "relativeCreated": 824.4919776916504, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48588,75 +48588,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141456, + "asctime": "2021-01-14 00:25:51,596", + "created": 1610580351.596232, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 141.45588874816895, + "msecs": 596.2319374084473, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.8659400939941, - "thread": 140379336402752, + "relativeCreated": 824.7308731079102, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141508, + "asctime": "2021-01-14 00:25:51,596", + "created": 1610580351.596503, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 141.5081024169922, + "msecs": 596.5030193328857, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 796.9181537628174, - "thread": 140379336402752, + "relativeCreated": 825.0019550323486, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141642, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597185, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 141.64209365844727, + "msecs": 597.1848964691162, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.0521450042725, - "thread": 140379336402752, + "relativeCreated": 825.6838321685791, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48665,25 +48665,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141735, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597272, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 141.73507690429688, + "msecs": 597.2719192504883, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.1451282501221, - "thread": 140379336402752, + "relativeCreated": 825.7708549499512, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48691,25 +48691,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.14185, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597375, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 141.84999465942383, + "msecs": 597.3749160766602, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.260046005249, - "thread": 140379336402752, + "relativeCreated": 825.873851776123, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48717,25 +48717,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141907, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597458, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 141.9069766998291, + "msecs": 597.4578857421875, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.3170280456543, - "thread": 140379336402752, + "relativeCreated": 825.9568214416504, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48743,25 +48743,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:09,141", - "created": 1610361429.141959, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597533, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 141.95895195007324, + "msecs": 597.5329875946045, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.3690032958984, - "thread": 140379336402752, + "relativeCreated": 826.0319232940674, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48769,25 +48769,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:09,142", - "created": 1610361429.14201, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597607, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 142.00997352600098, + "msecs": 597.606897354126, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.4200248718262, - "thread": 140379336402752, + "relativeCreated": 826.1058330535889, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48797,8 +48797,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:09,142", - "created": 1610361429.14207, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597684, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48808,14 +48808,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 142.07005500793457, + "msecs": 597.6839065551758, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.4801063537598, - "thread": 140379336402752, + "relativeCreated": 826.1828422546387, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48825,8 +48825,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:09,142", - "created": 1610361429.142132, + "asctime": "2021-01-14 00:25:51,597", + "created": 1610580351.597767, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48836,14 +48836,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 142.13204383850098, + "msecs": 597.7671146392822, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 797.5420951843262, - "thread": 140379336402752, + "relativeCreated": 826.2660503387451, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48853,8 +48853,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.1432, + "asctime": "2021-01-14 00:25:51,598", + "created": 1610580351.598838, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48864,14 +48864,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 143.19992065429688, + "msecs": 598.8380908966064, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 798.6099720001221, - "thread": 140379336402752, + "relativeCreated": 827.3370265960693, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48881,8 +48881,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143317, + "asctime": "2021-01-14 00:25:51,598", + "created": 1610580351.598969, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48892,39 +48892,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 143.31698417663574, + "msecs": 598.9689826965332, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 798.7270355224609, - "thread": 140379336402752, + "relativeCreated": 827.4679183959961, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143383, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599049, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 143.38302612304688, + "msecs": 599.0490913391113, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 798.7930774688721, - "thread": 140379336402752, + "relativeCreated": 827.5480270385742, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48933,25 +48933,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143463, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 143.4628963470459, + "msecs": 599.1311073303223, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 798.8729476928711, - "thread": 140379336402752, + "relativeCreated": 827.6300430297852, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48959,25 +48959,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143531, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599211, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 143.53108406066895, + "msecs": 599.2109775543213, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 798.9411354064941, - "thread": 140379336402752, + "relativeCreated": 827.7099132537842, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -48985,25 +48985,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143589, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599274, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 143.58901977539062, + "msecs": 599.2739200592041, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 798.9990711212158, - "thread": 140379336402752, + "relativeCreated": 827.772855758667, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -49013,8 +49013,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.14365, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599335, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49024,14 +49024,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 143.65005493164062, + "msecs": 599.3349552154541, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.0601062774658, - "thread": 140379336402752, + "relativeCreated": 827.833890914917, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -49041,8 +49041,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143711, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599406, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49052,14 +49052,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 143.71109008789062, + "msecs": 599.4060039520264, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.1211414337158, - "thread": 140379336402752, + "relativeCreated": 827.9049396514893, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -49068,25 +49068,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.14377, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599457, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 143.7699794769287, + "msecs": 599.4570255279541, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.1800308227539, - "thread": 140379336402752, + "relativeCreated": 827.955961227417, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -49095,25 +49095,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143822, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599501, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 143.82195472717285, + "msecs": 599.5008945465088, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.232006072998, - "thread": 140379336402752, + "relativeCreated": 827.9998302459717, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -49122,68 +49122,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143873, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599545, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 143.8729763031006, + "msecs": 599.5450019836426, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.2830276489258, - "thread": 140379336402752, + "relativeCreated": 828.0439376831055, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:09,143", - "created": 1610361429.143925, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599588, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 143.92495155334473, + "msecs": 599.5879173278809, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.3350028991699, - "thread": 140379336402752, + "relativeCreated": 828.0868530273438, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 143.98193359375, + "msecs": 599.632978439331, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.3919849395752, - "thread": 140379336402752, + "relativeCreated": 828.131914138794, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 5.698204040527344e-05 + "time_consumption": 4.506111145019531e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:09,487", - "created": 1610361429.48784, + "asctime": "2021-01-14 00:25:51,943", + "created": 1610580351.943287, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -49198,8 +49198,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:09,144", - "created": 1610361429.144097, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599733, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49209,22 +49209,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 144.09708976745605, + "msecs": 599.7331142425537, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.5071411132812, - "thread": 140379336402752, + "relativeCreated": 828.2320499420166, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:09,144", - "created": 1610361429.144156, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599781, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49234,39 +49234,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.15597915649414, + "msecs": 599.7810363769531, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.5660305023193, - "thread": 140379336402752, + "relativeCreated": 828.279972076416, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:09,144", - "created": 1610361429.144211, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599829, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.2110538482666, + "msecs": 599.8289585113525, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.6211051940918, - "thread": 140379336402752, + "relativeCreated": 828.3278942108154, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -49277,33 +49277,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:09,144", - "created": 1610361429.144302, + "asctime": "2021-01-14 00:25:51,599", + "created": 1610580351.599907, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 144.3018913269043, + "msecs": 599.9069213867188, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.7119426727295, - "thread": 140379336402752, + "relativeCreated": 828.4058570861816, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:09,144", - "created": 1610361429.144474, + "asctime": "2021-01-14 00:25:51,600", + "created": 1610580351.600055, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49313,22 +49313,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 144.47402954101562, + "msecs": 600.0549793243408, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.8840808868408, - "thread": 140379336402752, + "relativeCreated": 828.5539150238037, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:09,144", - "created": 1610361429.144542, + "asctime": "2021-01-14 00:25:51,600", + "created": 1610580351.600117, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49338,39 +49338,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.54197883605957, + "msecs": 600.1169681549072, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 799.9520301818848, - "thread": 140379336402752, + "relativeCreated": 828.6159038543701, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:09,144", - "created": 1610361429.1446, + "asctime": "2021-01-14 00:25:51,600", + "created": 1610580351.600164, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.59991455078125, + "msecs": 600.1639366149902, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 800.0099658966064, - "thread": 140379336402752, + "relativeCreated": 828.6628723144531, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -49378,8 +49378,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:09,145", - "created": 1610361429.145967, + "asctime": "2021-01-14 00:25:51,607", + "created": 1610580351.607545, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49389,14 +49389,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 145.9670066833496, + "msecs": 607.5448989868164, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.3770580291748, - "thread": 140379298322176, + "relativeCreated": 836.0438346862793, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49404,8 +49404,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146127, + "asctime": "2021-01-14 00:25:51,607", + "created": 1610580351.607699, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49415,14 +49415,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 146.12698554992676, + "msecs": 607.698917388916, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.537036895752, - "thread": 140379298322176, + "relativeCreated": 836.1978530883789, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49430,8 +49430,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146195, + "asctime": "2021-01-14 00:25:51,607", + "created": 1610580351.607764, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49441,14 +49441,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 146.1949348449707, + "msecs": 607.7640056610107, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.6049861907959, - "thread": 140379298322176, + "relativeCreated": 836.2629413604736, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49457,8 +49457,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146252, + "asctime": "2021-01-14 00:25:51,607", + "created": 1610580351.60782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49468,14 +49468,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 146.25191688537598, + "msecs": 607.8200340270996, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.6619682312012, - "thread": 140379298322176, + "relativeCreated": 836.3189697265625, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49483,8 +49483,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146324, + "asctime": "2021-01-14 00:25:51,607", + "created": 1610580351.60789, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49494,14 +49494,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 146.32391929626465, + "msecs": 607.8898906707764, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.7339706420898, - "thread": 140379298322176, + "relativeCreated": 836.3888263702393, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49510,8 +49510,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146376, + "asctime": "2021-01-14 00:25:51,607", + "created": 1610580351.60794, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49521,14 +49521,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 146.3758945465088, + "msecs": 607.9399585723877, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.785945892334, - "thread": 140379298322176, + "relativeCreated": 836.4388942718506, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49536,8 +49536,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.14645, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608011, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49547,14 +49547,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 146.45004272460938, + "msecs": 608.01100730896, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.8600940704346, - "thread": 140379298322176, + "relativeCreated": 836.5099430084229, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49563,8 +49563,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146503, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608063, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49574,14 +49574,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 146.50297164916992, + "msecs": 608.0629825592041, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.9130229949951, - "thread": 140379298322176, + "relativeCreated": 836.561918258667, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49589,8 +49589,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146565, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608123, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49600,14 +49600,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 146.56496047973633, + "msecs": 608.1230640411377, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 801.9750118255615, - "thread": 140379298322176, + "relativeCreated": 836.6219997406006, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49616,8 +49616,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146613, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.60817, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49627,14 +49627,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 146.61288261413574, + "msecs": 608.1700325012207, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.0229339599609, - "thread": 140379298322176, + "relativeCreated": 836.6689682006836, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49642,8 +49642,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146681, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608237, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49653,14 +49653,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 146.6810703277588, + "msecs": 608.2370281219482, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.091121673584, - "thread": 140379298322176, + "relativeCreated": 836.7359638214111, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49669,8 +49669,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.14673, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608284, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49680,14 +49680,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 146.7299461364746, + "msecs": 608.2839965820312, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.1399974822998, - "thread": 140379298322176, + "relativeCreated": 836.7829322814941, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49695,8 +49695,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146805, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608356, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49706,14 +49706,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 146.8050479888916, + "msecs": 608.3559989929199, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.2150993347168, - "thread": 140379298322176, + "relativeCreated": 836.8549346923828, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49721,8 +49721,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146868, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608417, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49732,14 +49732,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 146.8679904937744, + "msecs": 608.4170341491699, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.2780418395996, - "thread": 140379298322176, + "relativeCreated": 836.9159698486328, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49747,8 +49747,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146924, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.60847, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49758,14 +49758,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 146.92401885986328, + "msecs": 608.4699630737305, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.3340702056885, - "thread": 140379298322176, + "relativeCreated": 836.9688987731934, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49774,8 +49774,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:09,146", - "created": 1610361429.146973, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608518, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49785,14 +49785,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 146.9728946685791, + "msecs": 608.5178852081299, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.3829460144043, - "thread": 140379298322176, + "relativeCreated": 837.0168209075928, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49800,8 +49800,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:09,147", - "created": 1610361429.147077, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49811,14 +49811,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 147.07708358764648, + "msecs": 608.6170673370361, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.4871349334717, - "thread": 140379298322176, + "relativeCreated": 837.116003036499, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49829,25 +49829,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:09,147", - "created": 1610361429.147202, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608741, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 147.2020149230957, + "msecs": 608.741044998169, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.6120662689209, - "thread": 140379298322176, + "relativeCreated": 837.2399806976318, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49855,25 +49855,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:09,147", - "created": 1610361429.147271, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.608806, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 147.27091789245605, + "msecs": 608.8058948516846, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.6809692382812, - "thread": 140379298322176, + "relativeCreated": 837.3048305511475, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49884,25 +49884,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:09,147", - "created": 1610361429.147358, + "asctime": "2021-01-14 00:25:51,608", + "created": 1610580351.60889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 147.35794067382812, + "msecs": 608.8900566101074, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 802.7679920196533, - "thread": 140379298322176, + "relativeCreated": 837.3889923095703, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -49910,8 +49910,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:09,154", - "created": 1610361429.154208, + "asctime": "2021-01-14 00:25:51,611", + "created": 1610580351.611587, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49921,14 +49921,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 154.20794486999512, + "msecs": 611.5870475769043, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 809.6179962158203, - "thread": 140379289929472, + "relativeCreated": 840.0859832763672, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -49936,8 +49936,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:09,154", - "created": 1610361429.154455, + "asctime": "2021-01-14 00:25:51,611", + "created": 1610580351.611836, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -49947,14 +49947,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 154.45494651794434, + "msecs": 611.8359565734863, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 809.8649978637695, - "thread": 140379289929472, + "relativeCreated": 840.3348922729492, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -49962,8 +49962,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,154", - "created": 1610361429.154551, + "asctime": "2021-01-14 00:25:51,611", + "created": 1610580351.611928, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -49973,14 +49973,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 154.55102920532227, + "msecs": 611.9279861450195, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 809.9610805511475, - "thread": 140379289929472, + "relativeCreated": 840.4269218444824, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -49989,8 +49989,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:09,154", - "created": 1610361429.154631, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.61201, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50000,14 +50000,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 154.6308994293213, + "msecs": 612.0100021362305, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.0409507751465, - "thread": 140379289929472, + "relativeCreated": 840.5089378356934, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50015,8 +50015,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,154", - "created": 1610361429.15473, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612106, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50026,14 +50026,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 154.73008155822754, + "msecs": 612.1060848236084, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.1401329040527, - "thread": 140379289929472, + "relativeCreated": 840.6050205230713, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50042,8 +50042,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,154", - "created": 1610361429.154802, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612176, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50053,14 +50053,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 154.8020839691162, + "msecs": 612.1759414672852, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.2121353149414, - "thread": 140379289929472, + "relativeCreated": 840.674877166748, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50068,8 +50068,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,154", - "created": 1610361429.154928, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612348, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50079,14 +50079,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 154.92796897888184, + "msecs": 612.3480796813965, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.338020324707, - "thread": 140379289929472, + "relativeCreated": 840.8470153808594, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50095,8 +50095,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155019, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612448, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50106,14 +50106,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.01904487609863, + "msecs": 612.44797706604, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.4290962219238, - "thread": 140379289929472, + "relativeCreated": 840.9469127655029, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50121,8 +50121,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155164, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612572, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50132,14 +50132,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 155.16400337219238, + "msecs": 612.5719547271729, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.5740547180176, - "thread": 140379289929472, + "relativeCreated": 841.0708904266357, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50148,8 +50148,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155241, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50159,14 +50159,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.2410125732422, + "msecs": 612.7820014953613, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.6510639190674, - "thread": 140379289929472, + "relativeCreated": 841.2809371948242, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50174,8 +50174,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155337, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612889, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50185,14 +50185,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 155.33709526062012, + "msecs": 612.8890514373779, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.7471466064453, - "thread": 140379289929472, + "relativeCreated": 841.3879871368408, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50201,8 +50201,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155404, + "asctime": "2021-01-14 00:25:51,612", + "created": 1610580351.612957, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50212,14 +50212,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.40409088134766, + "msecs": 612.9570007324219, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.8141422271729, - "thread": 140379289929472, + "relativeCreated": 841.4559364318848, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50227,8 +50227,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155511, + "asctime": "2021-01-14 00:25:51,613", + "created": 1610580351.613061, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -50238,14 +50238,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 155.51090240478516, + "msecs": 613.0609512329102, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 810.9209537506104, - "thread": 140379289929472, + "relativeCreated": 841.559886932373, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50253,8 +50253,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155599, + "asctime": "2021-01-14 00:25:51,613", + "created": 1610580351.613162, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -50264,14 +50264,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 155.59911727905273, + "msecs": 613.1620407104492, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 811.0091686248779, - "thread": 140379289929472, + "relativeCreated": 841.6609764099121, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50279,8 +50279,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155678, + "asctime": "2021-01-14 00:25:51,613", + "created": 1610580351.613239, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50290,14 +50290,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 155.67803382873535, + "msecs": 613.239049911499, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 811.0880851745605, - "thread": 140379289929472, + "relativeCreated": 841.7379856109619, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50306,8 +50306,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155748, + "asctime": "2021-01-14 00:25:51,613", + "created": 1610580351.613305, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50317,14 +50317,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 155.7478904724121, + "msecs": 613.3050918579102, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 811.1579418182373, - "thread": 140379289929472, + "relativeCreated": 841.804027557373, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50332,8 +50332,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:09,155", - "created": 1610361429.155896, + "asctime": "2021-01-14 00:25:51,613", + "created": 1610580351.613441, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50343,14 +50343,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 155.89594841003418, + "msecs": 613.440990447998, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 811.3059997558594, - "thread": 140379289929472, + "relativeCreated": 841.9399261474609, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50361,25 +50361,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:09,156", - "created": 1610361429.156088, + "asctime": "2021-01-14 00:25:51,613", + "created": 1610580351.613632, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 156.08811378479004, + "msecs": 613.6319637298584, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 811.4981651306152, - "thread": 140379289929472, + "relativeCreated": 842.1308994293213, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -50387,43 +50387,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:09,156", - "created": 1610361429.156184, + "asctime": "2021-01-14 00:25:51,613", + "created": 1610580351.613726, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 156.18395805358887, + "msecs": 613.7259006500244, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 811.5940093994141, - "thread": 140379289929472, + "relativeCreated": 842.2248363494873, + "thread": 140019658721024, "threadName": "Thread-4" } ], - "msecs": 487.839937210083, + "msecs": 943.2868957519531, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1143.2499885559082, - "thread": 140379336402752, + "relativeCreated": 1171.785831451416, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.33165597915649414 + "time_consumption": 0.3295609951019287 }, { "args": [], - "asctime": "2021-01-11 11:37:09,790", - "created": 1610361429.790696, + "asctime": "2021-01-14 00:25:52,247", + "created": 1610580352.247194, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -50442,25 +50442,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:09,488", - "created": 1610361429.488529, + "asctime": "2021-01-14 00:25:51,944", + "created": 1610580351.94453, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 488.5289669036865, + "msecs": 944.5300102233887, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1143.9390182495117, - "thread": 140379336402752, + "relativeCreated": 1173.0289459228516, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -50468,8 +50468,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:09,513", - "created": 1610361429.513099, + "asctime": "2021-01-14 00:25:51,974", + "created": 1610580351.97454, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -50479,14 +50479,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 513.098955154419, + "msecs": 974.5399951934814, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1168.5090065002441, - "thread": 140379298322176, + "relativeCreated": 1203.0389308929443, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50494,8 +50494,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:09,513", - "created": 1610361429.513598, + "asctime": "2021-01-14 00:25:51,975", + "created": 1610580351.975054, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -50505,14 +50505,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 513.5979652404785, + "msecs": 975.0540256500244, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1169.0080165863037, - "thread": 140379298322176, + "relativeCreated": 1203.5529613494873, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50520,8 +50520,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,513", - "created": 1610361429.513804, + "asctime": "2021-01-14 00:25:51,975", + "created": 1610580351.975261, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50531,14 +50531,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 513.8039588928223, + "msecs": 975.2609729766846, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1169.2140102386475, - "thread": 140379298322176, + "relativeCreated": 1203.7599086761475, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50547,8 +50547,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:09,513", - "created": 1610361429.513978, + "asctime": "2021-01-14 00:25:51,975", + "created": 1610580351.97544, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50558,14 +50558,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 513.9780044555664, + "msecs": 975.4400253295898, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1169.3880558013916, - "thread": 140379298322176, + "relativeCreated": 1203.9389610290527, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50573,8 +50573,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,514", - "created": 1610361429.514208, + "asctime": "2021-01-14 00:25:51,975", + "created": 1610580351.975656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50584,14 +50584,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 514.2080783843994, + "msecs": 975.6560325622559, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1169.6181297302246, - "thread": 140379298322176, + "relativeCreated": 1204.1549682617188, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50600,8 +50600,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,514", - "created": 1610361429.514386, + "asctime": "2021-01-14 00:25:51,975", + "created": 1610580351.975837, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50611,14 +50611,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 514.3859386444092, + "msecs": 975.836992263794, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1169.7959899902344, - "thread": 140379298322176, + "relativeCreated": 1204.3359279632568, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50626,8 +50626,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,514", - "created": 1610361429.514611, + "asctime": "2021-01-14 00:25:51,976", + "created": 1610580351.976067, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50637,14 +50637,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 514.611005783081, + "msecs": 976.067066192627, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1170.0210571289062, - "thread": 140379298322176, + "relativeCreated": 1204.5660018920898, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50653,8 +50653,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,514", - "created": 1610361429.514769, + "asctime": "2021-01-14 00:25:51,976", + "created": 1610580351.976224, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50664,14 +50664,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 514.7690773010254, + "msecs": 976.2239456176758, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1170.1791286468506, - "thread": 140379298322176, + "relativeCreated": 1204.7228813171387, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50679,8 +50679,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,514", - "created": 1610361429.514964, + "asctime": "2021-01-14 00:25:51,976", + "created": 1610580351.976422, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50690,14 +50690,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 514.9641036987305, + "msecs": 976.4220714569092, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1170.3741550445557, - "thread": 140379298322176, + "relativeCreated": 1204.921007156372, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50706,8 +50706,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,515", - "created": 1610361429.515128, + "asctime": "2021-01-14 00:25:51,976", + "created": 1610580351.976589, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50717,14 +50717,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 515.1278972625732, + "msecs": 976.5889644622803, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1170.5379486083984, - "thread": 140379298322176, + "relativeCreated": 1205.0879001617432, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50732,8 +50732,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e" ], - "asctime": "2021-01-11 11:37:09,515", - "created": 1610361429.515494, + "asctime": "2021-01-14 00:25:51,976", + "created": 1610580351.976955, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -50743,14 +50743,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e", "module": "__init__", - "msecs": 515.4941082000732, + "msecs": 976.9549369812012, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1170.9041595458984, - "thread": 140379298322176, + "relativeCreated": 1205.453872680664, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50758,8 +50758,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e" ], - "asctime": "2021-01-11 11:37:09,515", - "created": 1610361429.515746, + "asctime": "2021-01-14 00:25:51,977", + "created": 1610580351.97725, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -50769,14 +50769,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e", "module": "__init__", - "msecs": 515.7461166381836, + "msecs": 977.2500991821289, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1171.1561679840088, - "thread": 140379298322176, + "relativeCreated": 1205.7490348815918, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50784,8 +50784,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,515", - "created": 1610361429.515981, + "asctime": "2021-01-14 00:25:51,977", + "created": 1610580351.977494, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50795,14 +50795,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 515.9809589385986, + "msecs": 977.4940013885498, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1171.3910102844238, - "thread": 140379298322176, + "relativeCreated": 1205.9929370880127, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50811,8 +50811,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,516", - "created": 1610361429.516146, + "asctime": "2021-01-14 00:25:51,977", + "created": 1610580351.977666, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50822,14 +50822,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 516.1459445953369, + "msecs": 977.665901184082, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1171.555995941162, - "thread": 140379298322176, + "relativeCreated": 1206.164836883545, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50837,8 +50837,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,516", - "created": 1610361429.516326, + "asctime": "2021-01-14 00:25:51,977", + "created": 1610580351.977852, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50848,14 +50848,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 516.3259506225586, + "msecs": 977.8521060943604, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1171.7360019683838, - "thread": 140379298322176, + "relativeCreated": 1206.3510417938232, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50864,8 +50864,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:09,516", - "created": 1610361429.516477, + "asctime": "2021-01-14 00:25:51,978", + "created": 1610580351.978055, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50875,14 +50875,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 516.477108001709, + "msecs": 978.0550003051758, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1171.8871593475342, - "thread": 140379298322176, + "relativeCreated": 1206.5539360046387, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50890,8 +50890,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c" ], - "asctime": "2021-01-11 11:37:09,516", - "created": 1610361429.516891, + "asctime": "2021-01-14 00:25:51,978", + "created": 1610580351.978666, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -50901,39 +50901,39 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c", "module": "stp", - "msecs": 516.8910026550293, + "msecs": 978.6660671234131, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1172.3010540008545, - "thread": 140379298322176, + "relativeCreated": 1207.165002822876, + "thread": 140019667113728, "threadName": "Thread-3" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:09,517", - "created": 1610361429.517232, + "asctime": "2021-01-14 00:25:51,979", + "created": 1610580351.979132, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 453, + "lineno": 465, "message": "prot-server: Received message has an invalid checksum. Message will be ignored.", "module": "__init__", - "msecs": 517.2319412231445, + "msecs": 979.1319370269775, "msg": "%s Received message has an invalid checksum. Message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1172.6419925689697, - "thread": 140379298322176, + "relativeCreated": 1207.6308727264404, + "thread": 140019667113728, "threadName": "Thread-3" }, { @@ -50943,46 +50943,46 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:09,790", - "created": 1610361429.79036, + "asctime": "2021-01-14 00:25:52,246", + "created": 1610580352.246848, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 790.3599739074707, + "msecs": 246.84810638427734, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1445.770025253296, - "thread": 140379336402752, + "relativeCreated": 1475.3470420837402, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 790.6959056854248, + "msecs": 247.1940517425537, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1446.10595703125, - "thread": 140379336402752, + "relativeCreated": 1475.6929874420166, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00033593177795410156 + "time_consumption": 0.0003459453582763672 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:09,791", - "created": 1610361429.791484, + "asctime": "2021-01-14 00:25:52,248", + "created": 1610580352.248159, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -50999,8 +50999,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:09,791", - "created": 1610361429.7911, + "asctime": "2021-01-14 00:25:52,247", + "created": 1610580352.247589, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51010,14 +51010,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 791.100025177002, + "msecs": 247.589111328125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1446.5100765228271, - "thread": 140379336402752, + "relativeCreated": 1476.088047027588, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -51026,8 +51026,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:09,791", - "created": 1610361429.791294, + "asctime": "2021-01-14 00:25:52,247", + "created": 1610580352.247892, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51037,35 +51037,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 791.2940979003906, + "msecs": 247.89190292358398, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1446.7041492462158, - "thread": 140379336402752, + "relativeCreated": 1476.3908386230469, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 791.4841175079346, + "msecs": 248.15893173217773, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1446.8941688537598, - "thread": 140379336402752, + "relativeCreated": 1476.6578674316406, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001900196075439453 + "time_consumption": 0.00026702880859375 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:09,792", - "created": 1610361429.792093, + "asctime": "2021-01-14 00:25:52,249", + "created": 1610580352.249064, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51082,8 +51082,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:09,791", - "created": 1610361429.791752, + "asctime": "2021-01-14 00:25:52,248", + "created": 1610580352.24857, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51093,14 +51093,14 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by server): None ()", "module": "test", - "msecs": 791.7520999908447, + "msecs": 248.56996536254883, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1447.16215133667, - "thread": 140379336402752, + "relativeCreated": 1477.0689010620117, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -51109,8 +51109,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:09,791", - "created": 1610361429.791925, + "asctime": "2021-01-14 00:25:52,248", + "created": 1610580352.248801, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51120,32 +51120,32 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by server): result = None ()", "module": "test", - "msecs": 791.9249534606934, + "msecs": 248.80099296569824, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1447.3350048065186, - "thread": 140379336402752, + "relativeCreated": 1477.2999286651611, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 792.09303855896, + "msecs": 249.06396865844727, "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1447.5030899047852, - "thread": 140379336402752, + "relativeCreated": 1477.5629043579102, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00016808509826660156 + "time_consumption": 0.00026297569274902344 }, { "args": [], - "asctime": "2021-01-11 11:37:10,094", - "created": 1610361430.094354, + "asctime": "2021-01-14 00:25:52,551", + "created": 1610580352.551828, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -51164,25 +51164,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:09,792", - "created": 1610361429.792588, + "asctime": "2021-01-14 00:25:52,249", + "created": 1610580352.249626, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 792.5879955291748, + "msecs": 249.62592124938965, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1447.998046875, - "thread": 140379336402752, + "relativeCreated": 1478.1248569488525, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -51190,8 +51190,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:09,822", - "created": 1610361429.822697, + "asctime": "2021-01-14 00:25:52,250", + "created": 1610580352.25084, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51201,14 +51201,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 822.6969242095947, + "msecs": 250.8399486541748, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1478.10697555542, - "thread": 140379289929472, + "relativeCreated": 1479.3388843536377, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51216,8 +51216,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:09,823", - "created": 1610361429.823205, + "asctime": "2021-01-14 00:25:52,251", + "created": 1610580352.251266, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51227,14 +51227,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 823.2049942016602, + "msecs": 251.2660026550293, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1478.6150455474854, - "thread": 140379289929472, + "relativeCreated": 1479.7649383544922, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51242,8 +51242,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,823", - "created": 1610361429.823413, + "asctime": "2021-01-14 00:25:52,251", + "created": 1610580352.251477, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51253,14 +51253,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 823.4128952026367, + "msecs": 251.47700309753418, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1478.822946548462, - "thread": 140379289929472, + "relativeCreated": 1479.975938796997, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51269,8 +51269,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:09,823", - "created": 1610361429.8236, + "asctime": "2021-01-14 00:25:52,251", + "created": 1610580352.251649, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51280,14 +51280,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 823.6000537872314, + "msecs": 251.6489028930664, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1479.0101051330566, - "thread": 140379289929472, + "relativeCreated": 1480.1478385925293, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51295,8 +51295,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,823", - "created": 1610361429.823811, + "asctime": "2021-01-14 00:25:52,251", + "created": 1610580352.251859, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51306,14 +51306,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 823.8110542297363, + "msecs": 251.85894966125488, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1479.2211055755615, - "thread": 140379289929472, + "relativeCreated": 1480.3578853607178, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51322,8 +51322,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,823", - "created": 1610361429.823972, + "asctime": "2021-01-14 00:25:52,252", + "created": 1610580352.252021, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51333,14 +51333,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 823.9719867706299, + "msecs": 252.02107429504395, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1479.382038116455, - "thread": 140379289929472, + "relativeCreated": 1480.5200099945068, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51348,8 +51348,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,824", - "created": 1610361429.824192, + "asctime": "2021-01-14 00:25:52,252", + "created": 1610580352.252254, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51359,14 +51359,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 824.1920471191406, + "msecs": 252.25400924682617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1479.6020984649658, - "thread": 140379289929472, + "relativeCreated": 1480.752944946289, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51375,8 +51375,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,824", - "created": 1610361429.824361, + "asctime": "2021-01-14 00:25:52,252", + "created": 1610580352.252416, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51386,14 +51386,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 824.3610858917236, + "msecs": 252.41589546203613, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1479.7711372375488, - "thread": 140379289929472, + "relativeCreated": 1480.914831161499, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51401,8 +51401,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,824", - "created": 1610361429.82456, + "asctime": "2021-01-14 00:25:52,252", + "created": 1610580352.252658, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51412,14 +51412,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 824.5599269866943, + "msecs": 252.65789031982422, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1479.9699783325195, - "thread": 140379289929472, + "relativeCreated": 1481.156826019287, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51428,8 +51428,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,824", - "created": 1610361429.824713, + "asctime": "2021-01-14 00:25:52,252", + "created": 1610580352.25284, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51439,14 +51439,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 824.7129917144775, + "msecs": 252.8400421142578, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1480.1230430603027, - "thread": 140379289929472, + "relativeCreated": 1481.3389778137207, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51454,8 +51454,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:09,825", - "created": 1610361429.82513, + "asctime": "2021-01-14 00:25:52,253", + "created": 1610580352.253337, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51465,14 +51465,14 @@ "lineno": 284, "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 825.1299858093262, + "msecs": 253.33690643310547, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1480.5400371551514, - "thread": 140379289929472, + "relativeCreated": 1481.8358421325684, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51480,8 +51480,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" ], - "asctime": "2021-01-11 11:37:09,825", - "created": 1610361429.82539, + "asctime": "2021-01-14 00:25:52,253", + "created": 1610580352.253673, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51491,14 +51491,14 @@ "lineno": 414, "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", "module": "__init__", - "msecs": 825.390100479126, + "msecs": 253.67307662963867, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1480.8001518249512, - "thread": 140379289929472, + "relativeCreated": 1482.1720123291016, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51506,8 +51506,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,825", - "created": 1610361429.825688, + "asctime": "2021-01-14 00:25:52,253", + "created": 1610580352.253988, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51517,14 +51517,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 825.6878852844238, + "msecs": 253.98802757263184, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1481.097936630249, - "thread": 140379289929472, + "relativeCreated": 1482.4869632720947, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51533,8 +51533,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:09,825", - "created": 1610361429.825892, + "asctime": "2021-01-14 00:25:52,254", + "created": 1610580352.254187, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51544,14 +51544,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 825.8919715881348, + "msecs": 254.18710708618164, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1481.30202293396, - "thread": 140379289929472, + "relativeCreated": 1482.6860427856445, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51559,8 +51559,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:09,826", - "created": 1610361429.826143, + "asctime": "2021-01-14 00:25:52,254", + "created": 1610580352.254436, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51570,14 +51570,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 826.1430263519287, + "msecs": 254.43601608276367, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1481.553077697754, - "thread": 140379289929472, + "relativeCreated": 1482.9349517822266, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51586,8 +51586,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:09,826", - "created": 1610361429.826336, + "asctime": "2021-01-14 00:25:52,254", + "created": 1610580352.254638, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51597,14 +51597,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 826.3359069824219, + "msecs": 254.6379566192627, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1481.745958328247, - "thread": 140379289929472, + "relativeCreated": 1483.1368923187256, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51612,8 +51612,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" ], - "asctime": "2021-01-11 11:37:09,826", - "created": 1610361429.82685, + "asctime": "2021-01-14 00:25:52,255", + "created": 1610580352.255122, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -51623,14 +51623,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", "module": "stp", - "msecs": 826.8499374389648, + "msecs": 255.12194633483887, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1482.25998878479, - "thread": 140379289929472, + "relativeCreated": 1483.6208820343018, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51641,50 +51641,50 @@ "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:09,827", - "created": 1610361429.827302, + "asctime": "2021-01-14 00:25:52,255", + "created": 1610580352.255553, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 827.3019790649414, + "msecs": 255.5530071258545, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1482.7120304107666, - "thread": 140379289929472, + "relativeCreated": 1484.0519428253174, + "thread": 140019658721024, "threadName": "Thread-4" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:09,827", - "created": 1610361429.827607, + "asctime": "2021-01-14 00:25:52,255", + "created": 1610580352.255852, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 827.6069164276123, + "msecs": 255.85198402404785, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1483.0169677734375, - "thread": 140379289929472, + "relativeCreated": 1484.3509197235107, + "thread": 140019658721024, "threadName": "Thread-4" }, { @@ -51694,46 +51694,46 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:10,094", - "created": 1610361430.094018, + "asctime": "2021-01-14 00:25:52,551", + "created": 1610580352.551481, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 94.01798248291016, + "msecs": 551.4810085296631, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1749.4280338287354, - "thread": 140379336402752, + "relativeCreated": 1779.979944229126, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 94.35391426086426, + "msecs": 551.8279075622559, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1749.7639656066895, - "thread": 140379336402752, + "relativeCreated": 1780.3268432617188, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00033593177795410156 + "time_consumption": 0.00034689903259277344 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:10,095", - "created": 1610361430.095262, + "asctime": "2021-01-14 00:25:52,552", + "created": 1610580352.552588, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51750,8 +51750,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,094", - "created": 1610361430.094891, + "asctime": "2021-01-14 00:25:52,552", + "created": 1610580352.552225, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51761,14 +51761,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 94.89107131958008, + "msecs": 552.2251129150391, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1750.3011226654053, - "thread": 140379336402752, + "relativeCreated": 1780.724048614502, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -51777,8 +51777,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,095", - "created": 1610361430.095088, + "asctime": "2021-01-14 00:25:52,552", + "created": 1610580352.552413, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51788,35 +51788,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 95.08800506591797, + "msecs": 552.4129867553711, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1750.4980564117432, - "thread": 140379336402752, + "relativeCreated": 1780.911922454834, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 95.26205062866211, + "msecs": 552.5879859924316, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1750.6721019744873, - "thread": 140379336402752, + "relativeCreated": 1781.0869216918945, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017404556274414062 + "time_consumption": 0.00017499923706054688 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:10,095", - "created": 1610361430.095844, + "asctime": "2021-01-14 00:25:52,553", + "created": 1610580352.553223, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51833,8 +51833,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:10,095", - "created": 1610361430.095527, + "asctime": "2021-01-14 00:25:52,552", + "created": 1610580352.552853, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51844,14 +51844,14 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by client): None ()", "module": "test", - "msecs": 95.52693367004395, + "msecs": 552.8531074523926, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1750.9369850158691, - "thread": 140379336402752, + "relativeCreated": 1781.3520431518555, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -51860,8 +51860,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:10,095", - "created": 1610361430.095688, + "asctime": "2021-01-14 00:25:52,553", + "created": 1610580352.553014, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51871,39 +51871,39 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by client): result = None ()", "module": "test", - "msecs": 95.6881046295166, + "msecs": 553.0140399932861, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1751.0981559753418, - "thread": 140379336402752, + "relativeCreated": 1781.512975692749, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 95.84403038024902, + "msecs": 553.2228946685791, "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1751.2540817260742, - "thread": 140379336402752, + "relativeCreated": 1781.721830368042, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00015592575073242188 + "time_consumption": 0.00020885467529296875 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.9599919319152832, - "time_finished": "2021-01-11 11:37:10,095", - "time_start": "2021-01-11 11:37:09,135" + "time_consumption": 0.9645237922668457, + "time_finished": "2021-01-14 00:25:52,553", + "time_start": "2021-01-14 00:25:51,588" }, "_ZOW3ME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:20,857", - "created": 1610361440.857069, + "asctime": "2021-01-14 00:26:03,415", + "created": 1610580363.415766, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51914,18 +51914,18 @@ "message": "_ZOW3ME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 857.0690155029297, + "msecs": 415.76600074768066, "msg": "_ZOW3ME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12512.479066848755, + "relativeCreated": 12644.264936447144, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:20,864", - "created": 1610361440.864066, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423166, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -51940,8 +51940,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:20,858", - "created": 1610361440.858386, + "asctime": "2021-01-14 00:26:03,417", + "created": 1610580363.417232, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51951,22 +51951,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 858.3860397338867, + "msecs": 417.2320365905762, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12513.796091079712, - "thread": 140379336402752, + "relativeCreated": 12645.730972290039, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:20,859", - "created": 1610361440.859539, + "asctime": "2021-01-14 00:26:03,418", + "created": 1610580363.418967, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51976,22 +51976,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 859.5390319824219, + "msecs": 418.96700859069824, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12514.949083328247, - "thread": 140379336402752, + "relativeCreated": 12647.465944290161, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:20,859", - "created": 1610361440.859697, + "asctime": "2021-01-14 00:26:03,419", + "created": 1610580363.419269, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52001,39 +52001,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 859.6971035003662, + "msecs": 419.2690849304199, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12515.107154846191, - "thread": 140379336402752, + "relativeCreated": 12647.768020629883, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860018, + "asctime": "2021-01-14 00:26:03,419", + "created": 1610580363.419787, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 860.0180149078369, + "msecs": 419.7869300842285, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12515.428066253662, - "thread": 140379336402752, + "relativeCreated": 12648.285865783691, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52042,25 +52042,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860146, + "asctime": "2021-01-14 00:26:03,419", + "created": 1610580363.419867, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 860.1460456848145, + "msecs": 419.86703872680664, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12515.55609703064, - "thread": 140379336402752, + "relativeCreated": 12648.36597442627, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52068,25 +52068,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860285, + "asctime": "2021-01-14 00:26:03,419", + "created": 1610580363.419957, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 860.2850437164307, + "msecs": 419.95692253112793, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12515.695095062256, - "thread": 140379336402752, + "relativeCreated": 12648.45585823059, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52094,25 +52094,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860399, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420017, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 860.3990077972412, + "msecs": 420.0170040130615, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12515.809059143066, - "thread": 140379336402752, + "relativeCreated": 12648.515939712524, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52120,25 +52120,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860498, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420079, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 860.4979515075684, + "msecs": 420.07899284362793, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12515.908002853394, - "thread": 140379336402752, + "relativeCreated": 12648.57792854309, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52146,25 +52146,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860591, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420133, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 860.590934753418, + "msecs": 420.133113861084, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.000986099243, - "thread": 140379336402752, + "relativeCreated": 12648.632049560547, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52174,8 +52174,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860701, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420211, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52185,14 +52185,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 860.7010841369629, + "msecs": 420.2110767364502, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.111135482788, - "thread": 140379336402752, + "relativeCreated": 12648.710012435913, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52202,8 +52202,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860825, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420305, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52213,14 +52213,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 860.8250617980957, + "msecs": 420.3050136566162, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.23511314392, - "thread": 140379336402752, + "relativeCreated": 12648.80394935608, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52230,8 +52230,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:20,860", - "created": 1610361440.860949, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420403, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52241,14 +52241,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 860.9490394592285, + "msecs": 420.40300369262695, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.359090805054, - "thread": 140379336402752, + "relativeCreated": 12648.90193939209, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52258,8 +52258,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861032, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420489, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52269,39 +52269,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 861.0320091247559, + "msecs": 420.4890727996826, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.442060470581, - "thread": 140379336402752, + "relativeCreated": 12648.988008499146, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861101, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.42057, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 861.1009120941162, + "msecs": 420.56989669799805, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.510963439941, - "thread": 140379336402752, + "relativeCreated": 12649.068832397461, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52310,25 +52310,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861182, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420672, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 861.1819744110107, + "msecs": 420.6719398498535, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.592025756836, - "thread": 140379336402752, + "relativeCreated": 12649.170875549316, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52336,25 +52336,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861261, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420761, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 861.2608909606934, + "msecs": 420.7611083984375, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.670942306519, - "thread": 140379336402752, + "relativeCreated": 12649.2600440979, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52362,25 +52362,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861336, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420843, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 861.3359928131104, + "msecs": 420.84288597106934, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.746044158936, - "thread": 140379336402752, + "relativeCreated": 12649.341821670532, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52390,8 +52390,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861415, + "asctime": "2021-01-14 00:26:03,420", + "created": 1610580363.420928, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52401,14 +52401,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 861.414909362793, + "msecs": 420.9280014038086, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.824960708618, - "thread": 140379336402752, + "relativeCreated": 12649.426937103271, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52418,8 +52418,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861503, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421072, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52429,14 +52429,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 861.5028858184814, + "msecs": 421.07200622558594, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.912937164307, - "thread": 140379336402752, + "relativeCreated": 12649.570941925049, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52445,25 +52445,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861576, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421197, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 861.5760803222656, + "msecs": 421.19693756103516, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12516.98613166809, - "thread": 140379336402752, + "relativeCreated": 12649.695873260498, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52472,25 +52472,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861648, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 861.6480827331543, + "msecs": 421.28705978393555, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.05813407898, - "thread": 140379336402752, + "relativeCreated": 12649.785995483398, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52499,75 +52499,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861715, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421371, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 861.7150783538818, + "msecs": 421.3709831237793, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.125129699707, - "thread": 140379336402752, + "relativeCreated": 12649.869918823242, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861786, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421456, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 861.785888671875, + "msecs": 421.45609855651855, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.1959400177, - "thread": 140379336402752, + "relativeCreated": 12649.955034255981, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,861", - "created": 1610361440.861971, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 861.9709014892578, + "msecs": 421.69690132141113, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.380952835083, - "thread": 140379336402752, + "relativeCreated": 12650.195837020874, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52576,25 +52576,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.862068, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421787, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 862.0679378509521, + "msecs": 421.7870235443115, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.477989196777, - "thread": 140379336402752, + "relativeCreated": 12650.285959243774, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52602,25 +52602,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.86219, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421896, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 862.1900081634521, + "msecs": 421.89598083496094, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.600059509277, - "thread": 140379336402752, + "relativeCreated": 12650.394916534424, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52628,25 +52628,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.862284, + "asctime": "2021-01-14 00:26:03,421", + "created": 1610580363.421984, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 862.2839450836182, + "msecs": 421.9839572906494, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.693996429443, - "thread": 140379336402752, + "relativeCreated": 12650.482892990112, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52654,25 +52654,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.86237, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422061, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 862.3700141906738, + "msecs": 422.0609664916992, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.780065536499, - "thread": 140379336402752, + "relativeCreated": 12650.559902191162, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52680,25 +52680,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.862452, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422136, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 862.4520301818848, + "msecs": 422.1360683441162, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.86208152771, - "thread": 140379336402752, + "relativeCreated": 12650.63500404358, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52708,8 +52708,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.862541, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422212, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52719,14 +52719,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 862.5409603118896, + "msecs": 422.2118854522705, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12517.951011657715, - "thread": 140379336402752, + "relativeCreated": 12650.710821151733, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52736,8 +52736,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.862652, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422364, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52747,14 +52747,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 862.652063369751, + "msecs": 422.3639965057373, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.062114715576, - "thread": 140379336402752, + "relativeCreated": 12650.8629322052, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52764,8 +52764,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.86275, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422427, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52775,14 +52775,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 862.7500534057617, + "msecs": 422.4269390106201, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.160104751587, - "thread": 140379336402752, + "relativeCreated": 12650.925874710083, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52792,8 +52792,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.862877, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422486, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52803,39 +52803,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 862.8768920898438, + "msecs": 422.4860668182373, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.286943435669, - "thread": 140379336402752, + "relativeCreated": 12650.9850025177, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,862", - "created": 1610361440.862981, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.42254, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 862.9810810089111, + "msecs": 422.53994941711426, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.391132354736, - "thread": 140379336402752, + "relativeCreated": 12651.038885116577, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52844,25 +52844,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863095, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422603, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 863.0950450897217, + "msecs": 422.60289192199707, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.505096435547, - "thread": 140379336402752, + "relativeCreated": 12651.10182762146, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52870,25 +52870,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863211, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422669, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 863.210916519165, + "msecs": 422.6689338684082, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.62096786499, - "thread": 140379336402752, + "relativeCreated": 12651.167869567871, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52896,25 +52896,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863324, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422725, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 863.3239269256592, + "msecs": 422.72496223449707, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.733978271484, - "thread": 140379336402752, + "relativeCreated": 12651.22389793396, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52924,8 +52924,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863451, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422782, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52935,14 +52935,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 863.4510040283203, + "msecs": 422.78194427490234, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.861055374146, - "thread": 140379336402752, + "relativeCreated": 12651.280879974365, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52952,8 +52952,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863569, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422848, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -52963,14 +52963,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 863.5690212249756, + "msecs": 422.8479862213135, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12518.9790725708, - "thread": 140379336402752, + "relativeCreated": 12651.346921920776, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -52979,25 +52979,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863673, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422909, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 863.6729717254639, + "msecs": 422.9090213775635, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.083023071289, - "thread": 140379336402752, + "relativeCreated": 12651.407957077026, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -53006,25 +53006,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863768, + "asctime": "2021-01-14 00:26:03,422", + "created": 1610580363.422963, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 863.7681007385254, + "msecs": 422.96290397644043, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.17815208435, - "thread": 140379336402752, + "relativeCreated": 12651.461839675903, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -53033,68 +53033,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863866, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 863.8660907745361, + "msecs": 423.0220317840576, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.276142120361, - "thread": 140379336402752, + "relativeCreated": 12651.52096748352, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,863", - "created": 1610361440.863964, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423095, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 863.9640808105469, + "msecs": 423.0949878692627, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.374132156372, - "thread": 140379336402752, + "relativeCreated": 12651.593923568726, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 864.0658855438232, + "msecs": 423.16603660583496, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.475936889648, - "thread": 140379336402752, + "relativeCreated": 12651.664972305298, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00010180473327636719 + "time_consumption": 7.104873657226562e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:21,208", - "created": 1610361441.208485, + "asctime": "2021-01-14 00:26:03,767", + "created": 1610580363.767169, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -53109,8 +53109,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:20,864", - "created": 1610361440.864278, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423298, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53120,22 +53120,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 864.2780780792236, + "msecs": 423.2978820800781, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.688129425049, - "thread": 140379336402752, + "relativeCreated": 12651.796817779541, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:20,864", - "created": 1610361440.86438, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423359, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53145,39 +53145,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 864.3798828125, + "msecs": 423.3589172363281, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.789934158325, - "thread": 140379336402752, + "relativeCreated": 12651.857852935791, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,864", - "created": 1610361440.864496, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423436, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 864.4959926605225, + "msecs": 423.43592643737793, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12519.906044006348, - "thread": 140379336402752, + "relativeCreated": 12651.93486213684, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -53188,33 +53188,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,864", - "created": 1610361440.864652, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.42355, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 864.6519184112549, + "msecs": 423.5498905181885, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12520.06196975708, - "thread": 140379336402752, + "relativeCreated": 12652.048826217651, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:20,864", - "created": 1610361440.864989, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423795, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53224,22 +53224,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 864.9890422821045, + "msecs": 423.7949848175049, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12520.39909362793, - "thread": 140379336402752, + "relativeCreated": 12652.293920516968, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:20,865", - "created": 1610361440.86511, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423888, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53249,39 +53249,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 865.109920501709, + "msecs": 423.8879680633545, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12520.519971847534, - "thread": 140379336402752, + "relativeCreated": 12652.386903762817, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:20,865", - "created": 1610361440.865219, + "asctime": "2021-01-14 00:26:03,423", + "created": 1610580363.423972, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 865.2191162109375, + "msecs": 423.97189140319824, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12520.629167556763, - "thread": 140379336402752, + "relativeCreated": 12652.470827102661, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -53289,8 +53289,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,865", - "created": 1610361440.865514, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424402, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53300,14 +53300,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 865.5140399932861, + "msecs": 424.40199851989746, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12520.924091339111, - "thread": 140378296534784, + "relativeCreated": 12652.90093421936, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53315,8 +53315,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,865", - "created": 1610361440.865707, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424538, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53326,14 +53326,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 865.7069206237793, + "msecs": 424.53789710998535, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.116971969604, - "thread": 140378296534784, + "relativeCreated": 12653.036832809448, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53341,8 +53341,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,865", - "created": 1610361440.865798, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53352,14 +53352,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 865.7979965209961, + "msecs": 424.59797859191895, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.208047866821, - "thread": 140378296534784, + "relativeCreated": 12653.096914291382, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53368,8 +53368,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:20,865", - "created": 1610361440.865889, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424659, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53379,14 +53379,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 865.8890724182129, + "msecs": 424.65901374816895, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.299123764038, - "thread": 140378296534784, + "relativeCreated": 12653.157949447632, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53394,8 +53394,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,865", - "created": 1610361440.865996, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424727, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53405,14 +53405,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 865.9958839416504, + "msecs": 424.7269630432129, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.405935287476, - "thread": 140378296534784, + "relativeCreated": 12653.225898742676, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53421,8 +53421,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866079, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.42478, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53432,14 +53432,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 866.0790920257568, + "msecs": 424.77989196777344, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.489143371582, - "thread": 140378296534784, + "relativeCreated": 12653.278827667236, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53447,8 +53447,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866201, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424856, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53458,14 +53458,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 866.2009239196777, + "msecs": 424.85594749450684, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.610975265503, - "thread": 140378296534784, + "relativeCreated": 12653.35488319397, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53474,8 +53474,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866284, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424908, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53485,14 +53485,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 866.2838935852051, + "msecs": 424.907922744751, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.69394493103, - "thread": 140378296534784, + "relativeCreated": 12653.406858444214, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53500,8 +53500,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866394, + "asctime": "2021-01-14 00:26:03,424", + "created": 1610580363.424976, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53511,14 +53511,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 866.39404296875, + "msecs": 424.976110458374, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.804094314575, - "thread": 140378296534784, + "relativeCreated": 12653.475046157837, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53527,8 +53527,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866494, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425027, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53538,14 +53538,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 866.4939403533936, + "msecs": 425.02689361572266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12521.903991699219, - "thread": 140378296534784, + "relativeCreated": 12653.525829315186, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53553,8 +53553,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866632, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425098, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53564,14 +53564,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 866.6319847106934, + "msecs": 425.0979423522949, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.042036056519, - "thread": 140378296534784, + "relativeCreated": 12653.596878051758, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53580,8 +53580,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866729, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425163, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53591,14 +53591,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 866.7290210723877, + "msecs": 425.16303062438965, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.139072418213, - "thread": 140378296534784, + "relativeCreated": 12653.661966323853, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53606,8 +53606,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866877, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.42524, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53617,14 +53617,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 866.8770790100098, + "msecs": 425.24003982543945, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.287130355835, - "thread": 140378296534784, + "relativeCreated": 12653.738975524902, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53632,8 +53632,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:20,866", - "created": 1610361440.866977, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425302, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53643,14 +53643,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 866.9769763946533, + "msecs": 425.30202865600586, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.387027740479, - "thread": 140378296534784, + "relativeCreated": 12653.800964355469, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53658,8 +53658,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,867", - "created": 1610361440.867086, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425361, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53669,14 +53669,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 867.0859336853027, + "msecs": 425.36091804504395, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.495985031128, - "thread": 140378296534784, + "relativeCreated": 12653.859853744507, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53685,8 +53685,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:20,867", - "created": 1610361440.867153, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425413, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53696,14 +53696,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 867.1529293060303, + "msecs": 425.4128932952881, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.562980651855, - "thread": 140378296534784, + "relativeCreated": 12653.911828994751, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53711,8 +53711,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:20,867", - "created": 1610361440.867296, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425538, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53722,14 +53722,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 867.2959804534912, + "msecs": 425.5380630493164, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.706031799316, - "thread": 140378296534784, + "relativeCreated": 12654.03699874878, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53740,25 +53740,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,867", - "created": 1610361440.867466, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425694, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 867.4659729003906, + "msecs": 425.6939888000488, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.876024246216, - "thread": 140378296534784, + "relativeCreated": 12654.192924499512, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53766,25 +53766,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:20,867", - "created": 1610361440.867582, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.42579, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 867.5820827484131, + "msecs": 425.79007148742676, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12522.992134094238, - "thread": 140378296534784, + "relativeCreated": 12654.28900718689, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53795,25 +53795,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,867", - "created": 1610361440.86773, + "asctime": "2021-01-14 00:26:03,425", + "created": 1610580363.425906, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 867.729902267456, + "msecs": 425.9059429168701, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12523.139953613281, - "thread": 140378296534784, + "relativeCreated": 12654.404878616333, + "thread": 140018660132608, "threadName": "Thread-17" }, { @@ -53821,8 +53821,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,869", - "created": 1610361440.86951, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427358, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53832,14 +53832,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 869.5099353790283, + "msecs": 427.35791206359863, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12524.919986724854, - "thread": 140378288142080, + "relativeCreated": 12655.856847763062, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -53847,8 +53847,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,869", - "created": 1610361440.869685, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427524, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -53858,14 +53858,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 869.6849346160889, + "msecs": 427.5240898132324, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.094985961914, - "thread": 140378288142080, + "relativeCreated": 12656.023025512695, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -53873,8 +53873,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,869", - "created": 1610361440.869768, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427602, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53884,14 +53884,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 869.7679042816162, + "msecs": 427.60205268859863, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.177955627441, - "thread": 140378288142080, + "relativeCreated": 12656.100988388062, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -53900,8 +53900,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:20,869", - "created": 1610361440.869845, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427676, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53911,14 +53911,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 869.844913482666, + "msecs": 427.6759624481201, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.254964828491, - "thread": 140378288142080, + "relativeCreated": 12656.174898147583, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -53926,8 +53926,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,869", - "created": 1610361440.869934, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427759, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53937,14 +53937,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 869.93408203125, + "msecs": 427.75893211364746, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.344133377075, - "thread": 140378288142080, + "relativeCreated": 12656.25786781311, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -53953,8 +53953,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870004, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427813, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53964,14 +53964,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 870.0039386749268, + "msecs": 427.8130531311035, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.413990020752, - "thread": 140378288142080, + "relativeCreated": 12656.311988830566, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -53979,8 +53979,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.87011, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427892, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -53990,14 +53990,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 870.110034942627, + "msecs": 427.89196968078613, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.520086288452, - "thread": 140378288142080, + "relativeCreated": 12656.390905380249, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54006,8 +54006,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870177, + "asctime": "2021-01-14 00:26:03,427", + "created": 1610580363.427946, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54017,14 +54017,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 870.1770305633545, + "msecs": 427.9460906982422, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.58708190918, - "thread": 140378288142080, + "relativeCreated": 12656.445026397705, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54032,8 +54032,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870265, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428016, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54043,14 +54043,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 870.265007019043, + "msecs": 428.01594734191895, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.675058364868, - "thread": 140378288142080, + "relativeCreated": 12656.514883041382, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54059,8 +54059,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870331, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428069, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54070,14 +54070,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 870.3310489654541, + "msecs": 428.0691146850586, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.74110031128, - "thread": 140378288142080, + "relativeCreated": 12656.568050384521, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54085,8 +54085,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870426, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428151, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54096,14 +54096,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 870.4259395599365, + "msecs": 428.15089225769043, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.835990905762, - "thread": 140378288142080, + "relativeCreated": 12656.649827957153, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54112,8 +54112,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870493, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428222, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54123,14 +54123,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 870.4929351806641, + "msecs": 428.2219409942627, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12525.90298652649, - "thread": 140378288142080, + "relativeCreated": 12656.720876693726, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54138,8 +54138,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870598, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428304, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54149,14 +54149,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 870.5980777740479, + "msecs": 428.30395698547363, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12526.008129119873, - "thread": 140378288142080, + "relativeCreated": 12656.802892684937, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54164,8 +54164,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870676, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428367, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54175,14 +54175,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 870.6760406494141, + "msecs": 428.36689949035645, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12526.08609199524, - "thread": 140378288142080, + "relativeCreated": 12656.86583518982, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54190,8 +54190,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870755, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428425, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54201,14 +54201,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 870.7549571990967, + "msecs": 428.4250736236572, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12526.165008544922, - "thread": 140378288142080, + "relativeCreated": 12656.92400932312, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54217,8 +54217,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870821, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428477, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54228,14 +54228,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 870.8209991455078, + "msecs": 428.47704887390137, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12526.231050491333, - "thread": 140378288142080, + "relativeCreated": 12656.975984573364, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54243,8 +54243,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:20,870", - "created": 1610361440.870955, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428584, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -54254,14 +54254,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 870.9549903869629, + "msecs": 428.58409881591797, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12526.365041732788, - "thread": 140378288142080, + "relativeCreated": 12657.08303451538, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54272,25 +54272,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,871", - "created": 1610361440.87115, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 871.150016784668, + "msecs": 428.70402336120605, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12526.560068130493, - "thread": 140378288142080, + "relativeCreated": 12657.202959060669, + "thread": 140018651739904, "threadName": "Thread-18" }, { @@ -54298,43 +54298,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:20,871", - "created": 1610361440.871237, + "asctime": "2021-01-14 00:26:03,428", + "created": 1610580363.428775, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 871.23703956604, + "msecs": 428.7750720977783, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12526.647090911865, - "thread": 140378288142080, + "relativeCreated": 12657.274007797241, + "thread": 140018651739904, "threadName": "Thread-18" } ], - "msecs": 208.48488807678223, + "msecs": 767.1689987182617, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12863.894939422607, - "thread": 140379336402752, + "relativeCreated": 12995.667934417725, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3372478485107422 + "time_consumption": 0.3383939266204834 }, { "args": [], - "asctime": "2021-01-11 11:37:21,209", - "created": 1610361441.209331, + "asctime": "2021-01-14 00:26:03,767", + "created": 1610580363.767993, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54351,43 +54351,43 @@ 10, 18 ], - "asctime": "2021-01-11 11:37:21,209", - "created": 1610361441.209104, + "asctime": "2021-01-14 00:26:03,767", + "created": 1610580363.767801, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 571, + "lineno": 583, "message": "prot-server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", "module": "__init__", - "msecs": 209.10406112670898, + "msecs": 767.80104637146, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because request SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12864.514112472534, - "thread": 140379336402752, + "relativeCreated": 12996.299982070923, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 209.33103561401367, + "msecs": 767.9929733276367, "msg": "Adding a service with an already registered request SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12864.741086959839, - "thread": 140379336402752, + "relativeCreated": 12996.4919090271, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002269744873046875 + "time_consumption": 0.0001919269561767578 }, { "args": [], - "asctime": "2021-01-11 11:37:21,209", - "created": 1610361441.209608, + "asctime": "2021-01-14 00:26:03,768", + "created": 1610580363.768224, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54398,21 +54398,21 @@ "message": "Expected Exception RequestSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 209.6080780029297, + "msecs": 768.2240009307861, "msg": "Expected Exception RequestSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12865.018129348755, - "thread": 140379336402752, + "relativeCreated": 12996.722936630249, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:21,210", - "created": 1610361441.21007, + "asctime": "2021-01-14 00:26:03,768", + "created": 1610580363.768581, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54429,43 +54429,43 @@ 17, 11 ], - "asctime": "2021-01-11 11:37:21,209", - "created": 1610361441.209882, + "asctime": "2021-01-14 00:26:03,768", + "created": 1610580363.768438, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 574, + "lineno": 586, "message": "prot-server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", "module": "__init__", - "msecs": 209.88202095031738, + "msecs": 768.4381008148193, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because response SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12865.292072296143, - "thread": 140379336402752, + "relativeCreated": 12996.937036514282, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 210.0698947906494, + "msecs": 768.5809135437012, "msg": "Adding a service with an already registered response SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12865.479946136475, - "thread": 140379336402752, + "relativeCreated": 12997.079849243164, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018787384033203125 + "time_consumption": 0.00014281272888183594 }, { "args": [], - "asctime": "2021-01-11 11:37:21,210", - "created": 1610361441.210391, + "asctime": "2021-01-14 00:26:03,768", + "created": 1610580363.768881, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54476,28 +54476,28 @@ "message": "Expected Exception ResponseSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 210.39104461669922, + "msecs": 768.88108253479, "msg": "Expected Exception ResponseSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12865.801095962524, - "thread": 140379336402752, + "relativeCreated": 12997.380018234253, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.35332202911376953, - "time_finished": "2021-01-11 11:37:21,210", - "time_start": "2021-01-11 11:37:20,857" + "time_consumption": 0.3531150817871094, + "time_finished": "2021-01-14 00:26:03,768", + "time_start": "2021-01-14 00:26:03,415" }, "_aA508E4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:25,028", - "created": 1610361445.028718, + "asctime": "2021-01-14 00:26:07,588", + "created": 1610580367.588324, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54508,18 +54508,18 @@ "message": "_aA508E4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 28.717994689941406, + "msecs": 588.3240699768066, "msg": "_aA508E4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16684.128046035767, + "relativeCreated": 16816.82300567627, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039512, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.60191, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -54534,8 +54534,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,030", - "created": 1610361445.030307, + "asctime": "2021-01-14 00:26:07,589", + "created": 1610580367.589571, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54545,22 +54545,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 30.30705451965332, + "msecs": 589.5709991455078, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16685.71710586548, - "thread": 140379336402752, + "relativeCreated": 16818.06993484497, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,031", - "created": 1610361445.031436, + "asctime": "2021-01-14 00:26:07,590", + "created": 1610580367.590701, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54570,22 +54570,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 31.43596649169922, + "msecs": 590.7011032104492, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16686.846017837524, - "thread": 140379336402752, + "relativeCreated": 16819.200038909912, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,031", - "created": 1610361445.031551, + "asctime": "2021-01-14 00:26:07,590", + "created": 1610580367.590954, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54595,39 +54595,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 31.550884246826172, + "msecs": 590.954065322876, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16686.96093559265, - "thread": 140379336402752, + "relativeCreated": 16819.45300102234, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,031", - "created": 1610361445.031797, + "asctime": "2021-01-14 00:26:07,591", + "created": 1610580367.591734, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 31.796932220458984, + "msecs": 591.7339324951172, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.206983566284, - "thread": 140379336402752, + "relativeCreated": 16820.23286819458, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54636,25 +54636,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:25,031", - "created": 1610361445.031901, + "asctime": "2021-01-14 00:26:07,591", + "created": 1610580367.591977, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 31.900882720947266, + "msecs": 591.9768810272217, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.310934066772, - "thread": 140379336402752, + "relativeCreated": 16820.475816726685, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54662,25 +54662,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032028, + "asctime": "2021-01-14 00:26:07,592", + "created": 1610580367.592214, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 32.0279598236084, + "msecs": 592.2141075134277, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.438011169434, - "thread": 140379336402752, + "relativeCreated": 16820.71304321289, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54688,25 +54688,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032119, + "asctime": "2021-01-14 00:26:07,592", + "created": 1610580367.592384, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 32.119035720825195, + "msecs": 592.3840999603271, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.52908706665, - "thread": 140379336402752, + "relativeCreated": 16820.88303565979, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54714,25 +54714,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032203, + "asctime": "2021-01-14 00:26:07,592", + "created": 1610580367.59255, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 32.202959060668945, + "msecs": 592.5500392913818, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.613010406494, - "thread": 140379336402752, + "relativeCreated": 16821.048974990845, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54740,25 +54740,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032289, + "asctime": "2021-01-14 00:26:07,592", + "created": 1610580367.592731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 32.28902816772461, + "msecs": 592.7309989929199, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.69907951355, - "thread": 140379336402752, + "relativeCreated": 16821.229934692383, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54768,8 +54768,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032391, + "asctime": "2021-01-14 00:26:07,592", + "created": 1610580367.592937, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54779,14 +54779,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 32.39107131958008, + "msecs": 592.9369926452637, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.801122665405, - "thread": 140379336402752, + "relativeCreated": 16821.435928344727, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54796,8 +54796,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032497, + "asctime": "2021-01-14 00:26:07,593", + "created": 1610580367.593142, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54807,14 +54807,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 32.49692916870117, + "msecs": 593.142032623291, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16687.906980514526, - "thread": 140379336402752, + "relativeCreated": 16821.640968322754, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54824,8 +54824,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032593, + "asctime": "2021-01-14 00:26:07,593", + "created": 1610580367.593335, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54835,14 +54835,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 32.5930118560791, + "msecs": 593.3349132537842, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16688.003063201904, - "thread": 140379336402752, + "relativeCreated": 16821.833848953247, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54852,8 +54852,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032688, + "asctime": "2021-01-14 00:26:07,593", + "created": 1610580367.593548, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54863,39 +54863,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 32.68790245056152, + "msecs": 593.548059463501, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16688.097953796387, - "thread": 140379336402752, + "relativeCreated": 16822.046995162964, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032785, + "asctime": "2021-01-14 00:26:07,593", + "created": 1610580367.593718, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 32.78493881225586, + "msecs": 593.7180519104004, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16688.19499015808, - "thread": 140379336402752, + "relativeCreated": 16822.216987609863, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54904,25 +54904,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:25,032", - "created": 1610361445.032893, + "asctime": "2021-01-14 00:26:07,593", + "created": 1610580367.593909, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 32.89294242858887, + "msecs": 593.9090251922607, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16688.302993774414, - "thread": 140379336402752, + "relativeCreated": 16822.407960891724, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54930,25 +54930,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:25,036", - "created": 1610361445.036249, + "asctime": "2021-01-14 00:26:07,594", + "created": 1610580367.59411, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 36.24892234802246, + "msecs": 594.1100120544434, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16691.658973693848, - "thread": 140379336402752, + "relativeCreated": 16822.608947753906, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54956,25 +54956,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:25,036", - "created": 1610361445.036612, + "asctime": "2021-01-14 00:26:07,599", + "created": 1610580367.599621, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 36.61203384399414, + "msecs": 599.621057510376, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16692.02208518982, - "thread": 140379336402752, + "relativeCreated": 16828.11999320984, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -54984,8 +54984,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:25,036", - "created": 1610361445.036739, + "asctime": "2021-01-14 00:26:07,599", + "created": 1610580367.599863, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -54995,14 +54995,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 36.73911094665527, + "msecs": 599.8630523681641, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16692.14916229248, - "thread": 140379336402752, + "relativeCreated": 16828.361988067627, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55012,8 +55012,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:25,036", - "created": 1610361445.036856, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600143, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55023,14 +55023,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 36.85593605041504, + "msecs": 600.1429557800293, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16692.26598739624, - "thread": 140379336402752, + "relativeCreated": 16828.641891479492, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55039,25 +55039,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:25,036", - "created": 1610361445.036962, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600314, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 36.962032318115234, + "msecs": 600.3139019012451, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16692.37208366394, - "thread": 140379336402752, + "relativeCreated": 16828.812837600708, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55066,25 +55066,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:25,037", - "created": 1610361445.037055, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600398, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 37.055015563964844, + "msecs": 600.398063659668, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16692.46506690979, - "thread": 140379336402752, + "relativeCreated": 16828.89699935913, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55093,75 +55093,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:25,037", - "created": 1610361445.037147, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600473, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 37.14704513549805, + "msecs": 600.4729270935059, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16692.557096481323, - "thread": 140379336402752, + "relativeCreated": 16828.97186279297, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,037", - "created": 1610361445.037239, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600544, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 37.23907470703125, + "msecs": 600.5439758300781, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16692.649126052856, - "thread": 140379336402752, + "relativeCreated": 16829.04291152954, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,037", - "created": 1610361445.037634, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600806, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 37.63389587402344, + "msecs": 600.8059978485107, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.04394721985, - "thread": 140379336402752, + "relativeCreated": 16829.304933547974, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55170,25 +55170,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:25,037", - "created": 1610361445.037744, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600876, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 37.74404525756836, + "msecs": 600.8760929107666, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.154096603394, - "thread": 140379336402752, + "relativeCreated": 16829.37502861023, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55196,25 +55196,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,037", - "created": 1610361445.03785, + "asctime": "2021-01-14 00:26:07,600", + "created": 1610580367.600956, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 37.84990310668945, + "msecs": 600.9559631347656, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.259954452515, - "thread": 140379336402752, + "relativeCreated": 16829.45489883423, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55222,25 +55222,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,037", - "created": 1610361445.037927, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601011, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 37.92691230773926, + "msecs": 601.0110378265381, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.336963653564, - "thread": 140379336402752, + "relativeCreated": 16829.509973526, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55248,25 +55248,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038015, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601063, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 38.014888763427734, + "msecs": 601.0630130767822, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.424940109253, - "thread": 140379336402752, + "relativeCreated": 16829.561948776245, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55274,25 +55274,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038097, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 38.09690475463867, + "msecs": 601.1309623718262, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.506956100464, - "thread": 140379336402752, + "relativeCreated": 16829.62989807129, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55302,8 +55302,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038192, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.60118, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55313,14 +55313,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 38.192033767700195, + "msecs": 601.1800765991211, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.602085113525, - "thread": 140379336402752, + "relativeCreated": 16829.679012298584, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55330,8 +55330,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038286, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.60123, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55341,14 +55341,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 38.28597068786621, + "msecs": 601.2299060821533, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.69602203369, - "thread": 140379336402752, + "relativeCreated": 16829.728841781616, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55358,8 +55358,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038373, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601278, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55369,14 +55369,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 38.37299346923828, + "msecs": 601.2780666351318, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.783044815063, - "thread": 140379336402752, + "relativeCreated": 16829.777002334595, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55386,8 +55386,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038463, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601325, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55397,39 +55397,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 38.46311569213867, + "msecs": 601.3250350952148, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.873167037964, - "thread": 140379336402752, + "relativeCreated": 16829.823970794678, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038548, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601371, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 38.54799270629883, + "msecs": 601.3710498809814, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16693.958044052124, - "thread": 140379336402752, + "relativeCreated": 16829.869985580444, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55438,25 +55438,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.03865, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601431, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 38.6500358581543, + "msecs": 601.4308929443359, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.06008720398, - "thread": 140379336402752, + "relativeCreated": 16829.9298286438, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55464,25 +55464,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038748, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601492, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 38.74802589416504, + "msecs": 601.4919281005859, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.15807723999, - "thread": 140379336402752, + "relativeCreated": 16829.99086380005, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55490,25 +55490,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038839, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601544, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 38.839101791381836, + "msecs": 601.5439033508301, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.249153137207, - "thread": 140379336402752, + "relativeCreated": 16830.042839050293, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55518,8 +55518,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:25,038", - "created": 1610361445.038935, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601601, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55529,14 +55529,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 38.934946060180664, + "msecs": 601.6008853912354, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.344997406006, - "thread": 140379336402752, + "relativeCreated": 16830.0998210907, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55546,8 +55546,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039026, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601648, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55557,14 +55557,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 39.02602195739746, + "msecs": 601.6480922698975, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.436073303223, - "thread": 140379336402752, + "relativeCreated": 16830.14702796936, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55573,25 +55573,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039119, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601693, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 39.11900520324707, + "msecs": 601.6929149627686, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.529056549072, - "thread": 140379336402752, + "relativeCreated": 16830.19185066223, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55600,25 +55600,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039203, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601735, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 39.20292854309082, + "msecs": 601.7351150512695, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.612979888916, - "thread": 140379336402752, + "relativeCreated": 16830.234050750732, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55627,68 +55627,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039285, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601785, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 39.28494453430176, + "msecs": 601.7849445343018, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.694995880127, - "thread": 140379336402752, + "relativeCreated": 16830.283880233765, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039374, + "asctime": "2021-01-14 00:26:07,601", + "created": 1610580367.601846, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 39.37411308288574, + "msecs": 601.8459796905518, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.78416442871, - "thread": 140379336402752, + "relativeCreated": 16830.344915390015, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 39.511919021606445, + "msecs": 601.9101142883301, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16694.92197036743, - "thread": 140379336402752, + "relativeCreated": 16830.409049987793, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00013780593872070312 + "time_consumption": 6.413459777832031e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:25,383", - "created": 1610361445.383908, + "asctime": "2021-01-14 00:26:07,945", + "created": 1610580367.945759, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -55703,8 +55703,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039759, + "asctime": "2021-01-14 00:26:07,602", + "created": 1610580367.602068, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55714,22 +55714,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 39.758920669555664, + "msecs": 602.0679473876953, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16695.16897201538, - "thread": 140379336402752, + "relativeCreated": 16830.56688308716, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039867, + "asctime": "2021-01-14 00:26:07,602", + "created": 1610580367.602134, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55739,39 +55739,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 39.86692428588867, + "msecs": 602.1339893341064, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16695.276975631714, - "thread": 140379336402752, + "relativeCreated": 16830.63292503357, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,039", - "created": 1610361445.039969, + "asctime": "2021-01-14 00:26:07,602", + "created": 1610580367.602199, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 39.96896743774414, + "msecs": 602.1990776062012, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16695.37901878357, - "thread": 140379336402752, + "relativeCreated": 16830.698013305664, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55782,33 +55782,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,040", - "created": 1610361445.040121, + "asctime": "2021-01-14 00:26:07,602", + "created": 1610580367.602303, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 40.12107849121094, + "msecs": 602.3030281066895, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16695.531129837036, - "thread": 140379336402752, + "relativeCreated": 16830.801963806152, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,040", - "created": 1610361445.040451, + "asctime": "2021-01-14 00:26:07,602", + "created": 1610580367.602529, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55818,22 +55818,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 40.4510498046875, + "msecs": 602.5290489196777, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16695.861101150513, - "thread": 140379336402752, + "relativeCreated": 16831.02798461914, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,040", - "created": 1610361445.04054, + "asctime": "2021-01-14 00:26:07,602", + "created": 1610580367.602597, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55843,39 +55843,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 40.53997993469238, + "msecs": 602.5969982147217, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16695.950031280518, - "thread": 140379336402752, + "relativeCreated": 16831.095933914185, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,040", - "created": 1610361445.040615, + "asctime": "2021-01-14 00:26:07,602", + "created": 1610580367.602658, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 40.615081787109375, + "msecs": 602.6580333709717, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16696.025133132935, - "thread": 140379336402752, + "relativeCreated": 16831.156969070435, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -55883,8 +55883,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,043", - "created": 1610361445.043645, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.6042, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55894,14 +55894,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 43.64490509033203, + "msecs": 604.1998863220215, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.054956436157, - "thread": 140377239578368, + "relativeCreated": 16832.698822021484, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -55909,8 +55909,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,043", - "created": 1610361445.043811, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604371, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55920,14 +55920,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 43.81108283996582, + "msecs": 604.3710708618164, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.22113418579, - "thread": 140377239578368, + "relativeCreated": 16832.87000656128, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -55935,8 +55935,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,043", - "created": 1610361445.043876, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604448, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -55946,14 +55946,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 43.875932693481445, + "msecs": 604.4480800628662, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.285984039307, - "thread": 140377239578368, + "relativeCreated": 16832.94701576233, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -55962,8 +55962,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,043", - "created": 1610361445.043934, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604513, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -55973,14 +55973,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 43.93410682678223, + "msecs": 604.5129299163818, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.344158172607, - "thread": 140377239578368, + "relativeCreated": 16833.011865615845, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -55988,8 +55988,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044007, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -55999,14 +55999,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 44.007062911987305, + "msecs": 604.5980453491211, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.417114257812, - "thread": 140377239578368, + "relativeCreated": 16833.096981048584, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56015,8 +56015,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.04407, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604664, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56026,14 +56026,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 44.07000541687012, + "msecs": 604.6640872955322, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.480056762695, - "thread": 140377239578368, + "relativeCreated": 16833.163022994995, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56041,8 +56041,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044143, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604747, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56052,14 +56052,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 44.142961502075195, + "msecs": 604.7470569610596, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.5530128479, - "thread": 140377239578368, + "relativeCreated": 16833.245992660522, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56068,8 +56068,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044207, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604798, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56079,14 +56079,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 44.207096099853516, + "msecs": 604.7980785369873, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.61714744568, - "thread": 140377239578368, + "relativeCreated": 16833.29701423645, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56094,8 +56094,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044289, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604875, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56105,14 +56105,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 44.28911209106445, + "msecs": 604.8750877380371, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.69916343689, - "thread": 140377239578368, + "relativeCreated": 16833.3740234375, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56121,8 +56121,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044366, + "asctime": "2021-01-14 00:26:07,604", + "created": 1610580367.604939, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56132,14 +56132,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 44.365882873535156, + "msecs": 604.9389839172363, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.77593421936, - "thread": 140377239578368, + "relativeCreated": 16833.4379196167, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56147,8 +56147,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044449, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605025, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56158,14 +56158,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 44.4490909576416, + "msecs": 605.025053024292, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.859142303467, - "thread": 140377239578368, + "relativeCreated": 16833.523988723755, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56174,8 +56174,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044549, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605086, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56185,14 +56185,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 44.548988342285156, + "msecs": 605.086088180542, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16699.95903968811, - "thread": 140377239578368, + "relativeCreated": 16833.585023880005, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56200,8 +56200,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044653, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605195, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -56211,14 +56211,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 44.65293884277344, + "msecs": 605.1950454711914, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.0629901886, - "thread": 140377239578368, + "relativeCreated": 16833.693981170654, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56226,8 +56226,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044758, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605269, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -56237,14 +56237,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 44.75808143615723, + "msecs": 605.2689552307129, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.168132781982, - "thread": 140377239578368, + "relativeCreated": 16833.767890930176, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56252,8 +56252,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044822, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605318, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56263,14 +56263,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 44.821977615356445, + "msecs": 605.3180694580078, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.23202896118, - "thread": 140377239578368, + "relativeCreated": 16833.81700515747, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56279,8 +56279,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044874, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56290,14 +56290,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 44.873952865600586, + "msecs": 605.3590774536133, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.284004211426, - "thread": 140377239578368, + "relativeCreated": 16833.858013153076, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56305,8 +56305,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:25,044", - "created": 1610361445.044982, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605443, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56316,14 +56316,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 44.981956481933594, + "msecs": 605.443000793457, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.39200782776, - "thread": 140377239578368, + "relativeCreated": 16833.94193649292, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56334,25 +56334,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,045", - "created": 1610361445.04512, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605553, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 45.1200008392334, + "msecs": 605.5529117584229, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.53005218506, - "thread": 140377239578368, + "relativeCreated": 16834.051847457886, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56360,25 +56360,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:25,045", - "created": 1610361445.045192, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605626, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 45.19200325012207, + "msecs": 605.626106262207, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.602054595947, - "thread": 140377239578368, + "relativeCreated": 16834.12504196167, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56389,25 +56389,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,045", - "created": 1610361445.045282, + "asctime": "2021-01-14 00:26:07,605", + "created": 1610580367.605719, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 45.28188705444336, + "msecs": 605.7190895080566, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16700.69193840027, - "thread": 140377239578368, + "relativeCreated": 16834.21802520752, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -56415,8 +56415,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,051", - "created": 1610361445.051866, + "asctime": "2021-01-14 00:26:07,606", + "created": 1610580367.60685, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -56426,14 +56426,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 51.86605453491211, + "msecs": 606.8499088287354, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.276105880737, - "thread": 140377231185664, + "relativeCreated": 16835.3488445282, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56441,8 +56441,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052018, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607019, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -56452,14 +56452,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 52.017927169799805, + "msecs": 607.0189476013184, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.427978515625, - "thread": 140377231185664, + "relativeCreated": 16835.51788330078, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56467,8 +56467,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.05209, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607099, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56478,14 +56478,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 52.08992958068848, + "msecs": 607.0990562438965, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.499980926514, - "thread": 140377231185664, + "relativeCreated": 16835.59799194336, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56494,8 +56494,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052149, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607171, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56505,14 +56505,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 52.149057388305664, + "msecs": 607.1710586547852, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.55910873413, - "thread": 140377231185664, + "relativeCreated": 16835.669994354248, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56520,8 +56520,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052223, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607264, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56531,14 +56531,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 52.22296714782715, + "msecs": 607.2640419006348, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.633018493652, - "thread": 140377231185664, + "relativeCreated": 16835.762977600098, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56547,8 +56547,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052277, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607333, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56558,14 +56558,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 52.2770881652832, + "msecs": 607.3329448699951, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.68713951111, - "thread": 140377231185664, + "relativeCreated": 16835.831880569458, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56573,8 +56573,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052351, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607438, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56584,14 +56584,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 52.35099792480469, + "msecs": 607.4380874633789, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.76104927063, - "thread": 140377231185664, + "relativeCreated": 16835.93702316284, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56600,8 +56600,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052404, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.60749, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56611,14 +56611,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 52.403926849365234, + "msecs": 607.490062713623, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.81397819519, - "thread": 140377231185664, + "relativeCreated": 16835.988998413086, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56626,8 +56626,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052503, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607554, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56637,14 +56637,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 52.503108978271484, + "msecs": 607.5539588928223, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16707.913160324097, - "thread": 140377231185664, + "relativeCreated": 16836.052894592285, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56653,8 +56653,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052604, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607603, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56664,14 +56664,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 52.603960037231445, + "msecs": 607.6030731201172, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.014011383057, - "thread": 140377231185664, + "relativeCreated": 16836.10200881958, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56679,8 +56679,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052699, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607671, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56690,14 +56690,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 52.69908905029297, + "msecs": 607.6710224151611, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.109140396118, - "thread": 140377231185664, + "relativeCreated": 16836.169958114624, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56706,8 +56706,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052774, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607719, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56717,14 +56717,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 52.77395248413086, + "msecs": 607.7189445495605, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.184003829956, - "thread": 140377231185664, + "relativeCreated": 16836.217880249023, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56732,8 +56732,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052898, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607818, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -56743,14 +56743,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 52.89793014526367, + "msecs": 607.8178882598877, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.30798149109, - "thread": 140377231185664, + "relativeCreated": 16836.31682395935, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56758,8 +56758,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:25,052", - "created": 1610361445.052995, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607901, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -56769,14 +56769,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 52.99496650695801, + "msecs": 607.9010963439941, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.405017852783, - "thread": 140377231185664, + "relativeCreated": 16836.400032043457, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56784,8 +56784,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,053", - "created": 1610361445.053079, + "asctime": "2021-01-14 00:26:07,607", + "created": 1610580367.607971, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56795,14 +56795,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 53.07888984680176, + "msecs": 607.9709529876709, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.488941192627, - "thread": 140377231185664, + "relativeCreated": 16836.469888687134, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56811,8 +56811,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,053", - "created": 1610361445.053155, + "asctime": "2021-01-14 00:26:07,608", + "created": 1610580367.608031, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56822,14 +56822,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 53.154945373535156, + "msecs": 608.0310344696045, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.56499671936, - "thread": 140377231185664, + "relativeCreated": 16836.529970169067, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56837,8 +56837,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:25,053", - "created": 1610361445.053299, + "asctime": "2021-01-14 00:26:07,608", + "created": 1610580367.608155, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -56848,14 +56848,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 53.2989501953125, + "msecs": 608.1550121307373, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.709001541138, - "thread": 140377231185664, + "relativeCreated": 16836.6539478302, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56866,25 +56866,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,053", - "created": 1610361445.053426, + "asctime": "2021-01-14 00:26:07,608", + "created": 1610580367.608285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 53.42602729797363, + "msecs": 608.2849502563477, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.8360786438, - "thread": 140377231185664, + "relativeCreated": 16836.78388595581, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -56892,46 +56892,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:25,053", - "created": 1610361445.053495, + "asctime": "2021-01-14 00:26:07,608", + "created": 1610580367.608363, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 53.494930267333984, + "msecs": 608.3629131317139, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16708.90498161316, - "thread": 140377231185664, + "relativeCreated": 16836.861848831177, + "thread": 140017594783488, "threadName": "Thread-30" } ], - "msecs": 383.9080333709717, + "msecs": 945.7590579986572, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17039.318084716797, - "thread": 140379336402752, + "relativeCreated": 17174.25799369812, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3304131031036377 + "time_consumption": 0.33739614486694336 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:25,385", - "created": 1610361445.385192, + "asctime": "2021-01-14 00:26:07,947", + "created": 1610580367.947036, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -56948,8 +56948,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,384", - "created": 1610361445.384475, + "asctime": "2021-01-14 00:26:07,946", + "created": 1610580367.946501, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -56959,14 +56959,14 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 384.4749927520752, + "msecs": 946.5010166168213, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17039.8850440979, - "thread": 140379336402752, + "relativeCreated": 17174.999952316284, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -56975,8 +56975,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,384", - "created": 1610361445.384717, + "asctime": "2021-01-14 00:26:07,946", + "created": 1610580367.94677, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -56986,35 +56986,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 384.7169876098633, + "msecs": 946.7699527740479, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17040.12703895569, - "thread": 140379336402752, + "relativeCreated": 17175.26888847351, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 385.1919174194336, + "msecs": 947.0360279083252, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17040.60196876526, - "thread": 140379336402752, + "relativeCreated": 17175.534963607788, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0004749298095703125 + "time_consumption": 0.00026607513427734375 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:25,386", - "created": 1610361445.3862, + "asctime": "2021-01-14 00:26:07,948", + "created": 1610580367.948201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57031,8 +57031,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,385", - "created": 1610361445.385689, + "asctime": "2021-01-14 00:26:07,947", + "created": 1610580367.947442, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57042,14 +57042,14 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 385.68902015686035, + "msecs": 947.4420547485352, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17041.099071502686, - "thread": 140379336402752, + "relativeCreated": 17175.940990447998, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -57058,8 +57058,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,385", - "created": 1610361445.385972, + "asctime": "2021-01-14 00:26:07,947", + "created": 1610580367.947694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57069,35 +57069,35 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 385.9720230102539, + "msecs": 947.6940631866455, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17041.38207435608, - "thread": 140379336402752, + "relativeCreated": 17176.19299888611, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 386.199951171875, + "msecs": 948.2009410858154, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17041.6100025177, - "thread": 140379336402752, + "relativeCreated": 17176.69987678528, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00022792816162109375 + "time_consumption": 0.0005068778991699219 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:25,388", - "created": 1610361445.388395, + "asctime": "2021-01-14 00:26:07,949", + "created": 1610580367.949827, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57112,8 +57112,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,386", - "created": 1610361445.386711, + "asctime": "2021-01-14 00:26:07,948", + "created": 1610580367.948577, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57123,47 +57123,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 386.71088218688965, + "msecs": 948.5769271850586, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17042.120933532715, - "thread": 140379336402752, + "relativeCreated": 17177.07586288452, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,387", - "created": 1610361445.387008, + "asctime": "2021-01-14 00:26:07,948", + "created": 1610580367.948806, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 387.0079517364502, + "msecs": 948.8060474395752, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17042.418003082275, - "thread": 140379336402752, + "relativeCreated": 17177.304983139038, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,387", - "created": 1610361445.387194, + "asctime": "2021-01-14 00:26:07,949", + "created": 1610580367.949016, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57173,39 +57173,39 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 387.1939182281494, + "msecs": 949.0160942077637, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17042.603969573975, - "thread": 140379336402752, + "relativeCreated": 17177.515029907227, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,387", - "created": 1610361445.387367, + "asctime": "2021-01-14 00:26:07,949", + "created": 1610580367.94922, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 387.36701011657715, + "msecs": 949.2199420928955, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17042.777061462402, - "thread": 140379336402752, + "relativeCreated": 17177.71887779236, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -57214,8 +57214,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,387", - "created": 1610361445.387782, + "asctime": "2021-01-14 00:26:07,949", + "created": 1610580367.949433, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57225,14 +57225,14 @@ "lineno": 22, "message": "Result (Client connection status): False ()", "module": "test", - "msecs": 387.78209686279297, + "msecs": 949.4330883026123, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17043.192148208618, - "thread": 140379336402752, + "relativeCreated": 17177.932024002075, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -57241,8 +57241,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,388", - "created": 1610361445.388167, + "asctime": "2021-01-14 00:26:07,949", + "created": 1610580367.949656, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57252,35 +57252,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = False ()", "module": "test", - "msecs": 388.1669044494629, + "msecs": 949.6560096740723, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17043.576955795288, - "thread": 140379336402752, + "relativeCreated": 17178.154945373535, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 388.3950710296631, + "msecs": 949.8269557952881, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17043.80512237549, - "thread": 140379336402752, + "relativeCreated": 17178.32589149475, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002281665802001953 + "time_consumption": 0.0001709461212158203 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:25,389", - "created": 1610361445.389812, + "asctime": "2021-01-14 00:26:07,950", + "created": 1610580367.950534, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57297,8 +57297,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,388", - "created": 1610361445.388983, + "asctime": "2021-01-14 00:26:07,950", + "created": 1610580367.9502, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57308,14 +57308,14 @@ "lineno": 22, "message": "Result (Server connection status): False ()", "module": "test", - "msecs": 388.98301124572754, + "msecs": 950.200080871582, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17044.393062591553, - "thread": 140379336402752, + "relativeCreated": 17178.699016571045, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -57324,8 +57324,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,389", - "created": 1610361445.38921, + "asctime": "2021-01-14 00:26:07,950", + "created": 1610580367.950368, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57335,32 +57335,32 @@ "lineno": 26, "message": "Expectation (Server connection status): result = False ()", "module": "test", - "msecs": 389.2099857330322, + "msecs": 950.3679275512695, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17044.620037078857, - "thread": 140379336402752, + "relativeCreated": 17178.866863250732, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 389.8119926452637, + "msecs": 950.5341053009033, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17045.22204399109, - "thread": 140379336402752, + "relativeCreated": 17179.033041000366, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0006020069122314453 + "time_consumption": 0.00016617774963378906 }, { "args": [], - "asctime": "2021-01-11 11:37:25,734", - "created": 1610361445.735, + "asctime": "2021-01-14 00:26:08,295", + "created": 1610580368.29568, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -57375,8 +57375,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,390", - "created": 1610361445.390215, + "asctime": "2021-01-14 00:26:07,950", + "created": 1610580367.950875, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57386,22 +57386,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 390.2149200439453, + "msecs": 950.8750438690186, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17045.62497138977, - "thread": 140379336402752, + "relativeCreated": 17179.37397956848, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,390", - "created": 1610361445.390469, + "asctime": "2021-01-14 00:26:07,951", + "created": 1610580367.951013, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57411,39 +57411,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 390.4690742492676, + "msecs": 951.0130882263184, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17045.879125595093, - "thread": 140379336402752, + "relativeCreated": 17179.51202392578, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,390", - "created": 1610361445.39073, + "asctime": "2021-01-14 00:26:07,951", + "created": 1610580367.95115, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 390.7299041748047, + "msecs": 951.1499404907227, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17046.13995552063, - "thread": 140379336402752, + "relativeCreated": 17179.648876190186, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -57454,33 +57454,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,391", - "created": 1610361445.391128, + "asctime": "2021-01-14 00:26:07,951", + "created": 1610580367.951407, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 391.1280632019043, + "msecs": 951.4069557189941, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17046.53811454773, - "thread": 140379336402752, + "relativeCreated": 17179.905891418457, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,391", - "created": 1610361445.391573, + "asctime": "2021-01-14 00:26:07,951", + "created": 1610580367.951937, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57490,22 +57490,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 391.5729522705078, + "msecs": 951.9369602203369, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17046.983003616333, - "thread": 140379336402752, + "relativeCreated": 17180.4358959198, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,391", - "created": 1610361445.391723, + "asctime": "2021-01-14 00:26:07,952", + "created": 1610580367.952155, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57515,39 +57515,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 391.7229175567627, + "msecs": 952.1551132202148, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17047.132968902588, - "thread": 140379336402752, + "relativeCreated": 17180.654048919678, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,391", - "created": 1610361445.391848, + "asctime": "2021-01-14 00:26:07,952", + "created": 1610580367.952354, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 391.848087310791, + "msecs": 952.3539543151855, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17047.258138656616, - "thread": 140379336402752, + "relativeCreated": 17180.85289001465, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -57555,8 +57555,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,410", - "created": 1610361445.410416, + "asctime": "2021-01-14 00:26:07,970", + "created": 1610580367.970707, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57566,14 +57566,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 410.4158878326416, + "msecs": 970.7069396972656, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17065.825939178467, - "thread": 140377239578368, + "relativeCreated": 17199.20587539673, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57581,8 +57581,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,410", - "created": 1610361445.410782, + "asctime": "2021-01-14 00:26:07,971", + "created": 1610580367.971289, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57592,14 +57592,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 410.7820987701416, + "msecs": 971.2889194488525, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17066.192150115967, - "thread": 140377239578368, + "relativeCreated": 17199.787855148315, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57607,8 +57607,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,410", - "created": 1610361445.410978, + "asctime": "2021-01-14 00:26:07,971", + "created": 1610580367.97164, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57618,14 +57618,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 410.9780788421631, + "msecs": 971.6401100158691, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17066.38813018799, - "thread": 140377239578368, + "relativeCreated": 17200.139045715332, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57634,8 +57634,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,411", - "created": 1610361445.411155, + "asctime": "2021-01-14 00:26:07,971", + "created": 1610580367.971821, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57645,14 +57645,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 411.15498542785645, + "msecs": 971.8210697174072, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17066.56503677368, - "thread": 140377239578368, + "relativeCreated": 17200.32000541687, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57660,8 +57660,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,411", - "created": 1610361445.411365, + "asctime": "2021-01-14 00:26:07,972", + "created": 1610580367.972039, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57671,14 +57671,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 411.3650321960449, + "msecs": 972.038984298706, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17066.77508354187, - "thread": 140377239578368, + "relativeCreated": 17200.53791999817, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57687,8 +57687,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,411", - "created": 1610361445.411644, + "asctime": "2021-01-14 00:26:07,972", + "created": 1610580367.972228, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57698,14 +57698,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 411.64398193359375, + "msecs": 972.2280502319336, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17067.05403327942, - "thread": 140377239578368, + "relativeCreated": 17200.726985931396, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57713,8 +57713,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,411", - "created": 1610361445.411945, + "asctime": "2021-01-14 00:26:07,972", + "created": 1610580367.972464, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57724,14 +57724,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 411.945104598999, + "msecs": 972.4640846252441, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17067.355155944824, - "thread": 140377239578368, + "relativeCreated": 17200.963020324707, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57740,8 +57740,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,412", - "created": 1610361445.412083, + "asctime": "2021-01-14 00:26:07,972", + "created": 1610580367.972627, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57751,14 +57751,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 412.0829105377197, + "msecs": 972.6269245147705, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17067.492961883545, - "thread": 140377239578368, + "relativeCreated": 17201.125860214233, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57766,8 +57766,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,412", - "created": 1610361445.412249, + "asctime": "2021-01-14 00:26:07,972", + "created": 1610580367.972831, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57777,14 +57777,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 412.2490882873535, + "msecs": 972.8310108184814, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17067.65913963318, - "thread": 140377239578368, + "relativeCreated": 17201.329946517944, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57793,8 +57793,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,412", - "created": 1610361445.41238, + "asctime": "2021-01-14 00:26:07,972", + "created": 1610580367.972989, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57804,14 +57804,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 412.3799800872803, + "msecs": 972.9890823364258, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17067.790031433105, - "thread": 140377239578368, + "relativeCreated": 17201.48801803589, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57819,8 +57819,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,412", - "created": 1610361445.412588, + "asctime": "2021-01-14 00:26:07,973", + "created": 1610580367.973259, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57830,14 +57830,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 412.58788108825684, + "msecs": 973.2589721679688, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17067.997932434082, - "thread": 140377239578368, + "relativeCreated": 17201.75790786743, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57846,8 +57846,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,412", - "created": 1610361445.412696, + "asctime": "2021-01-14 00:26:07,973", + "created": 1610580367.973423, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57857,14 +57857,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 412.69588470458984, + "msecs": 973.4230041503906, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17068.105936050415, - "thread": 140377239578368, + "relativeCreated": 17201.921939849854, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57872,8 +57872,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:25,412", - "created": 1610361445.412881, + "asctime": "2021-01-14 00:26:07,973", + "created": 1610580367.973678, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57883,14 +57883,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 412.88089752197266, + "msecs": 973.6781120300293, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17068.290948867798, - "thread": 140377239578368, + "relativeCreated": 17202.177047729492, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57898,8 +57898,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:25,413", - "created": 1610361445.41304, + "asctime": "2021-01-14 00:26:07,973", + "created": 1610580367.973993, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -57909,14 +57909,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 413.0399227142334, + "msecs": 973.9930629730225, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17068.44997406006, - "thread": 140377239578368, + "relativeCreated": 17202.491998672485, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57924,8 +57924,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,413", - "created": 1610361445.413165, + "asctime": "2021-01-14 00:26:07,974", + "created": 1610580367.974287, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57935,14 +57935,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 413.1650924682617, + "msecs": 974.2870330810547, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17068.575143814087, - "thread": 140377239578368, + "relativeCreated": 17202.785968780518, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57951,8 +57951,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,413", - "created": 1610361445.413278, + "asctime": "2021-01-14 00:26:07,974", + "created": 1610580367.974515, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57962,14 +57962,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 413.27810287475586, + "msecs": 974.5149612426758, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17068.68815422058, - "thread": 140377239578368, + "relativeCreated": 17203.01389694214, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -57977,8 +57977,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:25,413", - "created": 1610361445.4135, + "asctime": "2021-01-14 00:26:07,974", + "created": 1610580367.974896, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -57988,14 +57988,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 413.5000705718994, + "msecs": 974.8959541320801, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17068.910121917725, - "thread": 140377239578368, + "relativeCreated": 17203.394889831543, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -58006,25 +58006,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,413", - "created": 1610361445.413766, + "asctime": "2021-01-14 00:26:07,975", + "created": 1610580367.975512, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 413.76590728759766, + "msecs": 975.5120277404785, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17069.175958633423, - "thread": 140377239578368, + "relativeCreated": 17204.01096343994, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -58032,25 +58032,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:25,413", - "created": 1610361445.413906, + "asctime": "2021-01-14 00:26:07,975", + "created": 1610580367.975746, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 413.9060974121094, + "msecs": 975.7459163665771, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17069.316148757935, - "thread": 140377239578368, + "relativeCreated": 17204.24485206604, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -58061,25 +58061,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,414", - "created": 1610361445.414094, + "asctime": "2021-01-14 00:26:07,976", + "created": 1610580367.976034, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 414.0939712524414, + "msecs": 976.0339260101318, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17069.504022598267, - "thread": 140377239578368, + "relativeCreated": 17204.532861709595, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -58087,8 +58087,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,418", - "created": 1610361445.418638, + "asctime": "2021-01-14 00:26:08,009", + "created": 1610580368.009489, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -58098,14 +58098,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 418.6379909515381, + "msecs": 9.489059448242188, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17074.048042297363, - "thread": 140377231185664, + "relativeCreated": 17237.987995147705, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58113,8 +58113,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,418", - "created": 1610361445.418952, + "asctime": "2021-01-14 00:26:08,009", + "created": 1610580368.009939, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -58124,14 +58124,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 418.95198822021484, + "msecs": 9.938955307006836, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17074.36203956604, - "thread": 140377231185664, + "relativeCreated": 17238.43789100647, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58139,8 +58139,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.419076, + "asctime": "2021-01-14 00:26:08,010", + "created": 1610580368.010145, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58150,14 +58150,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 419.07596588134766, + "msecs": 10.144948959350586, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17074.486017227173, - "thread": 140377231185664, + "relativeCreated": 17238.643884658813, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58166,8 +58166,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.419179, + "asctime": "2021-01-14 00:26:08,010", + "created": 1610580368.010309, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58177,14 +58177,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 419.17896270751953, + "msecs": 10.308980941772461, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17074.589014053345, - "thread": 140377231185664, + "relativeCreated": 17238.807916641235, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58192,8 +58192,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.419315, + "asctime": "2021-01-14 00:26:08,010", + "created": 1610580368.010517, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58203,14 +58203,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 419.3150997161865, + "msecs": 10.516881942749023, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17074.72515106201, - "thread": 140377231185664, + "relativeCreated": 17239.015817642212, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58219,8 +58219,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.419414, + "asctime": "2021-01-14 00:26:08,010", + "created": 1610580368.010692, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58230,14 +58230,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 419.4140434265137, + "msecs": 10.69188117980957, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17074.82409477234, - "thread": 140377231185664, + "relativeCreated": 17239.190816879272, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58245,8 +58245,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.419549, + "asctime": "2021-01-14 00:26:08,011", + "created": 1610580368.011091, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58256,14 +58256,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 419.54898834228516, + "msecs": 11.090993881225586, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17074.95903968811, - "thread": 140377231185664, + "relativeCreated": 17239.58992958069, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58272,8 +58272,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.419775, + "asctime": "2021-01-14 00:26:08,011", + "created": 1610580368.011293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58283,14 +58283,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 419.77500915527344, + "msecs": 11.29293441772461, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17075.1850605011, - "thread": 140377231185664, + "relativeCreated": 17239.791870117188, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58298,8 +58298,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.419872, + "asctime": "2021-01-14 00:26:08,011", + "created": 1610580368.011516, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58309,14 +58309,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 419.8720455169678, + "msecs": 11.516094207763672, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17075.282096862793, - "thread": 140377231185664, + "relativeCreated": 17240.015029907227, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58325,8 +58325,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,419", - "created": 1610361445.41998, + "asctime": "2021-01-14 00:26:08,011", + "created": 1610580368.011704, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58336,14 +58336,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 419.9800491333008, + "msecs": 11.703968048095703, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17075.390100479126, - "thread": 140377231185664, + "relativeCreated": 17240.20290374756, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58351,8 +58351,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,420", - "created": 1610361445.420141, + "asctime": "2021-01-14 00:26:08,011", + "created": 1610580368.011963, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58362,14 +58362,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 420.14098167419434, + "msecs": 11.962890625, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17075.55103302002, - "thread": 140377231185664, + "relativeCreated": 17240.461826324463, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58378,8 +58378,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,420", - "created": 1610361445.420248, + "asctime": "2021-01-14 00:26:08,012", + "created": 1610580368.01209, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58389,14 +58389,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 420.24803161621094, + "msecs": 12.089967727661133, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17075.658082962036, - "thread": 140377231185664, + "relativeCreated": 17240.588903427124, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58404,8 +58404,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:25,420", - "created": 1610361445.420413, + "asctime": "2021-01-14 00:26:08,012", + "created": 1610580368.012278, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -58415,14 +58415,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 420.4130172729492, + "msecs": 12.278079986572266, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17075.823068618774, - "thread": 140377231185664, + "relativeCreated": 17240.777015686035, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58430,8 +58430,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:25,420", - "created": 1610361445.420537, + "asctime": "2021-01-14 00:26:08,012", + "created": 1610580368.01242, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -58441,14 +58441,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 420.53699493408203, + "msecs": 12.419939041137695, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17075.947046279907, - "thread": 140377231185664, + "relativeCreated": 17240.9188747406, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58456,8 +58456,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,420", - "created": 1610361445.420652, + "asctime": "2021-01-14 00:26:08,012", + "created": 1610580368.012582, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58467,14 +58467,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 420.651912689209, + "msecs": 12.582063674926758, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17076.061964035034, - "thread": 140377231185664, + "relativeCreated": 17241.08099937439, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58483,8 +58483,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,420", - "created": 1610361445.42077, + "asctime": "2021-01-14 00:26:08,012", + "created": 1610580368.012722, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58494,14 +58494,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 420.76992988586426, + "msecs": 12.722015380859375, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17076.17998123169, - "thread": 140377231185664, + "relativeCreated": 17241.220951080322, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58509,8 +58509,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:25,420", - "created": 1610361445.420984, + "asctime": "2021-01-14 00:26:08,013", + "created": 1610580368.013105, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -58520,14 +58520,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 420.98402976989746, + "msecs": 13.104915618896484, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17076.394081115723, - "thread": 140377231185664, + "relativeCreated": 17241.60385131836, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58538,25 +58538,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,421", - "created": 1610361445.421196, + "asctime": "2021-01-14 00:26:08,013", + "created": 1610580368.013474, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 421.19598388671875, + "msecs": 13.473987579345703, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17076.606035232544, - "thread": 140377231185664, + "relativeCreated": 17241.97292327881, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -58564,46 +58564,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:25,421", - "created": 1610361445.421334, + "asctime": "2021-01-14 00:26:08,013", + "created": 1610580368.013662, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 421.33402824401855, + "msecs": 13.662099838256836, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17076.744079589844, - "thread": 140377231185664, + "relativeCreated": 17242.16103553772, + "thread": 140017594783488, "threadName": "Thread-30" } ], - "msecs": 734.9998950958252, + "msecs": 295.68004608154297, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17390.40994644165, - "thread": 140379336402752, + "relativeCreated": 17524.178981781006, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.31366586685180664 + "time_consumption": 0.28201794624328613 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735338, + "asctime": "2021-01-14 00:26:08,296", + "created": 1610580368.296919, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58620,8 +58620,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735213, + "asctime": "2021-01-14 00:26:08,296", + "created": 1610580368.296516, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58631,14 +58631,14 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 735.213041305542, + "msecs": 296.51594161987305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17390.623092651367, - "thread": 140379336402752, + "relativeCreated": 17525.014877319336, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -58647,8 +58647,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735279, + "asctime": "2021-01-14 00:26:08,296", + "created": 1610580368.296733, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58658,35 +58658,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 735.2790832519531, + "msecs": 296.73290252685547, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17390.68913459778, - "thread": 140379336402752, + "relativeCreated": 17525.23183822632, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 735.3379726409912, + "msecs": 296.9191074371338, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17390.748023986816, - "thread": 140379336402752, + "relativeCreated": 17525.418043136597, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 5.888938903808594e-05 + "time_consumption": 0.0001862049102783203 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735537, + "asctime": "2021-01-14 00:26:08,297", + "created": 1610580368.297709, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58703,8 +58703,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735428, + "asctime": "2021-01-14 00:26:08,297", + "created": 1610580368.297272, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58714,14 +58714,14 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 735.4280948638916, + "msecs": 297.2719669342041, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17390.838146209717, - "thread": 140379336402752, + "relativeCreated": 17525.770902633667, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -58730,8 +58730,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735479, + "asctime": "2021-01-14 00:26:08,297", + "created": 1610580368.297503, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58741,32 +58741,32 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 735.4791164398193, + "msecs": 297.5029945373535, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17390.889167785645, - "thread": 140379336402752, + "relativeCreated": 17526.001930236816, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 735.537052154541, + "msecs": 297.70898818969727, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17390.947103500366, - "thread": 140379336402752, + "relativeCreated": 17526.20792388916, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 5.793571472167969e-05 + "time_consumption": 0.00020599365234375 }, { "args": [], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735615, + "asctime": "2021-01-14 00:26:08,298", + "created": 1610580368.298115, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -58777,14 +58777,14 @@ "message": "Adding secrets to socket_protocol", "module": "test_add_methods", "moduleLogger": [], - "msecs": 735.6150150299072, + "msecs": 298.1150150299072, "msg": "Adding secrets to socket_protocol", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.025066375732, - "thread": 140379336402752, + "relativeCreated": 17526.61395072937, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -58793,8 +58793,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735794, + "asctime": "2021-01-14 00:26:08,298", + "created": 1610580368.298882, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58811,8 +58811,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735694, + "asctime": "2021-01-14 00:26:08,298", + "created": 1610580368.298471, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58822,14 +58822,14 @@ "lineno": 22, "message": "Result (Client connection status): False ()", "module": "test", - "msecs": 735.6939315795898, + "msecs": 298.47097396850586, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.103982925415, - "thread": 140379336402752, + "relativeCreated": 17526.96990966797, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -58838,8 +58838,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735742, + "asctime": "2021-01-14 00:26:08,298", + "created": 1610580368.298675, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58849,35 +58849,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = False ()", "module": "test", - "msecs": 735.7420921325684, + "msecs": 298.6750602722168, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.152143478394, - "thread": 140379336402752, + "relativeCreated": 17527.17399597168, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 735.7940673828125, + "msecs": 298.88200759887695, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.204118728638, - "thread": 140379336402752, + "relativeCreated": 17527.38094329834, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 5.1975250244140625e-05 + "time_consumption": 0.00020694732666015625 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735969, + "asctime": "2021-01-14 00:26:08,299", + "created": 1610580368.299796, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58894,8 +58894,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735879, + "asctime": "2021-01-14 00:26:08,299", + "created": 1610580368.299321, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58905,14 +58905,14 @@ "lineno": 22, "message": "Result (Server connection status): False ()", "module": "test", - "msecs": 735.8789443969727, + "msecs": 299.32093620300293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.288995742798, - "thread": 140379336402752, + "relativeCreated": 17527.819871902466, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -58921,8 +58921,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:25,735", - "created": 1610361445.735923, + "asctime": "2021-01-14 00:26:08,299", + "created": 1610580368.299547, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58932,32 +58932,32 @@ "lineno": 26, "message": "Expectation (Server connection status): result = False ()", "module": "test", - "msecs": 735.9230518341064, + "msecs": 299.5469570159912, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.33310317993, - "thread": 140379336402752, + "relativeCreated": 17528.045892715454, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 735.969066619873, + "msecs": 299.79610443115234, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.3791179657, - "thread": 140379336402752, + "relativeCreated": 17528.295040130615, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 4.601478576660156e-05 + "time_consumption": 0.0002491474151611328 }, { "args": [], - "asctime": "2021-01-11 11:37:25,836", - "created": 1610361445.836692, + "asctime": "2021-01-14 00:26:08,401", + "created": 1610580368.401685, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -58976,25 +58976,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,736", - "created": 1610361445.736113, + "asctime": "2021-01-14 00:26:08,300", + "created": 1610580368.300574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 736.1130714416504, + "msecs": 300.57406425476074, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17391.523122787476, - "thread": 140379336402752, + "relativeCreated": 17529.072999954224, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -59002,8 +59002,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747173, + "asctime": "2021-01-14 00:26:08,310", + "created": 1610580368.310203, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59013,14 +59013,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 747.1730709075928, + "msecs": 310.20307540893555, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17402.583122253418, - "thread": 140377239578368, + "relativeCreated": 17538.7020111084, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59028,8 +59028,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747342, + "asctime": "2021-01-14 00:26:08,310", + "created": 1610580368.310472, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59039,14 +59039,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 747.3421096801758, + "msecs": 310.4720115661621, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17402.752161026, - "thread": 140377239578368, + "relativeCreated": 17538.970947265625, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59054,8 +59054,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.74741, + "asctime": "2021-01-14 00:26:08,310", + "created": 1610580368.310576, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59065,14 +59065,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 747.4100589752197, + "msecs": 310.5759620666504, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17402.820110321045, - "thread": 140377239578368, + "relativeCreated": 17539.074897766113, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59081,8 +59081,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747458, + "asctime": "2021-01-14 00:26:08,310", + "created": 1610580368.310662, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59092,14 +59092,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 747.4579811096191, + "msecs": 310.66203117370605, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17402.868032455444, - "thread": 140377239578368, + "relativeCreated": 17539.16096687317, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59107,8 +59107,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747515, + "asctime": "2021-01-14 00:26:08,310", + "created": 1610580368.310764, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59118,14 +59118,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 747.5149631500244, + "msecs": 310.7640743255615, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17402.92501449585, - "thread": 140377239578368, + "relativeCreated": 17539.263010025024, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59134,8 +59134,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747557, + "asctime": "2021-01-14 00:26:08,310", + "created": 1610580368.310843, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59145,14 +59145,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 747.5569248199463, + "msecs": 310.84299087524414, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17402.96697616577, - "thread": 140377239578368, + "relativeCreated": 17539.341926574707, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59160,8 +59160,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747614, + "asctime": "2021-01-14 00:26:08,310", + "created": 1610580368.310955, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59171,14 +59171,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 747.6139068603516, + "msecs": 310.9550476074219, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.023958206177, - "thread": 140377239578368, + "relativeCreated": 17539.453983306885, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59187,8 +59187,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747657, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311032, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59198,14 +59198,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 747.657060623169, + "msecs": 311.0320568084717, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.067111968994, - "thread": 140377239578368, + "relativeCreated": 17539.530992507935, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59213,8 +59213,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747707, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311126, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59224,14 +59224,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 747.7068901062012, + "msecs": 311.1259937286377, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.116941452026, - "thread": 140377239578368, + "relativeCreated": 17539.6249294281, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59240,8 +59240,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747748, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59251,14 +59251,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 747.7478981018066, + "msecs": 311.2020492553711, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.157949447632, - "thread": 140377239578368, + "relativeCreated": 17539.700984954834, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59266,8 +59266,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747802, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311303, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59277,14 +59277,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 747.8020191192627, + "msecs": 311.30290031433105, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.212070465088, - "thread": 140377239578368, + "relativeCreated": 17539.801836013794, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59293,8 +59293,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747842, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311377, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59304,14 +59304,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 747.8420734405518, + "msecs": 311.37704849243164, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.252124786377, - "thread": 140377239578368, + "relativeCreated": 17539.875984191895, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59319,8 +59319,8 @@ "comm-client:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747916, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311494, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59330,14 +59330,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 747.9159832000732, + "msecs": 311.4941120147705, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.3260345459, - "thread": 140377239578368, + "relativeCreated": 17539.993047714233, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59345,8 +59345,8 @@ "comm-server:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:25,747", - "created": 1610361445.747967, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311584, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59356,14 +59356,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 747.967004776001, + "msecs": 311.5839958190918, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.377056121826, - "thread": 140377239578368, + "relativeCreated": 17540.082931518555, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59371,8 +59371,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,748", - "created": 1610361445.748012, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311667, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59382,14 +59382,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 748.0120658874512, + "msecs": 311.66696548461914, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.422117233276, - "thread": 140377239578368, + "relativeCreated": 17540.165901184082, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59398,8 +59398,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,748", - "created": 1610361445.748053, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311742, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59409,14 +59409,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 748.0530738830566, + "msecs": 311.74206733703613, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.463125228882, - "thread": 140377239578368, + "relativeCreated": 17540.2410030365, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59424,8 +59424,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" ], - "asctime": "2021-01-11 11:37:25,748", - "created": 1610361445.74814, + "asctime": "2021-01-14 00:26:08,311", + "created": 1610580368.311896, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59435,14 +59435,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", "module": "stp", - "msecs": 748.1400966644287, + "msecs": 311.89608573913574, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.550148010254, - "thread": 140377239578368, + "relativeCreated": 17540.3950214386, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59453,25 +59453,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,748", - "created": 1610361445.748275, + "asctime": "2021-01-14 00:26:08,312", + "created": 1610580368.31209, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 748.2750415802002, + "msecs": 312.0899200439453, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.685092926025, - "thread": 140377239578368, + "relativeCreated": 17540.58885574341, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59479,25 +59479,25 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:25,748", - "created": 1610361445.748333, + "asctime": "2021-01-14 00:26:08,312", + "created": 1610580368.312193, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 748.3329772949219, + "msecs": 312.1929168701172, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.743028640747, - "thread": 140377239578368, + "relativeCreated": 17540.69185256958, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -59506,36 +59506,36 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'88dfd1718f3e76d88156c0f9b6c01f5a3bf0dec45e36813ab452742339e63cfd'" + "'5d3e3e3ae297c94184ace5320bbad8523b8752006324a312c78d0002ee4b157e'" ], - "asctime": "2021-01-11 11:37:25,748", - "created": 1610361445.748417, + "asctime": "2021-01-14 00:26:08,312", + "created": 1610580368.312331, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'88dfd1718f3e76d88156c0f9b6c01f5a3bf0dec45e36813ab452742339e63cfd'\"", + "lineno": 457, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'5d3e3e3ae297c94184ace5320bbad8523b8752006324a312c78d0002ee4b157e'\"", "module": "__init__", - "msecs": 748.4169006347656, + "msecs": 312.330961227417, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17403.82695198059, - "thread": 140377239578368, + "relativeCreated": 17540.82989692688, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 64 66 64 31 37 31 38 66 33 65 37 36 64 38 38 31 35" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 64 33 65 33 65 33 61 65 32 39 37 63 39 34 31 38 34 61" ], - "asctime": "2021-01-11 11:37:25,754", - "created": 1610361445.754522, + "asctime": "2021-01-14 00:26:08,314", + "created": 1610580368.314782, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59543,25 +59543,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 64 66 64 31 37 31 38 66 33 65 37 36 64 38 38 31 35", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 64 33 65 33 65 33 61 65 32 39 37 63 39 34 31 38 34 61", "module": "__init__", - "msecs": 754.5220851898193, + "msecs": 314.78190422058105, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17409.932136535645, - "thread": 140377231185664, + "relativeCreated": 17543.280839920044, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 64 66 64 31 37 31 38 66 33 65 37 36 64 38 38 31 35" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 64 33 65 33 65 33 61 65 32 39 37 63 39 34 31 38 34 61" ], - "asctime": "2021-01-11 11:37:25,754", - "created": 1610361445.754737, + "asctime": "2021-01-14 00:26:08,314", + "created": 1610580368.314999, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59569,16 +59569,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 38 64 66 64 31 37 31 38 66 33 65 37 36 64 38 38 31 35", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 64 33 65 33 65 33 61 65 32 39 37 63 39 34 31 38 34 61", "module": "__init__", - "msecs": 754.7369003295898, + "msecs": 314.9991035461426, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.146951675415, - "thread": 140377231185664, + "relativeCreated": 17543.498039245605, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59586,8 +59586,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,754", - "created": 1610361445.754829, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.315105, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59597,14 +59597,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 754.828929901123, + "msecs": 315.1049613952637, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.23898124695, - "thread": 140377231185664, + "relativeCreated": 17543.603897094727, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59613,8 +59613,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,754", - "created": 1610361445.754887, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.315206, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59624,14 +59624,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 754.8871040344238, + "msecs": 315.20605087280273, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.29715538025, - "thread": 140377231185664, + "relativeCreated": 17543.704986572266, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59639,8 +59639,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,754", - "created": 1610361445.754952, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.315332, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59650,14 +59650,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 754.9519538879395, + "msecs": 315.33193588256836, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.362005233765, - "thread": 140377231185664, + "relativeCreated": 17543.83087158203, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59666,8 +59666,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755005, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.315459, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59677,14 +59677,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.0048828125, + "msecs": 315.4590129852295, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.414934158325, - "thread": 140377231185664, + "relativeCreated": 17543.957948684692, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59692,8 +59692,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755077, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.31559, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59703,14 +59703,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.0768852233887, + "msecs": 315.58990478515625, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.486936569214, - "thread": 140377231185664, + "relativeCreated": 17544.08884048462, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59719,8 +59719,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755125, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.315696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59730,14 +59730,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.1250457763672, + "msecs": 315.69600105285645, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.535097122192, - "thread": 140377231185664, + "relativeCreated": 17544.19493675232, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59745,8 +59745,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755185, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.315824, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59756,14 +59756,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.1848888397217, + "msecs": 315.824031829834, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.594940185547, - "thread": 140377231185664, + "relativeCreated": 17544.322967529297, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59772,8 +59772,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755233, + "asctime": "2021-01-14 00:26:08,315", + "created": 1610580368.315972, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59783,23 +59783,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.2330493927002, + "msecs": 315.97208976745605, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.643100738525, - "thread": 140377231185664, + "relativeCreated": 17544.47102546692, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "comm-server:", - "(64): 36 63 30 66 39 62 36 63 30 31 66 35 61 33 62 66 30 64 65 63 34 35 65 33 36 38 31 33 61 62 34 35 32 37 34 32 33 33 39 65 36 33 63 66 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d6 3a" + "(64): 63 65 35 33 32 30 62 62 61 64 38 35 32 33 62 38 37 35 32 30 30 36 33 32 34 61 33 31 32 63 37 38 64 30 30 30 32 65 65 34 62 31 35 37 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 05 6d" ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755379, + "asctime": "2021-01-14 00:26:08,316", + "created": 1610580368.316304, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59807,25 +59807,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 36 63 30 66 39 62 36 63 30 31 66 35 61 33 62 66 30 64 65 63 34 35 65 33 36 38 31 33 61 62 34 35 32 37 34 32 33 33 39 65 36 33 63 66 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d6 3a", + "message": "comm-server: TX -> (64): 63 65 35 33 32 30 62 62 61 64 38 35 32 33 62 38 37 35 32 30 30 36 33 32 34 61 33 31 32 63 37 38 64 30 30 30 32 65 65 34 62 31 35 37 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 05 6d", "module": "__init__", - "msecs": 755.3789615631104, + "msecs": 316.30396842956543, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.789012908936, - "thread": 140377231185664, + "relativeCreated": 17544.80290412903, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(64): 36 63 30 66 39 62 36 63 30 31 66 35 61 33 62 66 30 64 65 63 34 35 65 33 36 38 31 33 61 62 34 35 32 37 34 32 33 33 39 65 36 33 63 66 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d6 3a" + "(64): 63 65 35 33 32 30 62 62 61 64 38 35 32 33 62 38 37 35 32 30 30 36 33 32 34 61 33 31 32 63 37 38 64 30 30 30 32 65 65 34 62 31 35 37 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 05 6d" ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755468, + "asctime": "2021-01-14 00:26:08,316", + "created": 1610580368.316543, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59833,16 +59833,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 36 63 30 66 39 62 36 63 30 31 66 35 61 33 62 66 30 64 65 63 34 35 65 33 36 38 31 33 61 62 34 35 32 37 34 32 33 33 39 65 36 33 63 66 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d6 3a", + "message": "comm-client: RX <- (64): 63 65 35 33 32 30 62 62 61 64 38 35 32 33 62 38 37 35 32 30 30 36 33 32 34 61 33 31 32 63 37 38 64 30 30 30 32 65 65 34 62 31 35 37 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 05 6d", "module": "__init__", - "msecs": 755.4678916931152, + "msecs": 316.5431022644043, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.87794303894, - "thread": 140377231185664, + "relativeCreated": 17545.042037963867, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59850,8 +59850,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755564, + "asctime": "2021-01-14 00:26:08,316", + "created": 1610580368.316822, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59861,14 +59861,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.5639743804932, + "msecs": 316.8220520019531, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17410.97402572632, - "thread": 140377231185664, + "relativeCreated": 17545.320987701416, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -59877,8 +59877,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755607, + "asctime": "2021-01-14 00:26:08,316", + "created": 1610580368.316936, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -59888,49 +59888,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.6068897247314, + "msecs": 316.9360160827637, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.016941070557, - "thread": 140377231185664, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755651, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 755.6509971618652, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "src/stringtools/stp.py", - "process": 36164, - "processName": "MainProcess", - "relativeCreated": 17411.06104850769, - "thread": 140377231185664, + "relativeCreated": 17545.434951782227, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "comm-server:", - "(5): 3d ac 37 3a 3e" + "(4): 6a 07 3a 3e" ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755736, + "asctime": "2021-01-14 00:26:08,317", + "created": 1610580368.317105, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59938,25 +59912,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (5): 3d ac 37 3a 3e", + "message": "comm-server: TX -> (4): 6a 07 3a 3e", "module": "__init__", - "msecs": 755.7361125946045, + "msecs": 317.1050548553467, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.14616394043, - "thread": 140377231185664, + "relativeCreated": 17545.60399055481, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(5): 3d ac 37 3a 3e" + "(4): 6a 07 3a 3e" ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755822, + "asctime": "2021-01-14 00:26:08,317", + "created": 1610580368.317303, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59964,43 +59938,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (5): 3d ac 37 3a 3e", + "message": "comm-client: RX <- (4): 6a 07 3a 3e", "module": "__init__", - "msecs": 755.821943283081, + "msecs": 317.302942276001, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.231994628906, - "thread": 140377231185664, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755884, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 755.8839321136475, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "src/stringtools/stp.py", - "process": 36164, - "processName": "MainProcess", - "relativeCreated": 17411.293983459473, - "thread": 140377231185664, + "relativeCreated": 17545.801877975464, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60008,8 +59955,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755938, + "asctime": "2021-01-14 00:26:08,317", + "created": 1610580368.317466, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60019,14 +59966,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.9380531311035, + "msecs": 317.46602058410645, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.34810447693, - "thread": 140377231185664, + "relativeCreated": 17545.96495628357, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60035,8 +59982,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,755", - "created": 1610361445.755995, + "asctime": "2021-01-14 00:26:08,317", + "created": 1610580368.317598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60046,23 +59993,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 755.9950351715088, + "msecs": 317.5981044769287, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.405086517334, - "thread": 140377231185664, + "relativeCreated": 17546.09704017639, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "STP:", - "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 38 38 64 66 64 31 37 31 38 66 33 65 37 36 64 38 38 31 35 36 63 30 66 39 62 36 63 30 31 66 35 61 33 62 66 30 64 65 63 34 35 65 33 36 38 31 33 61 62 34 35 32 37 34 32 33 33 39 65 36 33 63 66 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d6 3a ac 37" + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 35 64 33 65 33 65 33 61 65 32 39 37 63 39 34 31 38 34 61 63 65 35 33 32 30 62 62 61 64 38 35 32 33 62 38 37 35 32 30 30 36 33 32 34 61 33 31 32 63 37 38 64 30 30 30 32 65 65 34 62 31 35 37 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 05 6d 6a 07" ], - "asctime": "2021-01-11 11:37:25,756", - "created": 1610361445.75615, + "asctime": "2021-01-14 00:26:08,318", + "created": 1610580368.318001, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60070,16 +60017,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 38 38 64 66 64 31 37 31 38 66 33 65 37 36 64 38 38 31 35 36 63 30 66 39 62 36 63 30 31 66 35 61 33 62 66 30 64 65 63 34 35 65 33 36 38 31 33 61 62 34 35 32 37 34 32 33 33 39 65 36 33 63 66 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d6 3a ac 37", + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 35 64 33 65 33 65 33 61 65 32 39 37 63 39 34 31 38 34 61 63 65 35 33 32 30 62 62 61 64 38 35 32 33 62 38 37 35 32 30 30 36 33 32 34 61 33 31 32 63 37 38 64 30 30 30 32 65 65 34 62 31 35 37 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 05 6d 6a 07", "module": "stp", - "msecs": 756.1500072479248, + "msecs": 318.00103187561035, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.56005859375, - "thread": 140377231185664, + "relativeCreated": 17546.499967575073, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60088,27 +60035,27 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "u'88dfd1718f3e76d88156c0f9b6c01f5a3bf0dec45e36813ab452742339e63cfd'" + "u'5d3e3e3ae297c94184ace5320bbad8523b8752006324a312c78d0002ee4b157e'" ], - "asctime": "2021-01-11 11:37:25,756", - "created": 1610361445.756297, + "asctime": "2021-01-14 00:26:08,318", + "created": 1610580368.318292, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'88dfd1718f3e76d88156c0f9b6c01f5a3bf0dec45e36813ab452742339e63cfd'\"", + "lineno": 457, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'5d3e3e3ae297c94184ace5320bbad8523b8752006324a312c78d0002ee4b157e'\"", "module": "__init__", - "msecs": 756.2971115112305, + "msecs": 318.29190254211426, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.707162857056, - "thread": 140377231185664, + "relativeCreated": 17546.790838241577, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60116,25 +60063,25 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:25,756", - "created": 1610361445.75637, + "asctime": "2021-01-14 00:26:08,318", + "created": 1610580368.318468, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 756.3700675964355, + "msecs": 318.4680938720703, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.78011894226, - "thread": 140377231185664, + "relativeCreated": 17546.967029571533, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60143,36 +60090,36 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'15d63ef81266d614340383161a786c008def88b0d10d3d672197c50360443ccd5a6874dcc4fd5db235b890bb0752ec21303ed3e67eb54d288a27796b3f122fd1'" + "'d8212054b96be9ce14c4d528e5c63407bedf9fffe731306e960a7e64b28d8fabbdee29042c95f4f7a6d34d01f22d3ab1b2a0e27a50f7456e6bd39320cc7488f5'" ], - "asctime": "2021-01-11 11:37:25,756", - "created": 1610361445.756468, + "asctime": "2021-01-14 00:26:08,318", + "created": 1610580368.318723, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'15d63ef81266d614340383161a786c008def88b0d10d3d672197c50360443ccd5a6874dcc4fd5db235b890bb0752ec21303ed3e67eb54d288a27796b3f122fd1'\"", + "lineno": 457, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'d8212054b96be9ce14c4d528e5c63407bedf9fffe731306e960a7e64b28d8fabbdee29042c95f4f7a6d34d01f22d3ab1b2a0e27a50f7456e6bd39320cc7488f5'\"", "module": "__init__", - "msecs": 756.4680576324463, + "msecs": 318.7229633331299, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17411.87810897827, - "thread": 140377231185664, + "relativeCreated": 17547.221899032593, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 35 64 36 33 65 66 38 31 32 36 36 64 36 31 34 33 34 30" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 38 32 31 32 30 35 34 62 39 36 62 65 39 63 65 31 34 63" ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764258, + "asctime": "2021-01-14 00:26:08,323", + "created": 1610580368.32356, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60180,25 +60127,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 35 64 36 33 65 66 38 31 32 36 36 64 36 31 34 33 34 30", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 38 32 31 32 30 35 34 62 39 36 62 65 39 63 65 31 34 63", "module": "__init__", - "msecs": 764.2579078674316, + "msecs": 323.5599994659424, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17419.667959213257, - "thread": 140377239578368, + "relativeCreated": 17552.058935165405, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 35 64 36 33 65 66 38 31 32 36 36 64 36 31 34 33 34 30" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 38 32 31 32 30 35 34 62 39 36 62 65 39 63 65 31 34 63" ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764454, + "asctime": "2021-01-14 00:26:08,323", + "created": 1610580368.323838, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60206,16 +60153,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 35 64 36 33 65 66 38 31 32 36 36 64 36 31 34 33 34 30", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 38 32 31 32 30 35 34 62 39 36 62 65 39 63 65 31 34 63", "module": "__init__", - "msecs": 764.4538879394531, + "msecs": 323.8379955291748, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17419.86393928528, - "thread": 140377239578368, + "relativeCreated": 17552.336931228638, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60223,8 +60170,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764523, + "asctime": "2021-01-14 00:26:08,323", + "created": 1610580368.323966, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60234,14 +60181,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 764.5230293273926, + "msecs": 323.96602630615234, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17419.933080673218, - "thread": 140377239578368, + "relativeCreated": 17552.464962005615, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60250,8 +60197,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764578, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324078, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60261,14 +60208,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 764.578104019165, + "msecs": 324.0780830383301, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17419.98815536499, - "thread": 140377239578368, + "relativeCreated": 17552.577018737793, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60276,8 +60223,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764642, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324226, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60287,14 +60234,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 764.6420001983643, + "msecs": 324.22590255737305, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.05205154419, - "thread": 140377239578368, + "relativeCreated": 17552.724838256836, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60303,8 +60250,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764698, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324369, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60314,14 +60261,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 764.6980285644531, + "msecs": 324.368953704834, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.10807991028, - "thread": 140377239578368, + "relativeCreated": 17552.867889404297, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60329,8 +60276,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764802, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324477, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60340,14 +60287,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 764.8019790649414, + "msecs": 324.476957321167, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.212030410767, - "thread": 140377239578368, + "relativeCreated": 17552.97589302063, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60356,8 +60303,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764866, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324559, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60367,14 +60314,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 764.8661136627197, + "msecs": 324.55897331237793, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.276165008545, - "thread": 140377239578368, + "relativeCreated": 17553.05790901184, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60382,8 +60329,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,764", - "created": 1610361445.764943, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324657, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60393,14 +60340,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 764.9428844451904, + "msecs": 324.6569633483887, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.352935791016, - "thread": 140377239578368, + "relativeCreated": 17553.15589904785, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60409,8 +60356,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765003, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324732, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60420,23 +60367,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 765.002965927124, + "msecs": 324.73206520080566, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.41301727295, - "thread": 140377239578368, + "relativeCreated": 17553.23100090027, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-client:", - "(64): 33 38 33 31 36 31 61 37 38 36 63 30 30 38 64 65 66 38 38 62 30 64 31 30 64 33 64 36 37 32 31 39 37 63 35 30 33 36 30 34 34 33 63 63 64 35 61 36 38 37 34 64 63 63 34 66 64 35 64 62 32 33 35 62" + "(64): 34 64 35 32 38 65 35 63 36 33 34 30 37 62 65 64 66 39 66 66 66 65 37 33 31 33 30 36 65 39 36 30 61 37 65 36 34 62 32 38 64 38 66 61 62 62 64 65 65 32 39 30 34 32 63 39 35 66 34 66 37 61 36 64" ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765193, + "asctime": "2021-01-14 00:26:08,324", + "created": 1610580368.324955, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60444,25 +60391,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 33 38 33 31 36 31 61 37 38 36 63 30 30 38 64 65 66 38 38 62 30 64 31 30 64 33 64 36 37 32 31 39 37 63 35 30 33 36 30 34 34 33 63 63 64 35 61 36 38 37 34 64 63 63 34 66 64 35 64 62 32 33 35 62", + "message": "comm-client: TX -> (64): 34 64 35 32 38 65 35 63 36 33 34 30 37 62 65 64 66 39 66 66 66 65 37 33 31 33 30 36 65 39 36 30 61 37 65 36 34 62 32 38 64 38 66 61 62 62 64 65 65 32 39 30 34 32 63 39 35 66 34 66 37 61 36 64", "module": "__init__", - "msecs": 765.192985534668, + "msecs": 324.9549865722656, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.603036880493, - "thread": 140377239578368, + "relativeCreated": 17553.45392227173, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 33 38 33 31 36 31 61 37 38 36 63 30 30 38 64 65 66 38 38 62 30 64 31 30 64 33 64 36 37 32 31 39 37 63 35 30 33 36 30 34 34 33 63 63 64 35 61 36 38 37 34 64 63 63 34 66 64 35 64 62 32 33 35 62" + "(64): 34 64 35 32 38 65 35 63 36 33 34 30 37 62 65 64 66 39 66 66 66 65 37 33 31 33 30 36 65 39 36 30 61 37 65 36 34 62 32 38 64 38 66 61 62 62 64 65 65 32 39 30 34 32 63 39 35 66 34 66 37 61 36 64" ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765334, + "asctime": "2021-01-14 00:26:08,325", + "created": 1610580368.32513, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60470,25 +60417,25 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 33 38 33 31 36 31 61 37 38 36 63 30 30 38 64 65 66 38 38 62 30 64 31 30 64 33 64 36 37 32 31 39 37 63 35 30 33 36 30 34 34 33 63 63 64 35 61 36 38 37 34 64 63 63 34 66 64 35 64 62 32 33 35 62", + "message": "comm-server: RX <- (64): 34 64 35 32 38 65 35 63 36 33 34 30 37 62 65 64 66 39 66 66 66 65 37 33 31 33 30 36 65 39 36 30 61 37 65 36 34 62 32 38 64 38 66 61 62 62 64 65 65 32 39 30 34 32 63 39 35 66 34 66 37 61 36 64", "module": "__init__", - "msecs": 765.333890914917, + "msecs": 325.1299858093262, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.743942260742, - "thread": 140377239578368, + "relativeCreated": 17553.62892150879, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-client:", - "(64): 38 39 30 62 62 30 37 35 32 65 63 32 31 33 30 33 65 64 33 65 36 37 65 62 35 34 64 32 38 38 61 32 37 37 39 36 62 33 66 31 32 32 66 64 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 86 43" + "(64): 33 34 64 30 31 66 32 32 64 33 61 62 31 62 32 61 30 65 32 37 61 35 30 66 37 34 35 36 65 36 62 64 33 39 33 32 30 63 63 37 34 38 38 66 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4c 6a" ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.76553, + "asctime": "2021-01-14 00:26:08,325", + "created": 1610580368.325461, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60496,25 +60443,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 38 39 30 62 62 30 37 35 32 65 63 32 31 33 30 33 65 64 33 65 36 37 65 62 35 34 64 32 38 38 61 32 37 37 39 36 62 33 66 31 32 32 66 64 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 86 43", + "message": "comm-client: TX -> (64): 33 34 64 30 31 66 32 32 64 33 61 62 31 62 32 61 30 65 32 37 61 35 30 66 37 34 35 36 65 36 62 64 33 39 33 32 30 63 63 37 34 38 38 66 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4c 6a", "module": "__init__", - "msecs": 765.5301094055176, + "msecs": 325.46091079711914, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17420.940160751343, - "thread": 140377239578368, + "relativeCreated": 17553.959846496582, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 38 39 30 62 62 30 37 35 32 65 63 32 31 33 30 33 65 64 33 65 36 37 65 62 35 34 64 32 38 38 61 32 37 37 39 36 62 33 66 31 32 32 66 64 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 86 43" + "(64): 33 34 64 30 31 66 32 32 64 33 61 62 31 62 32 61 30 65 32 37 61 35 30 66 37 34 35 36 65 36 62 64 33 39 33 32 30 63 63 37 34 38 38 66 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4c 6a" ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.76562, + "asctime": "2021-01-14 00:26:08,325", + "created": 1610580368.325786, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60522,16 +60469,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 38 39 30 62 62 30 37 35 32 65 63 32 31 33 30 33 65 64 33 65 36 37 65 62 35 34 64 32 38 38 61 32 37 37 39 36 62 33 66 31 32 32 66 64 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 86 43", + "message": "comm-server: RX <- (64): 33 34 64 30 31 66 32 32 64 33 61 62 31 62 32 61 30 65 32 37 61 35 30 66 37 34 35 36 65 36 62 64 33 39 33 32 30 63 63 37 34 38 38 66 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4c 6a", "module": "__init__", - "msecs": 765.6199932098389, + "msecs": 325.7861137390137, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.030044555664, - "thread": 140377239578368, + "relativeCreated": 17554.285049438477, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60539,8 +60486,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765718, + "asctime": "2021-01-14 00:26:08,326", + "created": 1610580368.326083, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60550,14 +60497,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 765.7179832458496, + "msecs": 326.0829448699951, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.128034591675, - "thread": 140377239578368, + "relativeCreated": 17554.581880569458, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60566,8 +60513,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765767, + "asctime": "2021-01-14 00:26:08,326", + "created": 1610580368.326194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60577,23 +60524,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 765.7670974731445, + "msecs": 326.19404792785645, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.17714881897, - "thread": 140377239578368, + "relativeCreated": 17554.69298362732, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-client:", - "(4): 44 a7 3a 3e" + "(4): f4 ef 3a 3e" ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765827, + "asctime": "2021-01-14 00:26:08,326", + "created": 1610580368.326358, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60601,25 +60548,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 44 a7 3a 3e", + "message": "comm-client: TX -> (4): f4 ef 3a 3e", "module": "__init__", - "msecs": 765.826940536499, + "msecs": 326.3580799102783, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.236991882324, - "thread": 140377239578368, + "relativeCreated": 17554.85701560974, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(4): 44 a7 3a 3e" + "(4): f4 ef 3a 3e" ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765874, + "asctime": "2021-01-14 00:26:08,326", + "created": 1610580368.326525, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60627,16 +60574,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 44 a7 3a 3e", + "message": "comm-server: RX <- (4): f4 ef 3a 3e", "module": "__init__", - "msecs": 765.873908996582, + "msecs": 326.5249729156494, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.283960342407, - "thread": 140377239578368, + "relativeCreated": 17555.023908615112, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60644,8 +60591,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765918, + "asctime": "2021-01-14 00:26:08,326", + "created": 1610580368.326638, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60655,14 +60602,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 765.9180164337158, + "msecs": 326.63798332214355, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.32806777954, - "thread": 140377239578368, + "relativeCreated": 17555.136919021606, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60671,8 +60618,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,765", - "created": 1610361445.765965, + "asctime": "2021-01-14 00:26:08,326", + "created": 1610580368.326734, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60682,23 +60629,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 765.9649848937988, + "msecs": 326.7340660095215, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.375036239624, - "thread": 140377239578368, + "relativeCreated": 17555.233001708984, + "thread": 140017603176192, "threadName": "Thread-29" }, { "args": [ "STP:", - "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 35 64 36 33 65 66 38 31 32 36 36 64 36 31 34 33 34 30 33 38 33 31 36 31 61 37 38 36 63 30 30 38 64 65 66 38 38 62 30 64 31 30 64 33 64 36 37 32 31 39 37 63 35 30 33 36 30 34 34 33 63 63 64 35 61 36 38 37 34 64 63 63 34 66 64 35 64 62 32 33 35 62 38 39 30 62 62 30 37 35 32 65 63 32 31 33 30 33 65 64 33 65 36 37 65 62 35 34 64 32 38 38 61 32 37 37 39 36 62 33 66 31 32 32 66 64 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 86 43 44 a7" + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 38 32 31 32 30 35 34 62 39 36 62 65 39 63 65 31 34 63 34 64 35 32 38 65 35 63 36 33 34 30 37 62 65 64 66 39 66 66 66 65 37 33 31 33 30 36 65 39 36 30 61 37 65 36 34 62 32 38 64 38 66 61 62 62 64 65 65 32 39 30 34 32 63 39 35 66 34 66 37 61 36 64 33 34 64 30 31 66 32 32 64 33 61 62 31 62 32 61 30 65 32 37 61 35 30 66 37 34 35 36 65 36 62 64 33 39 33 32 30 63 63 37 34 38 38 66 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 4c 6a f4 ef" ], - "asctime": "2021-01-11 11:37:25,766", - "created": 1610361445.766137, + "asctime": "2021-01-14 00:26:08,327", + "created": 1610580368.327148, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60706,16 +60653,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 35 64 36 33 65 66 38 31 32 36 36 64 36 31 34 33 34 30 33 38 33 31 36 31 61 37 38 36 63 30 30 38 64 65 66 38 38 62 30 64 31 30 64 33 64 36 37 32 31 39 37 63 35 30 33 36 30 34 34 33 63 63 64 35 61 36 38 37 34 64 63 63 34 66 64 35 64 62 32 33 35 62 38 39 30 62 62 30 37 35 32 65 63 32 31 33 30 33 65 64 33 65 36 37 65 62 35 34 64 32 38 38 61 32 37 37 39 36 62 33 66 31 32 32 66 64 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 86 43 44 a7", + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 38 32 31 32 30 35 34 62 39 36 62 65 39 63 65 31 34 63 34 64 35 32 38 65 35 63 36 33 34 30 37 62 65 64 66 39 66 66 66 65 37 33 31 33 30 36 65 39 36 30 61 37 65 36 34 62 32 38 64 38 66 61 62 62 64 65 65 32 39 30 34 32 63 39 35 66 34 66 37 61 36 64 33 34 64 30 31 66 32 32 64 33 61 62 31 62 32 61 30 65 32 37 61 35 30 66 37 34 35 36 65 36 62 64 33 39 33 32 30 63 63 37 34 38 38 66 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 4c 6a f4 ef", "module": "stp", - "msecs": 766.136884689331, + "msecs": 327.1479606628418, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.546936035156, - "thread": 140377239578368, + "relativeCreated": 17555.646896362305, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60724,27 +60671,27 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "u'15d63ef81266d614340383161a786c008def88b0d10d3d672197c50360443ccd5a6874dcc4fd5db235b890bb0752ec21303ed3e67eb54d288a27796b3f122fd1'" + "u'd8212054b96be9ce14c4d528e5c63407bedf9fffe731306e960a7e64b28d8fabbdee29042c95f4f7a6d34d01f22d3ab1b2a0e27a50f7456e6bd39320cc7488f5'" ], - "asctime": "2021-01-11 11:37:25,766", - "created": 1610361445.766268, + "asctime": "2021-01-14 00:26:08,327", + "created": 1610580368.327383, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'15d63ef81266d614340383161a786c008def88b0d10d3d672197c50360443ccd5a6874dcc4fd5db235b890bb0752ec21303ed3e67eb54d288a27796b3f122fd1'\"", + "lineno": 457, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'd8212054b96be9ce14c4d528e5c63407bedf9fffe731306e960a7e64b28d8fabbdee29042c95f4f7a6d34d01f22d3ab1b2a0e27a50f7456e6bd39320cc7488f5'\"", "module": "__init__", - "msecs": 766.2680149078369, + "msecs": 327.38304138183594, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.678066253662, - "thread": 140377239578368, + "relativeCreated": 17555.8819770813, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60752,25 +60699,25 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:25,766", - "created": 1610361445.766328, + "asctime": "2021-01-14 00:26:08,327", + "created": 1610580368.327515, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 766.3280963897705, + "msecs": 327.5148868560791, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.738147735596, - "thread": 140377239578368, + "relativeCreated": 17556.013822555542, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60781,25 +60728,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:25,766", - "created": 1610361445.766417, + "asctime": "2021-01-14 00:26:08,327", + "created": 1610580368.327708, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 766.4170265197754, + "msecs": 327.70800590515137, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17421.8270778656, - "thread": 140377239578368, + "relativeCreated": 17556.206941604614, + "thread": 140017603176192, "threadName": "Thread-29" }, { @@ -60807,8 +60754,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:25,772", - "created": 1610361445.772236, + "asctime": "2021-01-14 00:26:08,328", + "created": 1610580368.328254, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60818,14 +60765,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 772.2361087799072, + "msecs": 328.25398445129395, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17427.646160125732, - "thread": 140377231185664, + "relativeCreated": 17556.752920150757, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60833,8 +60780,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:25,772", - "created": 1610361445.77244, + "asctime": "2021-01-14 00:26:08,328", + "created": 1610580368.328489, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -60844,14 +60791,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 772.4399566650391, + "msecs": 328.4890651702881, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17427.850008010864, - "thread": 140377231185664, + "relativeCreated": 17556.98800086975, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60859,8 +60806,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,772", - "created": 1610361445.772536, + "asctime": "2021-01-14 00:26:08,328", + "created": 1610580368.328608, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60870,14 +60817,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 772.536039352417, + "msecs": 328.60803604125977, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17427.946090698242, - "thread": 140377231185664, + "relativeCreated": 17557.106971740723, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60886,8 +60833,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,772", - "created": 1610361445.772621, + "asctime": "2021-01-14 00:26:08,328", + "created": 1610580368.328705, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60897,14 +60844,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 772.6209163665771, + "msecs": 328.7050724029541, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.030967712402, - "thread": 140377231185664, + "relativeCreated": 17557.204008102417, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60912,8 +60859,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,772", - "created": 1610361445.772729, + "asctime": "2021-01-14 00:26:08,328", + "created": 1610580368.328806, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60923,14 +60870,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 772.7289199829102, + "msecs": 328.80592346191406, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.138971328735, - "thread": 140377231185664, + "relativeCreated": 17557.304859161377, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60939,8 +60886,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,772", - "created": 1610361445.772824, + "asctime": "2021-01-14 00:26:08,328", + "created": 1610580368.328885, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60950,14 +60897,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 772.8240489959717, + "msecs": 328.8850784301758, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.234100341797, - "thread": 140377231185664, + "relativeCreated": 17557.38401412964, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60965,8 +60912,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,772", - "created": 1610361445.772928, + "asctime": "2021-01-14 00:26:08,328", + "created": 1610580368.32899, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -60976,14 +60923,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 772.92799949646, + "msecs": 328.98998260498047, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.338050842285, - "thread": 140377231185664, + "relativeCreated": 17557.488918304443, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -60992,8 +60939,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773003, + "asctime": "2021-01-14 00:26:08,329", + "created": 1610580368.329071, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61003,14 +60950,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 773.003101348877, + "msecs": 329.071044921875, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.413152694702, - "thread": 140377231185664, + "relativeCreated": 17557.569980621338, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61018,8 +60965,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.7731, + "asctime": "2021-01-14 00:26:08,329", + "created": 1610580368.32918, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61029,14 +60976,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 773.0998992919922, + "msecs": 329.1800022125244, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.509950637817, - "thread": 140377231185664, + "relativeCreated": 17557.678937911987, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61045,8 +60992,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773173, + "asctime": "2021-01-14 00:26:08,329", + "created": 1610580368.329275, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61056,14 +61003,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 773.1730937957764, + "msecs": 329.27489280700684, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.5831451416, - "thread": 140377231185664, + "relativeCreated": 17557.77382850647, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61071,8 +61018,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773274, + "asctime": "2021-01-14 00:26:08,329", + "created": 1610580368.329408, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61082,14 +61029,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 773.2739448547363, + "msecs": 329.4079303741455, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.68399620056, - "thread": 140377231185664, + "relativeCreated": 17557.90686607361, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61098,8 +61045,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773366, + "asctime": "2021-01-14 00:26:08,329", + "created": 1610580368.3295, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61109,14 +61056,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 773.3659744262695, + "msecs": 329.4999599456787, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.776025772095, - "thread": 140377231185664, + "relativeCreated": 17557.99889564514, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61124,8 +61071,8 @@ "comm-server:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773526, + "asctime": "2021-01-14 00:26:08,329", + "created": 1610580368.329712, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61135,14 +61082,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 773.5259532928467, + "msecs": 329.7119140625, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17428.936004638672, - "thread": 140377231185664, + "relativeCreated": 17558.210849761963, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61150,8 +61097,8 @@ "comm-client:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773623, + "asctime": "2021-01-14 00:26:08,329", + "created": 1610580368.329926, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61161,14 +61108,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 773.622989654541, + "msecs": 329.9260139465332, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17429.033041000366, - "thread": 140377231185664, + "relativeCreated": 17558.424949645996, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61176,8 +61123,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773707, + "asctime": "2021-01-14 00:26:08,330", + "created": 1610580368.330083, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61187,14 +61134,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 773.7069129943848, + "msecs": 330.08289337158203, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17429.11696434021, - "thread": 140377231185664, + "relativeCreated": 17558.581829071045, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61203,8 +61150,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.77378, + "asctime": "2021-01-14 00:26:08,330", + "created": 1610580368.330204, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61214,14 +61161,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 773.780107498169, + "msecs": 330.2040100097656, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17429.190158843994, - "thread": 140377231185664, + "relativeCreated": 17558.70294570923, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61229,8 +61176,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" ], - "asctime": "2021-01-11 11:37:25,773", - "created": 1610361445.773945, + "asctime": "2021-01-14 00:26:08,330", + "created": 1610580368.330397, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -61240,14 +61187,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", "module": "stp", - "msecs": 773.9450931549072, + "msecs": 330.3968906402588, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17429.355144500732, - "thread": 140377231185664, + "relativeCreated": 17558.89582633972, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61258,25 +61205,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:25,774", - "created": 1610361445.774156, + "asctime": "2021-01-14 00:26:08,330", + "created": 1610580368.330612, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 774.1560935974121, + "msecs": 330.6119441986084, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17429.566144943237, - "thread": 140377231185664, + "relativeCreated": 17559.11087989807, + "thread": 140017594783488, "threadName": "Thread-30" }, { @@ -61284,71 +61231,71 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:25,774", - "created": 1610361445.77428, + "asctime": "2021-01-14 00:26:08,330", + "created": 1610580368.330733, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 774.2800712585449, + "msecs": 330.733060836792, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17429.69012260437, - "thread": 140377231185664, + "relativeCreated": 17559.231996536255, + "thread": 140017594783488, "threadName": "Thread-30" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,774", - "created": 1610361445.77438, + "asctime": "2021-01-14 00:26:08,330", + "created": 1610580368.330837, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 774.3799686431885, + "msecs": 330.8370113372803, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17429.790019989014, - "thread": 140377231185664, + "relativeCreated": 17559.335947036743, + "thread": 140017594783488, "threadName": "Thread-30" } ], - "msecs": 836.6920948028564, + "msecs": 401.6849994659424, "msg": "Doing authentification", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17492.10214614868, - "thread": 140379336402752, + "relativeCreated": 17630.183935165405, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.06231212615966797 + "time_consumption": 0.07084798812866211 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:25,838", - "created": 1610361445.838128, + "asctime": "2021-01-14 00:26:08,403", + "created": 1610580368.403336, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61365,8 +61312,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,837", - "created": 1610361445.837557, + "asctime": "2021-01-14 00:26:08,402", + "created": 1610580368.402563, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61376,14 +61323,14 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 837.5570774078369, + "msecs": 402.56309509277344, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17492.967128753662, - "thread": 140379336402752, + "relativeCreated": 17631.062030792236, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61392,8 +61339,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,837", - "created": 1610361445.837824, + "asctime": "2021-01-14 00:26:08,402", + "created": 1610580368.40284, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61403,35 +61350,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 837.8241062164307, + "msecs": 402.83989906311035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17493.234157562256, - "thread": 140379336402752, + "relativeCreated": 17631.338834762573, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 838.1280899047852, + "msecs": 403.3360481262207, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17493.53814125061, - "thread": 140379336402752, + "relativeCreated": 17631.834983825684, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003039836883544922 + "time_consumption": 0.0004961490631103516 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:25,839", - "created": 1610361445.83962, + "asctime": "2021-01-14 00:26:08,403", + "created": 1610580368.403939, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61448,8 +61395,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,838", - "created": 1610361445.838804, + "asctime": "2021-01-14 00:26:08,403", + "created": 1610580368.40364, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61459,14 +61406,14 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 838.8040065765381, + "msecs": 403.6400318145752, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17494.214057922363, - "thread": 140379336402752, + "relativeCreated": 17632.138967514038, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61475,8 +61422,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:25,839", - "created": 1610361445.839058, + "asctime": "2021-01-14 00:26:08,403", + "created": 1610580368.403793, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61486,39 +61433,39 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 839.0579223632812, + "msecs": 403.7930965423584, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17494.467973709106, - "thread": 140379336402752, + "relativeCreated": 17632.29203224182, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 839.6201133728027, + "msecs": 403.93900871276855, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17495.030164718628, - "thread": 140379336402752, + "relativeCreated": 17632.43794441223, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0005621910095214844 + "time_consumption": 0.00014591217041015625 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.8109021186828613, - "time_finished": "2021-01-11 11:37:25,839", - "time_start": "2021-01-11 11:37:25,028" + "time_consumption": 0.8156149387359619, + "time_finished": "2021-01-14 00:26:08,403", + "time_start": "2021-01-14 00:26:07,588" }, "_elO7wE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:25,840", - "created": 1610361445.840569, + "asctime": "2021-01-14 00:26:08,404", + "created": 1610580368.404591, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61529,18 +61476,18 @@ "message": "_elO7wE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 840.569019317627, + "msecs": 404.5910835266113, "msg": "_elO7wE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17495.979070663452, + "relativeCreated": 17633.090019226074, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:25,849", - "created": 1610361445.849072, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414716, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -61555,8 +61502,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,842", - "created": 1610361445.842348, + "asctime": "2021-01-14 00:26:08,405", + "created": 1610580368.405845, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61566,22 +61513,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 842.3480987548828, + "msecs": 405.84492683410645, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17497.758150100708, - "thread": 140379336402752, + "relativeCreated": 17634.34386253357, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,843", - "created": 1610361445.84342, + "asctime": "2021-01-14 00:26:08,406", + "created": 1610580368.406903, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61591,22 +61538,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 843.4200286865234, + "msecs": 406.9030284881592, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17498.83008003235, - "thread": 140379336402752, + "relativeCreated": 17635.401964187622, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,843", - "created": 1610361445.843608, + "asctime": "2021-01-14 00:26:08,407", + "created": 1610580368.407186, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61616,39 +61563,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 843.6079025268555, + "msecs": 407.18603134155273, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17499.01795387268, - "thread": 140379336402752, + "relativeCreated": 17635.684967041016, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844023, + "asctime": "2021-01-14 00:26:08,407", + "created": 1610580368.407938, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 844.0229892730713, + "msecs": 407.93800354003906, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17499.433040618896, - "thread": 140379336402752, + "relativeCreated": 17636.436939239502, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61657,25 +61604,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844164, + "asctime": "2021-01-14 00:26:08,408", + "created": 1610580368.408222, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 844.1638946533203, + "msecs": 408.221960067749, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17499.573945999146, - "thread": 140379336402752, + "relativeCreated": 17636.720895767212, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61683,25 +61630,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844333, + "asctime": "2021-01-14 00:26:08,408", + "created": 1610580368.408527, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 844.3329334259033, + "msecs": 408.5268974304199, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17499.74298477173, - "thread": 140379336402752, + "relativeCreated": 17637.025833129883, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61709,25 +61656,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844466, + "asctime": "2021-01-14 00:26:08,408", + "created": 1610580368.408747, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 844.465970993042, + "msecs": 408.74695777893066, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17499.876022338867, - "thread": 140379336402752, + "relativeCreated": 17637.245893478394, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61735,25 +61682,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844585, + "asctime": "2021-01-14 00:26:08,408", + "created": 1610580368.408953, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 844.5849418640137, + "msecs": 408.9529514312744, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17499.99499320984, - "thread": 140379336402752, + "relativeCreated": 17637.451887130737, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61761,25 +61708,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844694, + "asctime": "2021-01-14 00:26:08,409", + "created": 1610580368.409172, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 844.6938991546631, + "msecs": 409.17205810546875, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17500.10395050049, - "thread": 140379336402752, + "relativeCreated": 17637.67099380493, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61789,8 +61736,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844849, + "asctime": "2021-01-14 00:26:08,409", + "created": 1610580368.40941, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61800,14 +61747,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 844.8491096496582, + "msecs": 409.4099998474121, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17500.259160995483, - "thread": 140379336402752, + "relativeCreated": 17637.908935546875, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61817,8 +61764,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:25,844", - "created": 1610361445.844989, + "asctime": "2021-01-14 00:26:08,409", + "created": 1610580368.409754, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61828,14 +61775,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 844.9890613555908, + "msecs": 409.75403785705566, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17500.399112701416, - "thread": 140379336402752, + "relativeCreated": 17638.25297355652, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61845,8 +61792,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:25,845", - "created": 1610361445.845113, + "asctime": "2021-01-14 00:26:08,410", + "created": 1610580368.410071, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61856,14 +61803,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 845.1130390167236, + "msecs": 410.07089614868164, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17500.52309036255, - "thread": 140379336402752, + "relativeCreated": 17638.569831848145, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61873,8 +61820,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:25,845", - "created": 1610361445.845243, + "asctime": "2021-01-14 00:26:08,410", + "created": 1610580368.410303, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -61884,39 +61831,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 845.242977142334, + "msecs": 410.30311584472656, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17500.65302848816, - "thread": 140379336402752, + "relativeCreated": 17638.80205154419, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,845", - "created": 1610361445.84536, + "asctime": "2021-01-14 00:26:08,410", + "created": 1610580368.410486, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 845.3600406646729, + "msecs": 410.48598289489746, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17500.770092010498, - "thread": 140379336402752, + "relativeCreated": 17638.98491859436, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61925,25 +61872,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:25,845", - "created": 1610361445.845505, + "asctime": "2021-01-14 00:26:08,410", + "created": 1610580368.410697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 845.5049991607666, + "msecs": 410.69698333740234, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17500.91505050659, - "thread": 140379336402752, + "relativeCreated": 17639.195919036865, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61951,25 +61898,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:25,845", - "created": 1610361445.845637, + "asctime": "2021-01-14 00:26:08,410", + "created": 1610580368.410902, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 845.6370830535889, + "msecs": 410.9020233154297, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.047134399414, - "thread": 140379336402752, + "relativeCreated": 17639.400959014893, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -61977,25 +61924,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:25,845", - "created": 1610361445.845748, + "asctime": "2021-01-14 00:26:08,411", + "created": 1610580368.411108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 845.7479476928711, + "msecs": 411.10801696777344, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.157999038696, - "thread": 140379336402752, + "relativeCreated": 17639.606952667236, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62005,8 +61952,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:25,845", - "created": 1610361445.845878, + "asctime": "2021-01-14 00:26:08,411", + "created": 1610580368.411328, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62016,14 +61963,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 845.8778858184814, + "msecs": 411.3280773162842, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.287937164307, - "thread": 140379336402752, + "relativeCreated": 17639.827013015747, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62033,8 +61980,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:25,846", - "created": 1610361445.846011, + "asctime": "2021-01-14 00:26:08,411", + "created": 1610580368.411542, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62044,14 +61991,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 846.0109233856201, + "msecs": 411.5419387817383, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.420974731445, - "thread": 140379336402752, + "relativeCreated": 17640.0408744812, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62060,25 +62007,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:25,846", - "created": 1610361445.846147, + "asctime": "2021-01-14 00:26:08,411", + "created": 1610580368.411757, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 846.1470603942871, + "msecs": 411.7569923400879, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.557111740112, - "thread": 140379336402752, + "relativeCreated": 17640.25592803955, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62087,25 +62034,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:25,846", - "created": 1610361445.84626, + "asctime": "2021-01-14 00:26:08,411", + "created": 1610580368.411987, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 846.2600708007812, + "msecs": 411.9870662689209, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.670122146606, - "thread": 140379336402752, + "relativeCreated": 17640.486001968384, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62114,75 +62061,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:25,846", - "created": 1610361445.846368, + "asctime": "2021-01-14 00:26:08,412", + "created": 1610580368.412188, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 846.3680744171143, + "msecs": 412.1880531311035, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.77812576294, - "thread": 140379336402752, + "relativeCreated": 17640.686988830566, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,846", - "created": 1610361445.846482, + "asctime": "2021-01-14 00:26:08,412", + "created": 1610580368.412407, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 846.4820384979248, + "msecs": 412.40692138671875, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17501.89208984375, - "thread": 140379336402752, + "relativeCreated": 17640.90585708618, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,846", - "created": 1610361445.846897, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413179, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 846.8968868255615, + "msecs": 413.1789207458496, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17502.306938171387, - "thread": 140379336402752, + "relativeCreated": 17641.677856445312, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62191,25 +62138,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.84706, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413315, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 847.059965133667, + "msecs": 413.3150577545166, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17502.470016479492, - "thread": 140379336402752, + "relativeCreated": 17641.81399345398, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62217,25 +62164,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.847215, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413401, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 847.214937210083, + "msecs": 413.40088844299316, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17502.62498855591, - "thread": 140379336402752, + "relativeCreated": 17641.899824142456, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62243,25 +62190,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.84733, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413468, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 847.3300933837891, + "msecs": 413.4678840637207, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17502.740144729614, - "thread": 140379336402752, + "relativeCreated": 17641.966819763184, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62269,25 +62216,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.847436, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413523, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 847.4359512329102, + "msecs": 413.52295875549316, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17502.846002578735, - "thread": 140379336402752, + "relativeCreated": 17642.021894454956, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62295,25 +62242,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.847546, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413575, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 847.5461006164551, + "msecs": 413.5749340057373, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17502.95615196228, - "thread": 140379336402752, + "relativeCreated": 17642.0738697052, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62323,8 +62270,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.84766, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413635, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62334,14 +62281,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 847.6600646972656, + "msecs": 413.6350154876709, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.07011604309, - "thread": 140379336402752, + "relativeCreated": 17642.133951187134, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62351,8 +62298,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.847773, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413708, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62362,14 +62309,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 847.7730751037598, + "msecs": 413.707971572876, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.183126449585, - "thread": 140379336402752, + "relativeCreated": 17642.20690727234, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62379,8 +62326,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:25,847", - "created": 1610361445.847891, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413792, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62390,14 +62337,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 847.891092300415, + "msecs": 413.7918949127197, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.30114364624, - "thread": 140379336402752, + "relativeCreated": 17642.290830612183, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62407,8 +62354,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848003, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413875, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62418,39 +62365,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 848.0029106140137, + "msecs": 413.8751029968262, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.41296195984, - "thread": 140379336402752, + "relativeCreated": 17642.37403869629, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848096, + "asctime": "2021-01-14 00:26:08,413", + "created": 1610580368.413949, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 848.0958938598633, + "msecs": 413.94901275634766, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.50594520569, - "thread": 140379336402752, + "relativeCreated": 17642.44794845581, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62459,25 +62406,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848192, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414033, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 848.1919765472412, + "msecs": 414.0329360961914, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.602027893066, - "thread": 140379336402752, + "relativeCreated": 17642.531871795654, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62485,25 +62432,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848285, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414119, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 848.2849597930908, + "msecs": 414.11900520324707, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.695011138916, - "thread": 140379336402752, + "relativeCreated": 17642.61794090271, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62511,25 +62458,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848369, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414212, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 848.3688831329346, + "msecs": 414.2119884490967, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.77893447876, - "thread": 140379336402752, + "relativeCreated": 17642.71092414856, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62539,8 +62486,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.84846, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414279, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62550,14 +62497,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 848.4599590301514, + "msecs": 414.2789840698242, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.870010375977, - "thread": 140379336402752, + "relativeCreated": 17642.777919769287, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62567,8 +62514,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.84855, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414355, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62578,14 +62525,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 848.5500812530518, + "msecs": 414.3550395965576, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17503.960132598877, - "thread": 140379336402752, + "relativeCreated": 17642.85397529602, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62594,25 +62541,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848636, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414456, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 848.6359119415283, + "msecs": 414.4558906555176, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.045963287354, - "thread": 140379336402752, + "relativeCreated": 17642.95482635498, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62621,25 +62568,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848719, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414512, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 848.7188816070557, + "msecs": 414.51191902160645, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.12893295288, - "thread": 140379336402752, + "relativeCreated": 17643.01085472107, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62648,68 +62595,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.848867, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414563, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 848.8669395446777, + "msecs": 414.5629405975342, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.276990890503, - "thread": 140379336402752, + "relativeCreated": 17643.061876296997, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,848", - "created": 1610361445.84897, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414641, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 848.9699363708496, + "msecs": 414.6409034729004, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.379987716675, - "thread": 140379336402752, + "relativeCreated": 17643.139839172363, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 849.0719795227051, + "msecs": 414.7160053253174, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.48203086853, - "thread": 140379336402752, + "relativeCreated": 17643.21494102478, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00010204315185546875 + "time_consumption": 7.510185241699219e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:26,193", - "created": 1610361446.193379, + "asctime": "2021-01-14 00:26:08,758", + "created": 1610580368.758606, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -62724,8 +62671,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,849", - "created": 1610361445.84929, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414854, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62735,22 +62682,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 849.2898941040039, + "msecs": 414.8540496826172, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.69994544983, - "thread": 140379336402752, + "relativeCreated": 17643.35298538208, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:25,849", - "created": 1610361445.849398, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414921, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62760,39 +62707,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 849.3978977203369, + "msecs": 414.9210453033447, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.807949066162, - "thread": 140379336402752, + "relativeCreated": 17643.419981002808, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:25,849", - "created": 1610361445.849516, + "asctime": "2021-01-14 00:26:08,414", + "created": 1610580368.414994, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 849.5159149169922, + "msecs": 414.9940013885498, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17504.925966262817, - "thread": 140379336402752, + "relativeCreated": 17643.492937088013, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62803,33 +62750,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,849", - "created": 1610361445.849668, + "asctime": "2021-01-14 00:26:08,415", + "created": 1610580368.415096, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 849.668025970459, + "msecs": 415.0960445404053, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17505.078077316284, - "thread": 140379336402752, + "relativeCreated": 17643.594980239868, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,850", - "created": 1610361445.850051, + "asctime": "2021-01-14 00:26:08,415", + "created": 1610580368.415296, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62839,22 +62786,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 850.0509262084961, + "msecs": 415.2960777282715, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17505.46097755432, - "thread": 140379336402752, + "relativeCreated": 17643.795013427734, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:25,850", - "created": 1610361445.850195, + "asctime": "2021-01-14 00:26:08,415", + "created": 1610580368.41535, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62864,39 +62811,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 850.1949310302734, + "msecs": 415.34996032714844, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17505.6049823761, - "thread": 140379336402752, + "relativeCreated": 17643.84889602661, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:25,850", - "created": 1610361445.850324, + "asctime": "2021-01-14 00:26:08,415", + "created": 1610580368.415403, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 850.3239154815674, + "msecs": 415.402889251709, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17505.733966827393, - "thread": 140379336402752, + "relativeCreated": 17643.901824951172, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -62904,8 +62851,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853028, + "asctime": "2021-01-14 00:26:08,416", + "created": 1610580368.416716, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62915,14 +62862,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 853.0280590057373, + "msecs": 416.7160987854004, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17508.438110351562, - "thread": 140377222792960, + "relativeCreated": 17645.215034484863, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -62930,8 +62877,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853226, + "asctime": "2021-01-14 00:26:08,416", + "created": 1610580368.416834, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -62941,14 +62888,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 853.2259464263916, + "msecs": 416.83411598205566, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17508.635997772217, - "thread": 140377222792960, + "relativeCreated": 17645.33305168152, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -62956,8 +62903,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853323, + "asctime": "2021-01-14 00:26:08,416", + "created": 1610580368.416891, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -62967,14 +62914,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 853.3229827880859, + "msecs": 416.89109802246094, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17508.73303413391, - "thread": 140377222792960, + "relativeCreated": 17645.390033721924, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -62983,8 +62930,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853404, + "asctime": "2021-01-14 00:26:08,416", + "created": 1610580368.416951, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -62994,14 +62941,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 853.4040451049805, + "msecs": 416.95094108581543, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17508.814096450806, - "thread": 140377222792960, + "relativeCreated": 17645.44987678528, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63009,8 +62956,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853503, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417014, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63020,14 +62967,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 853.5029888153076, + "msecs": 417.01388359069824, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17508.913040161133, - "thread": 140377222792960, + "relativeCreated": 17645.51281929016, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63036,8 +62983,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.8536, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417069, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63047,14 +62994,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 853.600025177002, + "msecs": 417.0689582824707, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17509.010076522827, - "thread": 140377222792960, + "relativeCreated": 17645.567893981934, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63062,8 +63009,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853738, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.41715, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63073,14 +63020,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 853.7380695343018, + "msecs": 417.15002059936523, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17509.148120880127, - "thread": 140377222792960, + "relativeCreated": 17645.648956298828, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63089,8 +63036,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853839, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417207, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63100,14 +63047,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 853.8389205932617, + "msecs": 417.2070026397705, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17509.248971939087, - "thread": 140377222792960, + "relativeCreated": 17645.705938339233, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63115,8 +63062,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,853", - "created": 1610361445.853964, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.41727, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63126,14 +63073,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 853.96409034729, + "msecs": 417.2699451446533, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17509.374141693115, - "thread": 140377222792960, + "relativeCreated": 17645.768880844116, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63142,8 +63089,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,854", - "created": 1610361445.854093, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417319, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63153,14 +63100,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 854.093074798584, + "msecs": 417.31905937194824, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17509.50312614441, - "thread": 140377222792960, + "relativeCreated": 17645.81799507141, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63168,8 +63115,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,854", - "created": 1610361445.854281, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63179,14 +63126,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 854.280948638916, + "msecs": 417.3860549926758, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17509.69099998474, - "thread": 140377222792960, + "relativeCreated": 17645.88499069214, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63195,8 +63142,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,854", - "created": 1610361445.854425, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63206,14 +63153,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 854.4249534606934, + "msecs": 417.4339771270752, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17509.83500480652, - "thread": 140377222792960, + "relativeCreated": 17645.932912826538, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63221,8 +63168,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:25,854", - "created": 1610361445.854609, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417508, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -63232,14 +63179,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 854.6090126037598, + "msecs": 417.5078868865967, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17510.019063949585, - "thread": 140377222792960, + "relativeCreated": 17646.00682258606, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63247,8 +63194,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:25,854", - "created": 1610361445.854768, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417569, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -63258,14 +63205,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 854.7680377960205, + "msecs": 417.5689220428467, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17510.178089141846, - "thread": 140377222792960, + "relativeCreated": 17646.06785774231, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63273,8 +63220,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,854", - "created": 1610361445.854909, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417624, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63284,14 +63231,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 854.9089431762695, + "msecs": 417.62399673461914, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17510.318994522095, - "thread": 140377222792960, + "relativeCreated": 17646.122932434082, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63300,8 +63247,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,855", - "created": 1610361445.855029, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417673, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63311,14 +63258,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 855.0291061401367, + "msecs": 417.67311096191406, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17510.439157485962, - "thread": 140377222792960, + "relativeCreated": 17646.172046661377, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63326,8 +63273,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:25,855", - "created": 1610361445.855288, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417773, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63337,14 +63284,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 855.288028717041, + "msecs": 417.7730083465576, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17510.698080062866, - "thread": 140377222792960, + "relativeCreated": 17646.27194404602, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63355,25 +63302,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,855", - "created": 1610361445.855558, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.417876, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 855.557918548584, + "msecs": 417.8760051727295, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17510.96796989441, - "thread": 140377222792960, + "relativeCreated": 17646.374940872192, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63381,25 +63328,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:25,855", - "created": 1610361445.855697, + "asctime": "2021-01-14 00:26:08,417", + "created": 1610580368.41793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 855.6969165802002, + "msecs": 417.92988777160645, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17511.106967926025, - "thread": 140377222792960, + "relativeCreated": 17646.42882347107, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63410,25 +63357,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,855", - "created": 1610361445.855875, + "asctime": "2021-01-14 00:26:08,418", + "created": 1610580368.418001, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 855.8750152587891, + "msecs": 418.0009365081787, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17511.285066604614, - "thread": 140377222792960, + "relativeCreated": 17646.49987220764, + "thread": 140017586390784, "threadName": "Thread-31" }, { @@ -63436,8 +63383,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,862", - "created": 1610361445.862261, + "asctime": "2021-01-14 00:26:08,424", + "created": 1610580368.424951, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -63447,14 +63394,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 862.2610569000244, + "msecs": 424.95107650756836, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17517.67110824585, - "thread": 140377214400256, + "relativeCreated": 17653.45001220703, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63462,8 +63409,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:25,862", - "created": 1610361445.862479, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.425191, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -63473,14 +63420,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 862.4789714813232, + "msecs": 425.19092559814453, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17517.88902282715, - "thread": 140377214400256, + "relativeCreated": 17653.689861297607, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63488,8 +63435,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,862", - "created": 1610361445.862578, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.42528, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63499,14 +63446,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 862.5779151916504, + "msecs": 425.2800941467285, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17517.987966537476, - "thread": 140377214400256, + "relativeCreated": 17653.77902984619, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63515,8 +63462,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:25,862", - "created": 1610361445.862662, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.425364, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63526,14 +63473,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 862.6620769500732, + "msecs": 425.36401748657227, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.0721282959, - "thread": 140377214400256, + "relativeCreated": 17653.862953186035, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63541,8 +63488,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,862", - "created": 1610361445.862775, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.425474, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63552,14 +63499,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 862.7750873565674, + "msecs": 425.4739284515381, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.185138702393, - "thread": 140377214400256, + "relativeCreated": 17653.972864151, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63568,8 +63515,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,862", - "created": 1610361445.862854, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.425559, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63579,14 +63526,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 862.85400390625, + "msecs": 425.55904388427734, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.264055252075, - "thread": 140377214400256, + "relativeCreated": 17654.05797958374, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63594,8 +63541,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,862", - "created": 1610361445.862985, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.425747, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63605,14 +63552,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 862.9848957061768, + "msecs": 425.7469177246094, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.394947052002, - "thread": 140377214400256, + "relativeCreated": 17654.245853424072, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63621,8 +63568,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863088, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.42586, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63632,14 +63579,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.0878925323486, + "msecs": 425.8599281311035, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.497943878174, - "thread": 140377214400256, + "relativeCreated": 17654.358863830566, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63647,8 +63594,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863265, + "asctime": "2021-01-14 00:26:08,425", + "created": 1610580368.425941, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63658,14 +63605,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.2650375366211, + "msecs": 425.94099044799805, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.675088882446, - "thread": 140377214400256, + "relativeCreated": 17654.43992614746, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63674,8 +63621,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863348, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426026, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63685,14 +63632,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.3480072021484, + "msecs": 426.0261058807373, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.758058547974, - "thread": 140377214400256, + "relativeCreated": 17654.5250415802, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63700,8 +63647,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863456, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426151, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63711,14 +63658,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.4560108184814, + "msecs": 426.1510372161865, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.866062164307, - "thread": 140377214400256, + "relativeCreated": 17654.64997291565, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63727,8 +63674,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863532, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426248, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63738,14 +63685,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.5320663452148, + "msecs": 426.24807357788086, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17518.94211769104, - "thread": 140377214400256, + "relativeCreated": 17654.747009277344, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63753,8 +63700,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863695, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426401, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -63764,14 +63711,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 863.6949062347412, + "msecs": 426.40089988708496, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17519.104957580566, - "thread": 140377214400256, + "relativeCreated": 17654.899835586548, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63779,8 +63726,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863842, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426532, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -63790,14 +63737,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 863.8420104980469, + "msecs": 426.5320301055908, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17519.252061843872, - "thread": 140377214400256, + "relativeCreated": 17655.030965805054, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63805,8 +63752,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:25,863", - "created": 1610361445.863938, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426708, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63816,14 +63763,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.9380931854248, + "msecs": 426.7079830169678, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17519.34814453125, - "thread": 140377214400256, + "relativeCreated": 17655.20691871643, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63832,8 +63779,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:25,864", - "created": 1610361445.864018, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426786, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63843,14 +63790,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 864.0179634094238, + "msecs": 426.785945892334, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17519.42801475525, - "thread": 140377214400256, + "relativeCreated": 17655.284881591797, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63858,8 +63805,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:25,864", - "created": 1610361445.86418, + "asctime": "2021-01-14 00:26:08,426", + "created": 1610580368.426953, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -63869,14 +63816,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 864.1800880432129, + "msecs": 426.9530773162842, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17519.590139389038, - "thread": 140377214400256, + "relativeCreated": 17655.452013015747, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63887,25 +63834,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:25,864", - "created": 1610361445.864365, + "asctime": "2021-01-14 00:26:08,427", + "created": 1610580368.427144, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 864.3651008605957, + "msecs": 427.14405059814453, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17519.77515220642, - "thread": 140377214400256, + "relativeCreated": 17655.642986297607, + "thread": 140017577998080, "threadName": "Thread-32" }, { @@ -63913,46 +63860,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:25,864", - "created": 1610361445.864468, + "asctime": "2021-01-14 00:26:08,427", + "created": 1610580368.427235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 864.4680976867676, + "msecs": 427.2348880767822, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17519.878149032593, - "thread": 140377214400256, + "relativeCreated": 17655.733823776245, + "thread": 140017577998080, "threadName": "Thread-32" } ], - "msecs": 193.37892532348633, + "msecs": 758.60595703125, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17848.78897666931, - "thread": 140379336402752, + "relativeCreated": 17987.104892730713, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.32891082763671875 + "time_consumption": 0.3313710689544678 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:26,194", - "created": 1610361446.194918, + "asctime": "2021-01-14 00:26:08,760", + "created": 1610580368.760052, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63969,8 +63916,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,194", - "created": 1610361446.19431, + "asctime": "2021-01-14 00:26:08,759", + "created": 1610580368.759253, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63980,14 +63927,14 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 194.30994987487793, + "msecs": 759.2530250549316, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17849.720001220703, - "thread": 140379336402752, + "relativeCreated": 17987.751960754395, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -63996,8 +63943,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,194", - "created": 1610361446.194632, + "asctime": "2021-01-14 00:26:08,759", + "created": 1610580368.759627, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64007,35 +63954,35 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 194.63205337524414, + "msecs": 759.627103805542, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17850.04210472107, - "thread": 140379336402752, + "relativeCreated": 17988.126039505005, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 194.9179172515869, + "msecs": 760.051965713501, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17850.327968597412, - "thread": 140379336402752, + "relativeCreated": 17988.550901412964, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00028586387634277344 + "time_consumption": 0.0004248619079589844 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:26,196", - "created": 1610361446.196004, + "asctime": "2021-01-14 00:26:08,761", + "created": 1610580368.761298, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64052,8 +63999,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,195", - "created": 1610361446.195549, + "asctime": "2021-01-14 00:26:08,760", + "created": 1610580368.760659, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64063,14 +64010,14 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 195.54901123046875, + "msecs": 760.6589794158936, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17850.959062576294, - "thread": 140379336402752, + "relativeCreated": 17989.157915115356, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64079,8 +64026,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,195", - "created": 1610361446.195785, + "asctime": "2021-01-14 00:26:08,760", + "created": 1610580368.760987, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64090,32 +64037,32 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 195.7850456237793, + "msecs": 760.9870433807373, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17851.195096969604, - "thread": 140379336402752, + "relativeCreated": 17989.4859790802, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 196.00391387939453, + "msecs": 761.2979412078857, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17851.41396522522, - "thread": 140379336402752, + "relativeCreated": 17989.79687690735, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00021886825561523438 + "time_consumption": 0.0003108978271484375 }, { "args": [], - "asctime": "2021-01-11 11:37:26,197", - "created": 1610361446.197846, + "asctime": "2021-01-14 00:26:08,762", + "created": 1610580368.762384, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -64130,8 +64077,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,196", - "created": 1610361446.196377, + "asctime": "2021-01-14 00:26:08,761", + "created": 1610580368.761609, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64141,47 +64088,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 196.37703895568848, + "msecs": 761.6090774536133, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17851.787090301514, - "thread": 140379336402752, + "relativeCreated": 17990.108013153076, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,196", - "created": 1610361446.196642, + "asctime": "2021-01-14 00:26:08,761", + "created": 1610580368.76184, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 196.6419219970703, + "msecs": 761.8401050567627, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17852.051973342896, - "thread": 140379336402752, + "relativeCreated": 17990.339040756226, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,196", - "created": 1610361446.196925, + "asctime": "2021-01-14 00:26:08,762", + "created": 1610580368.762028, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64191,60 +64138,60 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 196.92492485046387, + "msecs": 762.0279788970947, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17852.33497619629, - "thread": 140379336402752, + "relativeCreated": 17990.526914596558, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,197", - "created": 1610361446.19753, + "asctime": "2021-01-14 00:26:08,762", + "created": 1610580368.762207, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 197.53003120422363, + "msecs": 762.20703125, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17852.94008255005, - "thread": 140379336402752, + "relativeCreated": 17990.705966949463, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 197.8459358215332, + "msecs": 762.3839378356934, "msg": "Disconnecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17853.25598716736, - "thread": 140379336402752, + "relativeCreated": 17990.882873535156, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003159046173095703 + "time_consumption": 0.00017690658569335938 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:26,199", - "created": 1610361446.199876, + "asctime": "2021-01-14 00:26:08,764", + "created": 1610580368.764034, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64261,8 +64208,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,199", - "created": 1610361446.199413, + "asctime": "2021-01-14 00:26:08,763", + "created": 1610580368.763592, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64272,14 +64219,14 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): False ()", "module": "test", - "msecs": 199.41306114196777, + "msecs": 763.592004776001, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17854.823112487793, - "thread": 140379336402752, + "relativeCreated": 17992.090940475464, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64288,8 +64235,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,199", - "created": 1610361446.199742, + "asctime": "2021-01-14 00:26:08,763", + "created": 1610580368.76379, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64299,35 +64246,35 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = False ()", "module": "test", - "msecs": 199.74207878112793, + "msecs": 763.7898921966553, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17855.152130126953, - "thread": 140379336402752, + "relativeCreated": 17992.288827896118, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 199.876070022583, + "msecs": 764.0340328216553, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17855.28612136841, - "thread": 140379336402752, + "relativeCreated": 17992.532968521118, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00013399124145507812 + "time_consumption": 0.000244140625 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:26,200", - "created": 1610361446.200332, + "asctime": "2021-01-14 00:26:08,764", + "created": 1610580368.764444, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64344,8 +64291,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,200", - "created": 1610361446.200087, + "asctime": "2021-01-14 00:26:08,764", + "created": 1610580368.764271, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64355,14 +64302,14 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): False ()", "module": "test", - "msecs": 200.0870704650879, + "msecs": 764.2710208892822, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17855.497121810913, - "thread": 140379336402752, + "relativeCreated": 17992.769956588745, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64371,8 +64318,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,200", - "created": 1610361446.200208, + "asctime": "2021-01-14 00:26:08,764", + "created": 1610580368.76436, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64382,39 +64329,39 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = False ()", "module": "test", - "msecs": 200.20794868469238, + "msecs": 764.3599510192871, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17855.618000030518, - "thread": 140379336402752, + "relativeCreated": 17992.85888671875, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 200.3319263458252, + "msecs": 764.44411277771, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17855.74197769165, - "thread": 140379336402752, + "relativeCreated": 17992.943048477173, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001239776611328125 + "time_consumption": 8.416175842285156e-05 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.35976290702819824, - "time_finished": "2021-01-11 11:37:26,200", - "time_start": "2021-01-11 11:37:25,840" + "time_consumption": 0.35985302925109863, + "time_finished": "2021-01-14 00:26:08,764", + "time_start": "2021-01-14 00:26:08,404" }, "_gvJ1oE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:26,200", - "created": 1610361446.200821, + "asctime": "2021-01-14 00:26:08,764", + "created": 1610580368.76473, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64425,18 +64372,18 @@ "message": "_gvJ1oE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 200.8209228515625, + "msecs": 764.7299766540527, "msg": "_gvJ1oE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17856.230974197388, + "relativeCreated": 17993.228912353516, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206334, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771691, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -64451,8 +64398,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,201", - "created": 1610361446.201439, + "asctime": "2021-01-14 00:26:08,765", + "created": 1610580368.765271, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64462,22 +64409,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 201.43890380859375, + "msecs": 765.2709484100342, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17856.84895515442, - "thread": 140379336402752, + "relativeCreated": 17993.769884109497, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,202", - "created": 1610361446.202067, + "asctime": "2021-01-14 00:26:08,765", + "created": 1610580368.765925, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64487,22 +64434,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 202.06689834594727, + "msecs": 765.9249305725098, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17857.476949691772, - "thread": 140379336402752, + "relativeCreated": 17994.423866271973, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,202", - "created": 1610361446.202203, + "asctime": "2021-01-14 00:26:08,766", + "created": 1610580368.766105, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64512,39 +64459,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 202.20303535461426, + "msecs": 766.1049365997314, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17857.61308670044, - "thread": 140379336402752, + "relativeCreated": 17994.603872299194, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,202", - "created": 1610361446.202447, + "asctime": "2021-01-14 00:26:08,766", + "created": 1610580368.766457, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 202.44693756103516, + "msecs": 766.4570808410645, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17857.85698890686, - "thread": 140379336402752, + "relativeCreated": 17994.956016540527, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64553,25 +64500,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:26,202", - "created": 1610361446.202591, + "asctime": "2021-01-14 00:26:08,766", + "created": 1610580368.76659, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 202.5909423828125, + "msecs": 766.5901184082031, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.000993728638, - "thread": 140379336402752, + "relativeCreated": 17995.089054107666, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64579,25 +64526,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,202", - "created": 1610361446.202751, + "asctime": "2021-01-14 00:26:08,766", + "created": 1610580368.766732, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 202.75092124938965, + "msecs": 766.7319774627686, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.160972595215, - "thread": 140379336402752, + "relativeCreated": 17995.23091316223, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64605,25 +64552,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,202", - "created": 1610361446.202867, + "asctime": "2021-01-14 00:26:08,766", + "created": 1610580368.766854, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 202.8670310974121, + "msecs": 766.8540477752686, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.277082443237, - "thread": 140379336402752, + "relativeCreated": 17995.35298347473, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64631,25 +64578,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:26,202", - "created": 1610361446.202986, + "asctime": "2021-01-14 00:26:08,766", + "created": 1610580368.76697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 202.9860019683838, + "msecs": 766.9699192047119, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.39605331421, - "thread": 140379336402752, + "relativeCreated": 17995.468854904175, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64657,25 +64604,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:26,203", - "created": 1610361446.203102, + "asctime": "2021-01-14 00:26:08,767", + "created": 1610580368.767079, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 203.10211181640625, + "msecs": 767.0791149139404, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.51216316223, - "thread": 140379336402752, + "relativeCreated": 17995.578050613403, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64685,8 +64632,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:26,203", - "created": 1610361446.203241, + "asctime": "2021-01-14 00:26:08,767", + "created": 1610580368.767209, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64696,14 +64643,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 203.24110984802246, + "msecs": 767.2090530395508, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.651161193848, - "thread": 140379336402752, + "relativeCreated": 17995.707988739014, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64713,8 +64660,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:26,203", - "created": 1610361446.203395, + "asctime": "2021-01-14 00:26:08,767", + "created": 1610580368.767333, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64724,14 +64671,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 203.39488983154297, + "msecs": 767.3330307006836, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.804941177368, - "thread": 140379336402752, + "relativeCreated": 17995.831966400146, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64741,8 +64688,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:26,203", - "created": 1610361446.203529, + "asctime": "2021-01-14 00:26:08,767", + "created": 1610580368.767481, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64752,14 +64699,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 203.52888107299805, + "msecs": 767.4810886383057, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17858.938932418823, - "thread": 140379336402752, + "relativeCreated": 17995.98002433777, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64769,8 +64716,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:26,203", - "created": 1610361446.203671, + "asctime": "2021-01-14 00:26:08,767", + "created": 1610580368.767619, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64780,39 +64727,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 203.67097854614258, + "msecs": 767.6188945770264, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.081029891968, - "thread": 140379336402752, + "relativeCreated": 17996.11783027649, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,203", - "created": 1610361446.203792, + "asctime": "2021-01-14 00:26:08,767", + "created": 1610580368.76774, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 203.79209518432617, + "msecs": 767.74001121521, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.20214653015, - "thread": 140379336402752, + "relativeCreated": 17996.238946914673, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64821,25 +64768,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:26,203", - "created": 1610361446.203929, + "asctime": "2021-01-14 00:26:08,767", + "created": 1610580368.767891, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 203.92894744873047, + "msecs": 767.8909301757812, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.338998794556, - "thread": 140379336402752, + "relativeCreated": 17996.389865875244, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64847,25 +64794,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204061, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.768025, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 204.06103134155273, + "msecs": 768.0249214172363, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.471082687378, - "thread": 140379336402752, + "relativeCreated": 17996.5238571167, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64873,25 +64820,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204175, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.768151, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 204.17499542236328, + "msecs": 768.151044845581, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.58504676819, - "thread": 140379336402752, + "relativeCreated": 17996.649980545044, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64901,8 +64848,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204312, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.768293, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64912,14 +64859,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 204.31208610534668, + "msecs": 768.2929039001465, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.722137451172, - "thread": 140379336402752, + "relativeCreated": 17996.79183959961, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64929,8 +64876,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204445, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.768429, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -64940,14 +64887,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 204.44488525390625, + "msecs": 768.4290409088135, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.85493659973, - "thread": 140379336402752, + "relativeCreated": 17996.927976608276, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64956,25 +64903,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204569, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.768554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 204.56910133361816, + "msecs": 768.5539722442627, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17859.979152679443, - "thread": 140379336402752, + "relativeCreated": 17997.052907943726, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -64983,25 +64930,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204681, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.768672, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 204.6809196472168, + "msecs": 768.671989440918, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.090970993042, - "thread": 140379336402752, + "relativeCreated": 17997.17092514038, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65010,75 +64957,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204798, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.768797, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 204.79798316955566, + "msecs": 768.7969207763672, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.20803451538, - "thread": 140379336402752, + "relativeCreated": 17997.29585647583, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,204", - "created": 1610361446.204864, + "asctime": "2021-01-14 00:26:08,768", + "created": 1610580368.76892, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 204.8640251159668, + "msecs": 768.9199447631836, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.274076461792, - "thread": 140379336402752, + "relativeCreated": 17997.418880462646, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.20505, + "asctime": "2021-01-14 00:26:08,769", + "created": 1610580368.769338, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 205.04999160766602, + "msecs": 769.3378925323486, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.46004295349, - "thread": 140379336402752, + "relativeCreated": 17997.83682823181, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65087,25 +65034,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205111, + "asctime": "2021-01-14 00:26:08,769", + "created": 1610580368.769459, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 205.11102676391602, + "msecs": 769.4590091705322, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.52107810974, - "thread": 140379336402752, + "relativeCreated": 17997.957944869995, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65113,25 +65060,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205182, + "asctime": "2021-01-14 00:26:08,769", + "created": 1610580368.769607, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 205.18207550048828, + "msecs": 769.6070671081543, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.592126846313, - "thread": 140379336402752, + "relativeCreated": 17998.106002807617, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65139,25 +65086,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205239, + "asctime": "2021-01-14 00:26:08,769", + "created": 1610580368.769737, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 205.23905754089355, + "msecs": 769.7370052337646, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.64910888672, - "thread": 140379336402752, + "relativeCreated": 17998.235940933228, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65165,25 +65112,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205303, + "asctime": "2021-01-14 00:26:08,769", + "created": 1610580368.76986, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 205.30295372009277, + "msecs": 769.860029220581, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.713005065918, - "thread": 140379336402752, + "relativeCreated": 17998.358964920044, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65191,25 +65138,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205364, + "asctime": "2021-01-14 00:26:08,769", + "created": 1610580368.769985, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 205.36398887634277, + "msecs": 769.9849605560303, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.774040222168, - "thread": 140379336402752, + "relativeCreated": 17998.483896255493, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65219,8 +65166,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205433, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770121, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65230,14 +65177,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 205.43289184570312, + "msecs": 770.1210975646973, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.84294319153, - "thread": 140379336402752, + "relativeCreated": 17998.62003326416, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65247,8 +65194,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205502, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770261, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65258,14 +65205,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 205.50203323364258, + "msecs": 770.2610492706299, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.912084579468, - "thread": 140379336402752, + "relativeCreated": 17998.759984970093, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65275,8 +65222,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205569, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770391, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65286,14 +65233,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 205.56902885437012, + "msecs": 770.3909873962402, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17860.979080200195, - "thread": 140379336402752, + "relativeCreated": 17998.889923095703, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65303,8 +65250,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205634, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770531, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65314,39 +65261,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 205.63411712646484, + "msecs": 770.5309391021729, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.04416847229, - "thread": 140379336402752, + "relativeCreated": 17999.029874801636, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205694, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770653, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 205.69396018981934, + "msecs": 770.6530094146729, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.104011535645, - "thread": 140379336402752, + "relativeCreated": 17999.151945114136, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65355,25 +65302,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205771, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770755, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 205.77096939086914, + "msecs": 770.7550525665283, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.181020736694, - "thread": 140379336402752, + "relativeCreated": 17999.25398826599, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65381,25 +65328,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205845, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 205.84511756896973, + "msecs": 770.8530426025391, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.255168914795, - "thread": 140379336402752, + "relativeCreated": 17999.351978302002, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65407,25 +65354,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205897, + "asctime": "2021-01-14 00:26:08,770", + "created": 1610580368.770941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 205.89709281921387, + "msecs": 770.9410190582275, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.30714416504, - "thread": 140379336402752, + "relativeCreated": 17999.43995475769, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65435,8 +65382,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:26,205", - "created": 1610361446.205958, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771043, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65446,14 +65393,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 205.95788955688477, + "msecs": 771.043062210083, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.36794090271, - "thread": 140379336402752, + "relativeCreated": 17999.541997909546, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65463,8 +65410,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206026, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771143, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65474,14 +65421,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 206.0260772705078, + "msecs": 771.1429595947266, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.436128616333, - "thread": 140379336402752, + "relativeCreated": 17999.64189529419, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65490,25 +65437,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206094, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.77124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 206.09402656555176, + "msecs": 771.2399959564209, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.504077911377, - "thread": 140379336402752, + "relativeCreated": 17999.738931655884, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65517,25 +65464,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206162, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771345, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 206.1619758605957, + "msecs": 771.3449001312256, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.57202720642, - "thread": 140379336402752, + "relativeCreated": 17999.84383583069, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65544,68 +65491,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206215, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771457, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 206.21490478515625, + "msecs": 771.4569568634033, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.62495613098, - "thread": 140379336402752, + "relativeCreated": 17999.955892562866, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206273, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771563, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 206.27307891845703, + "msecs": 771.5630531311035, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.683130264282, - "thread": 140379336402752, + "relativeCreated": 18000.061988830566, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 206.33411407470703, + "msecs": 771.691083908081, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.744165420532, - "thread": 140379336402752, + "relativeCreated": 18000.190019607544, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 6.103515625e-05 + "time_consumption": 0.00012803077697753906 }, { "args": [], - "asctime": "2021-01-11 11:37:26,550", - "created": 1610361446.550222, + "asctime": "2021-01-14 00:26:09,116", + "created": 1610580369.116005, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -65620,8 +65567,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.20646, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771872, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65631,22 +65578,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 206.45999908447266, + "msecs": 771.8720436096191, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.870050430298, - "thread": 140379336402752, + "relativeCreated": 18000.370979309082, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206524, + "asctime": "2021-01-14 00:26:08,771", + "created": 1610580368.771981, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65656,39 +65603,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 206.52389526367188, + "msecs": 771.9810009002686, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17861.933946609497, - "thread": 140379336402752, + "relativeCreated": 18000.47993659973, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206624, + "asctime": "2021-01-14 00:26:08,772", + "created": 1610580368.772081, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 206.62403106689453, + "msecs": 772.0808982849121, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.03408241272, - "thread": 140379336402752, + "relativeCreated": 18000.579833984375, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65699,33 +65646,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206703, + "asctime": "2021-01-14 00:26:08,772", + "created": 1610580368.77223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 206.70294761657715, + "msecs": 772.2299098968506, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.112998962402, - "thread": 140379336402752, + "relativeCreated": 18000.728845596313, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206855, + "asctime": "2021-01-14 00:26:08,772", + "created": 1610580368.772518, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65735,22 +65682,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 206.85505867004395, + "msecs": 772.5179195404053, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.26511001587, - "thread": 140379336402752, + "relativeCreated": 18001.016855239868, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.20693, + "asctime": "2021-01-14 00:26:08,772", + "created": 1610580368.772629, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65760,39 +65707,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 206.92992210388184, + "msecs": 772.6290225982666, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.339973449707, - "thread": 140379336402752, + "relativeCreated": 18001.12795829773, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,206", - "created": 1610361446.206998, + "asctime": "2021-01-14 00:26:08,772", + "created": 1610580368.77275, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 206.99810981750488, + "msecs": 772.7499008178711, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.40816116333, - "thread": 140379336402752, + "relativeCreated": 18001.248836517334, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -65800,8 +65747,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207159, + "asctime": "2021-01-14 00:26:08,773", + "created": 1610580368.773354, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65811,14 +65758,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 207.15904235839844, + "msecs": 773.3540534973145, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.569093704224, - "thread": 140377206007552, + "relativeCreated": 18001.852989196777, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -65826,8 +65773,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207315, + "asctime": "2021-01-14 00:26:08,773", + "created": 1610580368.773557, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65837,14 +65784,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 207.31496810913086, + "msecs": 773.5569477081299, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.725019454956, - "thread": 140377206007552, + "relativeCreated": 18002.055883407593, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -65852,8 +65799,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207382, + "asctime": "2021-01-14 00:26:08,773", + "created": 1610580368.773656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -65863,14 +65810,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 207.3819637298584, + "msecs": 773.655891418457, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.792015075684, - "thread": 140377206007552, + "relativeCreated": 18002.15482711792, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -65879,8 +65826,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207443, + "asctime": "2021-01-14 00:26:08,773", + "created": 1610580368.773742, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -65890,14 +65837,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 207.4429988861084, + "msecs": 773.7419605255127, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.853050231934, - "thread": 140377206007552, + "relativeCreated": 18002.240896224976, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -65905,8 +65852,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207523, + "asctime": "2021-01-14 00:26:08,773", + "created": 1610580368.773854, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -65916,14 +65863,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 207.52310752868652, + "msecs": 773.8540172576904, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.93315887451, - "thread": 140377206007552, + "relativeCreated": 18002.352952957153, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -65932,8 +65879,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207585, + "asctime": "2021-01-14 00:26:08,773", + "created": 1610580368.773939, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -65943,14 +65890,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 207.58509635925293, + "msecs": 773.9388942718506, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17862.995147705078, - "thread": 140377206007552, + "relativeCreated": 18002.437829971313, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -65958,8 +65905,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207684, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774056, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -65969,14 +65916,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 207.68404006958008, + "msecs": 774.0559577941895, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.094091415405, - "thread": 140377206007552, + "relativeCreated": 18002.554893493652, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -65985,8 +65932,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207782, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774148, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -65996,14 +65943,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 207.78203010559082, + "msecs": 774.1479873657227, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.192081451416, - "thread": 140377206007552, + "relativeCreated": 18002.646923065186, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66011,8 +65958,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207858, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774265, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66022,14 +65969,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 207.85808563232422, + "msecs": 774.2650508880615, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.26813697815, - "thread": 140377206007552, + "relativeCreated": 18002.763986587524, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66038,8 +65985,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207915, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774348, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66049,14 +65996,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 207.9150676727295, + "msecs": 774.3480205535889, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.325119018555, - "thread": 140377206007552, + "relativeCreated": 18002.84695625305, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66064,8 +66011,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,207", - "created": 1610361446.207995, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774469, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66075,14 +66022,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 207.99493789672852, + "msecs": 774.4688987731934, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.404989242554, - "thread": 140377206007552, + "relativeCreated": 18002.967834472656, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66091,8 +66038,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.20805, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774552, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66102,14 +66049,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 208.05001258850098, + "msecs": 774.5521068572998, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.460063934326, - "thread": 140377206007552, + "relativeCreated": 18003.051042556763, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66117,8 +66064,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208136, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774701, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -66128,14 +66075,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 208.13608169555664, + "msecs": 774.7011184692383, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.546133041382, - "thread": 140377206007552, + "relativeCreated": 18003.2000541687, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66143,8 +66090,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208203, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774857, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -66154,14 +66101,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 208.20307731628418, + "msecs": 774.8570442199707, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.61312866211, - "thread": 140377206007552, + "relativeCreated": 18003.355979919434, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66169,8 +66116,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208282, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774913, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66180,14 +66127,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 208.2819938659668, + "msecs": 774.9130725860596, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.692045211792, - "thread": 140377206007552, + "relativeCreated": 18003.412008285522, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66196,8 +66143,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208343, + "asctime": "2021-01-14 00:26:08,774", + "created": 1610580368.774966, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66207,14 +66154,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 208.3430290222168, + "msecs": 774.9660015106201, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.753080368042, - "thread": 140377206007552, + "relativeCreated": 18003.464937210083, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66222,8 +66169,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208475, + "asctime": "2021-01-14 00:26:08,775", + "created": 1610580368.775066, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66233,14 +66180,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 208.47511291503906, + "msecs": 775.0658988952637, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17863.885164260864, - "thread": 140377206007552, + "relativeCreated": 18003.564834594727, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66251,25 +66198,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208596, + "asctime": "2021-01-14 00:26:08,775", + "created": 1610580368.775179, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 208.59599113464355, + "msecs": 775.1789093017578, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17864.00604248047, - "thread": 140377206007552, + "relativeCreated": 18003.67784500122, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66277,25 +66224,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208663, + "asctime": "2021-01-14 00:26:08,775", + "created": 1610580368.775243, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 208.6629867553711, + "msecs": 775.2430438995361, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17864.073038101196, - "thread": 140377206007552, + "relativeCreated": 18003.741979599, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66306,25 +66253,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,208", - "created": 1610361446.208752, + "asctime": "2021-01-14 00:26:08,775", + "created": 1610580368.775325, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 208.75191688537598, + "msecs": 775.3250598907471, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17864.1619682312, - "thread": 140377206007552, + "relativeCreated": 18003.82399559021, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -66332,8 +66279,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,211", - "created": 1610361446.211881, + "asctime": "2021-01-14 00:26:08,775", + "created": 1610580368.775776, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -66343,14 +66290,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 211.88092231750488, + "msecs": 775.7759094238281, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.29097366333, - "thread": 140377197614848, + "relativeCreated": 18004.27484512329, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66358,8 +66305,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212012, + "asctime": "2021-01-14 00:26:08,775", + "created": 1610580368.775939, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -66369,14 +66316,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 212.01205253601074, + "msecs": 775.9389877319336, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.422103881836, - "thread": 140377197614848, + "relativeCreated": 18004.437923431396, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66384,8 +66331,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212089, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776012, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66395,14 +66342,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 212.08906173706055, + "msecs": 776.0119438171387, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.499113082886, - "thread": 140377197614848, + "relativeCreated": 18004.5108795166, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66411,8 +66358,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212159, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776078, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66422,14 +66369,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 212.1589183807373, + "msecs": 776.0779857635498, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.568969726562, - "thread": 140377197614848, + "relativeCreated": 18004.576921463013, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66437,8 +66384,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212238, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776159, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66448,14 +66395,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 212.23807334899902, + "msecs": 776.1590480804443, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.648124694824, - "thread": 140377197614848, + "relativeCreated": 18004.657983779907, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66464,8 +66411,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212299, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776228, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66475,14 +66422,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 212.29910850524902, + "msecs": 776.2279510498047, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.709159851074, - "thread": 140377197614848, + "relativeCreated": 18004.726886749268, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66490,8 +66437,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212385, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776332, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66501,14 +66448,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 212.3849391937256, + "msecs": 776.331901550293, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.79499053955, - "thread": 140377197614848, + "relativeCreated": 18004.830837249756, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66517,8 +66464,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212449, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776406, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66528,14 +66475,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 212.4490737915039, + "msecs": 776.4060497283936, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.85912513733, - "thread": 140377197614848, + "relativeCreated": 18004.904985427856, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66543,8 +66490,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212525, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776479, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66554,14 +66501,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 212.5248908996582, + "msecs": 776.4790058135986, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.934942245483, - "thread": 140377197614848, + "relativeCreated": 18004.97794151306, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66570,8 +66517,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212584, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776558, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66581,14 +66528,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 212.5840187072754, + "msecs": 776.5579223632812, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17867.9940700531, - "thread": 140377197614848, + "relativeCreated": 18005.056858062744, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66596,8 +66543,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212667, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776659, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66607,14 +66554,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 212.66698837280273, + "msecs": 776.6590118408203, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.077039718628, - "thread": 140377197614848, + "relativeCreated": 18005.157947540283, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66623,8 +66570,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212725, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776728, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66634,14 +66581,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 212.7249240875244, + "msecs": 776.7279148101807, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.13497543335, - "thread": 140377197614848, + "relativeCreated": 18005.226850509644, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66649,8 +66596,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212834, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776801, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -66660,14 +66607,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 212.83388137817383, + "msecs": 776.8011093139648, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.243932724, - "thread": 140377197614848, + "relativeCreated": 18005.300045013428, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66675,8 +66622,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212894, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776861, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -66686,14 +66633,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 212.89396286010742, + "msecs": 776.8609523773193, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.304014205933, - "thread": 140377197614848, + "relativeCreated": 18005.359888076782, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66701,8 +66648,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212949, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776907, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66712,14 +66659,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 212.94903755187988, + "msecs": 776.9069671630859, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.359088897705, - "thread": 140377197614848, + "relativeCreated": 18005.40590286255, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66728,8 +66675,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:26,212", - "created": 1610361446.212997, + "asctime": "2021-01-14 00:26:08,776", + "created": 1610580368.776951, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66739,14 +66686,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 212.9969596862793, + "msecs": 776.9510746002197, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.407011032104, - "thread": 140377197614848, + "relativeCreated": 18005.450010299683, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66754,8 +66701,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:26,213", - "created": 1610361446.213106, + "asctime": "2021-01-14 00:26:08,777", + "created": 1610580368.777035, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -66765,14 +66712,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 213.1059169769287, + "msecs": 777.0349979400635, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.515968322754, - "thread": 140377197614848, + "relativeCreated": 18005.533933639526, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66783,25 +66730,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,213", - "created": 1610361446.213218, + "asctime": "2021-01-14 00:26:08,777", + "created": 1610580368.777143, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 213.21797370910645, + "msecs": 777.1430015563965, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.62802505493, - "thread": 140377197614848, + "relativeCreated": 18005.64193725586, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -66809,46 +66756,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:26,213", - "created": 1610361446.213296, + "asctime": "2021-01-14 00:26:08,777", + "created": 1610580368.777207, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 213.29593658447266, + "msecs": 777.2068977355957, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 17868.705987930298, - "thread": 140377197614848, + "relativeCreated": 18005.70583343506, + "thread": 140017561212672, "threadName": "Thread-34" } ], - "msecs": 550.2219200134277, + "msecs": 116.00494384765625, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18205.631971359253, - "thread": 140379336402752, + "relativeCreated": 18344.50387954712, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3369259834289551 + "time_consumption": 0.33879804611206055 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:26,551", - "created": 1610361446.551312, + "asctime": "2021-01-14 00:26:09,117", + "created": 1610580369.117534, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66865,8 +66812,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,550", - "created": 1610361446.550818, + "asctime": "2021-01-14 00:26:09,116", + "created": 1610580369.116844, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66876,14 +66823,14 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 550.8179664611816, + "msecs": 116.84393882751465, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18206.228017807007, - "thread": 140379336402752, + "relativeCreated": 18345.342874526978, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -66892,8 +66839,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,551", - "created": 1610361446.551025, + "asctime": "2021-01-14 00:26:09,117", + "created": 1610580369.117217, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66903,35 +66850,35 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 551.0249137878418, + "msecs": 117.2170639038086, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18206.434965133667, - "thread": 140379336402752, + "relativeCreated": 18345.71599960327, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 551.3119697570801, + "msecs": 117.53392219543457, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18206.722021102905, - "thread": 140379336402752, + "relativeCreated": 18346.032857894897, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00028705596923828125 + "time_consumption": 0.00031685829162597656 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:26,552", - "created": 1610361446.552224, + "asctime": "2021-01-14 00:26:09,118", + "created": 1610580369.118161, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66948,8 +66895,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,551", - "created": 1610361446.551814, + "asctime": "2021-01-14 00:26:09,117", + "created": 1610580369.117829, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66959,14 +66906,14 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 551.814079284668, + "msecs": 117.8290843963623, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18207.224130630493, - "thread": 140379336402752, + "relativeCreated": 18346.328020095825, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -66975,8 +66922,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,552", - "created": 1610361446.552028, + "asctime": "2021-01-14 00:26:09,117", + "created": 1610580369.117998, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66986,32 +66933,32 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 552.0279407501221, + "msecs": 117.99788475036621, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18207.437992095947, - "thread": 140379336402752, + "relativeCreated": 18346.49682044983, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 552.2239208221436, + "msecs": 118.16096305847168, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18207.63397216797, - "thread": 140379336402752, + "relativeCreated": 18346.659898757935, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00019598007202148438 + "time_consumption": 0.00016307830810546875 }, { "args": [], - "asctime": "2021-01-11 11:37:26,553", - "created": 1610361446.553364, + "asctime": "2021-01-14 00:26:09,119", + "created": 1610580369.119361, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -67026,8 +66973,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,552", - "created": 1610361446.55258, + "asctime": "2021-01-14 00:26:09,118", + "created": 1610580369.118461, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67037,47 +66984,47 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 552.5801181793213, + "msecs": 118.46089363098145, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18207.990169525146, - "thread": 140379336402752, + "relativeCreated": 18346.959829330444, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,552", - "created": 1610361446.552828, + "asctime": "2021-01-14 00:26:09,118", + "created": 1610580369.118707, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 552.8280735015869, + "msecs": 118.70694160461426, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18208.238124847412, - "thread": 140379336402752, + "relativeCreated": 18347.205877304077, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,553", - "created": 1610361446.553015, + "asctime": "2021-01-14 00:26:09,118", + "created": 1610580369.118927, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67087,60 +67034,60 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 553.0149936676025, + "msecs": 118.927001953125, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18208.425045013428, - "thread": 140379336402752, + "relativeCreated": 18347.425937652588, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,553", - "created": 1610361446.553187, + "asctime": "2021-01-14 00:26:09,119", + "created": 1610580369.119152, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 553.1868934631348, + "msecs": 119.15206909179688, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18208.59694480896, - "thread": 140379336402752, + "relativeCreated": 18347.65100479126, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 553.3640384674072, + "msecs": 119.36092376708984, "msg": "Disconnecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18208.774089813232, - "thread": 140379336402752, + "relativeCreated": 18347.859859466553, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017714500427246094 + "time_consumption": 0.00020885467529296875 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:26,553", - "created": 1610361446.55398, + "asctime": "2021-01-14 00:26:09,120", + "created": 1610580369.120061, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67157,8 +67104,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,553", - "created": 1610361446.553652, + "asctime": "2021-01-14 00:26:09,119", + "created": 1610580369.119715, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67168,14 +67115,14 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): False ()", "module": "test", - "msecs": 553.6520481109619, + "msecs": 119.71497535705566, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18209.062099456787, - "thread": 140379336402752, + "relativeCreated": 18348.21391105652, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -67184,8 +67131,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,553", - "created": 1610361446.553813, + "asctime": "2021-01-14 00:26:09,119", + "created": 1610580369.119881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67195,35 +67142,35 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = False ()", "module": "test", - "msecs": 553.8129806518555, + "msecs": 119.88091468811035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18209.22303199768, - "thread": 140379336402752, + "relativeCreated": 18348.379850387573, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 553.9801120758057, + "msecs": 120.06092071533203, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18209.39016342163, - "thread": 140379336402752, + "relativeCreated": 18348.559856414795, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001671314239501953 + "time_consumption": 0.0001800060272216797 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:26,554", - "created": 1610361446.554543, + "asctime": "2021-01-14 00:26:09,120", + "created": 1610580369.120898, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67240,8 +67187,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,554", - "created": 1610361446.554235, + "asctime": "2021-01-14 00:26:09,120", + "created": 1610580369.120379, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67251,14 +67198,14 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): False ()", "module": "test", - "msecs": 554.2349815368652, + "msecs": 120.37897109985352, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18209.64503288269, - "thread": 140379336402752, + "relativeCreated": 18348.877906799316, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -67267,8 +67214,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:26,554", - "created": 1610361446.55439, + "asctime": "2021-01-14 00:26:09,120", + "created": 1610580369.120576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67278,32 +67225,32 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = False ()", "module": "test", - "msecs": 554.3899536132812, + "msecs": 120.5759048461914, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18209.800004959106, - "thread": 140379336402752, + "relativeCreated": 18349.074840545654, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 554.5430183410645, + "msecs": 120.89800834655762, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18209.95306968689, - "thread": 140379336402752, + "relativeCreated": 18349.39694404602, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 + "time_consumption": 0.00032210350036621094 }, { "args": [], - "asctime": "2021-01-11 11:37:26,900", - "created": 1610361446.900875, + "asctime": "2021-01-14 00:26:09,467", + "created": 1610580369.467649, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -67318,8 +67265,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,554", - "created": 1610361446.554871, + "asctime": "2021-01-14 00:26:09,121", + "created": 1610580369.121316, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67329,22 +67276,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 554.8710823059082, + "msecs": 121.31595611572266, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18210.281133651733, - "thread": 140379336402752, + "relativeCreated": 18349.814891815186, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:26,555", - "created": 1610361446.555126, + "asctime": "2021-01-14 00:26:09,121", + "created": 1610580369.12157, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67354,39 +67301,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 555.1259517669678, + "msecs": 121.57011032104492, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18210.536003112793, - "thread": 140379336402752, + "relativeCreated": 18350.069046020508, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:26,555", - "created": 1610361446.555438, + "asctime": "2021-01-14 00:26:09,122", + "created": 1610580369.122011, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 555.4380416870117, + "msecs": 122.01094627380371, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18210.848093032837, - "thread": 140379336402752, + "relativeCreated": 18350.509881973267, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -67397,33 +67344,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,555", - "created": 1610361446.555886, + "asctime": "2021-01-14 00:26:09,122", + "created": 1610580369.122469, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 555.8860301971436, + "msecs": 122.46894836425781, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18211.29608154297, - "thread": 140379336402752, + "relativeCreated": 18350.96788406372, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,556", - "created": 1610361446.556849, + "asctime": "2021-01-14 00:26:09,123", + "created": 1610580369.123521, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67433,22 +67380,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 556.8490028381348, + "msecs": 123.52108955383301, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18212.25905418396, - "thread": 140379336402752, + "relativeCreated": 18352.020025253296, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:26,557", - "created": 1610361446.5573, + "asctime": "2021-01-14 00:26:09,123", + "created": 1610580369.123805, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67458,39 +67405,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 557.3000907897949, + "msecs": 123.80504608154297, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18212.71014213562, - "thread": 140379336402752, + "relativeCreated": 18352.303981781006, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:26,557", - "created": 1610361446.55762, + "asctime": "2021-01-14 00:26:09,124", + "created": 1610580369.124131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 557.6200485229492, + "msecs": 124.1309642791748, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18213.030099868774, - "thread": 140379336402752, + "relativeCreated": 18352.629899978638, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -67498,8 +67445,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,573", - "created": 1610361446.573659, + "asctime": "2021-01-14 00:26:09,140", + "created": 1610580369.140444, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67509,14 +67456,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 573.6589431762695, + "msecs": 140.4440402984619, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18229.068994522095, - "thread": 140377206007552, + "relativeCreated": 18368.942975997925, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67524,8 +67471,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,574", - "created": 1610361446.574063, + "asctime": "2021-01-14 00:26:09,140", + "created": 1610580369.140848, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67535,14 +67482,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 574.0630626678467, + "msecs": 140.84792137145996, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18229.473114013672, - "thread": 140377206007552, + "relativeCreated": 18369.346857070923, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67550,8 +67497,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,574", - "created": 1610361446.57424, + "asctime": "2021-01-14 00:26:09,141", + "created": 1610580369.141025, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67561,14 +67508,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 574.23996925354, + "msecs": 141.02506637573242, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18229.650020599365, - "thread": 140377206007552, + "relativeCreated": 18369.524002075195, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67577,8 +67524,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:26,574", - "created": 1610361446.574378, + "asctime": "2021-01-14 00:26:09,141", + "created": 1610580369.14117, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67588,14 +67535,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 574.3780136108398, + "msecs": 141.17002487182617, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18229.788064956665, - "thread": 140377206007552, + "relativeCreated": 18369.66896057129, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67603,8 +67550,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,574", - "created": 1610361446.574521, + "asctime": "2021-01-14 00:26:09,141", + "created": 1610580369.141304, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67614,14 +67561,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 574.5210647583008, + "msecs": 141.30401611328125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18229.931116104126, - "thread": 140377206007552, + "relativeCreated": 18369.802951812744, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67630,8 +67577,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,574", - "created": 1610361446.574631, + "asctime": "2021-01-14 00:26:09,141", + "created": 1610580369.141426, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67641,14 +67588,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 574.6309757232666, + "msecs": 141.42608642578125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.04102706909, - "thread": 140377206007552, + "relativeCreated": 18369.925022125244, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67656,8 +67603,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,574", - "created": 1610361446.574783, + "asctime": "2021-01-14 00:26:09,141", + "created": 1610580369.141696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67667,14 +67614,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 574.7830867767334, + "msecs": 141.69597625732422, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.19313812256, - "thread": 140377206007552, + "relativeCreated": 18370.194911956787, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67683,8 +67630,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,574", - "created": 1610361446.574894, + "asctime": "2021-01-14 00:26:09,141", + "created": 1610580369.141821, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67694,14 +67641,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 574.8939514160156, + "msecs": 141.82090759277344, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.30400276184, - "thread": 140377206007552, + "relativeCreated": 18370.319843292236, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67709,8 +67656,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.575027, + "asctime": "2021-01-14 00:26:09,142", + "created": 1610580369.142017, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67720,14 +67667,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 575.0269889831543, + "msecs": 142.01688766479492, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.43704032898, - "thread": 140377206007552, + "relativeCreated": 18370.515823364258, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67736,8 +67683,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.575191, + "asctime": "2021-01-14 00:26:09,142", + "created": 1610580369.142139, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67747,14 +67694,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 575.1910209655762, + "msecs": 142.13895797729492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.6010723114, - "thread": 140377206007552, + "relativeCreated": 18370.637893676758, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67762,8 +67709,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.57531, + "asctime": "2021-01-14 00:26:09,142", + "created": 1610580369.142357, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67773,14 +67720,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 575.3099918365479, + "msecs": 142.35711097717285, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.720043182373, - "thread": 140377206007552, + "relativeCreated": 18370.856046676636, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67789,8 +67736,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.575399, + "asctime": "2021-01-14 00:26:09,142", + "created": 1610580369.142492, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67800,14 +67747,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 575.3989219665527, + "msecs": 142.49205589294434, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.808973312378, - "thread": 140377206007552, + "relativeCreated": 18370.990991592407, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67815,8 +67762,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.575536, + "asctime": "2021-01-14 00:26:09,142", + "created": 1610580369.142718, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67826,14 +67773,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 575.5360126495361, + "msecs": 142.71807670593262, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18230.94606399536, - "thread": 140377206007552, + "relativeCreated": 18371.217012405396, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67841,8 +67788,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.575638, + "asctime": "2021-01-14 00:26:09,142", + "created": 1610580369.14291, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67852,14 +67799,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 575.6380558013916, + "msecs": 142.91000366210938, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18231.048107147217, - "thread": 140377206007552, + "relativeCreated": 18371.408939361572, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67867,8 +67814,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.575805, + "asctime": "2021-01-14 00:26:09,143", + "created": 1610580369.143047, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67878,14 +67825,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 575.8049488067627, + "msecs": 143.04709434509277, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18231.215000152588, - "thread": 140377206007552, + "relativeCreated": 18371.546030044556, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67894,8 +67841,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:26,575", - "created": 1610361446.575935, + "asctime": "2021-01-14 00:26:09,143", + "created": 1610580369.143169, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67905,14 +67852,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 575.934886932373, + "msecs": 143.16892623901367, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18231.3449382782, - "thread": 140377206007552, + "relativeCreated": 18371.667861938477, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67920,8 +67867,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:26,576", - "created": 1610361446.576192, + "asctime": "2021-01-14 00:26:09,143", + "created": 1610580369.143425, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -67931,14 +67878,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 576.1919021606445, + "msecs": 143.42498779296875, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18231.60195350647, - "thread": 140377206007552, + "relativeCreated": 18371.92392349243, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67949,25 +67896,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,576", - "created": 1610361446.576512, + "asctime": "2021-01-14 00:26:09,143", + "created": 1610580369.143722, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 576.5120983123779, + "msecs": 143.7220573425293, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18231.922149658203, - "thread": 140377206007552, + "relativeCreated": 18372.220993041992, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -67975,25 +67922,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:26,576", - "created": 1610361446.576677, + "asctime": "2021-01-14 00:26:09,143", + "created": 1610580369.143886, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 576.6770839691162, + "msecs": 143.88608932495117, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18232.08713531494, - "thread": 140377206007552, + "relativeCreated": 18372.385025024414, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -68004,25 +67951,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,576", - "created": 1610361446.576883, + "asctime": "2021-01-14 00:26:09,144", + "created": 1610580369.144083, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 576.88307762146, + "msecs": 144.08302307128906, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18232.293128967285, - "thread": 140377206007552, + "relativeCreated": 18372.581958770752, + "thread": 140017569605376, "threadName": "Thread-33" }, { @@ -68030,8 +67977,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,578", - "created": 1610361446.578201, + "asctime": "2021-01-14 00:26:09,178", + "created": 1610580369.178755, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68041,14 +67988,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 578.2010555267334, + "msecs": 178.7550449371338, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18233.61110687256, - "thread": 140377197614848, + "relativeCreated": 18407.253980636597, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68056,8 +68003,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:26,578", - "created": 1610361446.578423, + "asctime": "2021-01-14 00:26:09,179", + "created": 1610580369.179295, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68067,14 +68014,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 578.423023223877, + "msecs": 179.29506301879883, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18233.833074569702, - "thread": 140377197614848, + "relativeCreated": 18407.79399871826, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68082,8 +68029,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,578", - "created": 1610361446.578572, + "asctime": "2021-01-14 00:26:09,179", + "created": 1610580369.179515, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68093,14 +68040,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 578.5720348358154, + "msecs": 179.51488494873047, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18233.98208618164, - "thread": 140377197614848, + "relativeCreated": 18408.013820648193, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68109,8 +68056,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:26,578", - "created": 1610361446.578694, + "asctime": "2021-01-14 00:26:09,179", + "created": 1610580369.179719, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68120,14 +68067,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 578.6941051483154, + "msecs": 179.7189712524414, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18234.10415649414, - "thread": 140377197614848, + "relativeCreated": 18408.217906951904, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68135,8 +68082,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,578", - "created": 1610361446.578844, + "asctime": "2021-01-14 00:26:09,180", + "created": 1610580369.180014, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68146,14 +68093,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 578.8440704345703, + "msecs": 180.01389503479004, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18234.254121780396, - "thread": 140377197614848, + "relativeCreated": 18408.512830734253, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68162,8 +68109,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,579", - "created": 1610361446.579048, + "asctime": "2021-01-14 00:26:09,180", + "created": 1610580369.180214, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68173,14 +68120,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 579.0479183197021, + "msecs": 180.21392822265625, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18234.457969665527, - "thread": 140377197614848, + "relativeCreated": 18408.71286392212, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68188,8 +68135,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,579", - "created": 1610361446.579208, + "asctime": "2021-01-14 00:26:09,180", + "created": 1610580369.180495, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68199,14 +68146,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 579.2078971862793, + "msecs": 180.495023727417, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18234.617948532104, - "thread": 140377197614848, + "relativeCreated": 18408.99395942688, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68215,8 +68162,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,579", - "created": 1610361446.579372, + "asctime": "2021-01-14 00:26:09,180", + "created": 1610580369.180725, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68226,14 +68173,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 579.3719291687012, + "msecs": 180.72509765625, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18234.781980514526, - "thread": 140377197614848, + "relativeCreated": 18409.224033355713, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68241,8 +68188,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,579", - "created": 1610361446.579536, + "asctime": "2021-01-14 00:26:09,181", + "created": 1610580369.181022, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68252,14 +68199,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 579.535961151123, + "msecs": 181.02192878723145, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18234.94601249695, - "thread": 140377197614848, + "relativeCreated": 18409.520864486694, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68268,8 +68215,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,579", - "created": 1610361446.57966, + "asctime": "2021-01-14 00:26:09,181", + "created": 1610580369.181309, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68279,14 +68226,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 579.6599388122559, + "msecs": 181.30898475646973, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18235.06999015808, - "thread": 140377197614848, + "relativeCreated": 18409.807920455933, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68294,8 +68241,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,579", - "created": 1610361446.579838, + "asctime": "2021-01-14 00:26:09,181", + "created": 1610580369.181654, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68305,14 +68252,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 579.8380374908447, + "msecs": 181.6539764404297, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18235.24808883667, - "thread": 140377197614848, + "relativeCreated": 18410.152912139893, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68321,8 +68268,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:26,579", - "created": 1610361446.579975, + "asctime": "2021-01-14 00:26:09,181", + "created": 1610580369.181887, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68332,14 +68279,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 579.974889755249, + "msecs": 181.8869113922119, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18235.384941101074, - "thread": 140377197614848, + "relativeCreated": 18410.385847091675, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68347,8 +68294,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:26,580", - "created": 1610361446.580153, + "asctime": "2021-01-14 00:26:09,182", + "created": 1610580369.18269, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68358,14 +68305,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 580.1529884338379, + "msecs": 182.68990516662598, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18235.563039779663, - "thread": 140377197614848, + "relativeCreated": 18411.18884086609, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68373,8 +68320,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:26,580", - "created": 1610361446.580255, + "asctime": "2021-01-14 00:26:09,183", + "created": 1610580369.183093, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68384,14 +68331,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 580.2550315856934, + "msecs": 183.09307098388672, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18235.66508293152, - "thread": 140377197614848, + "relativeCreated": 18411.59200668335, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68399,8 +68346,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:26,580", - "created": 1610361446.58035, + "asctime": "2021-01-14 00:26:09,183", + "created": 1610580369.183351, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68410,14 +68357,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 580.3499221801758, + "msecs": 183.3510398864746, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18235.759973526, - "thread": 140377197614848, + "relativeCreated": 18411.849975585938, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68426,8 +68373,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:26,580", - "created": 1610361446.580456, + "asctime": "2021-01-14 00:26:09,183", + "created": 1610580369.18359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68437,14 +68384,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 580.456018447876, + "msecs": 183.58993530273438, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18235.8660697937, - "thread": 140377197614848, + "relativeCreated": 18412.088871002197, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68452,8 +68399,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:26,580", - "created": 1610361446.580674, + "asctime": "2021-01-14 00:26:09,184", + "created": 1610580369.184036, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -68463,14 +68410,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 580.6739330291748, + "msecs": 184.0360164642334, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18236.083984375, - "thread": 140377197614848, + "relativeCreated": 18412.534952163696, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68481,25 +68428,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:26,580", - "created": 1610361446.580904, + "asctime": "2021-01-14 00:26:09,184", + "created": 1610580369.184553, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 580.9040069580078, + "msecs": 184.5529079437256, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18236.314058303833, - "thread": 140377197614848, + "relativeCreated": 18413.05184364319, + "thread": 140017561212672, "threadName": "Thread-34" }, { @@ -68507,46 +68454,46 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:26,581", - "created": 1610361446.581044, + "asctime": "2021-01-14 00:26:09,184", + "created": 1610580369.184846, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 581.0439586639404, + "msecs": 184.8459243774414, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18236.454010009766, - "thread": 140377197614848, + "relativeCreated": 18413.344860076904, + "thread": 140017561212672, "threadName": "Thread-34" } ], - "msecs": 900.8750915527344, + "msecs": 467.648983001709, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18556.28514289856, - "thread": 140379336402752, + "relativeCreated": 18696.147918701172, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.31983113288879395 + "time_consumption": 0.2828030586242676 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:26,902", - "created": 1610361446.902129, + "asctime": "2021-01-14 00:26:09,468", + "created": 1610580369.468867, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68563,8 +68510,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,901", - "created": 1610361446.901597, + "asctime": "2021-01-14 00:26:09,468", + "created": 1610580369.468459, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68574,14 +68521,14 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 901.5970230102539, + "msecs": 468.458890914917, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18557.00707435608, - "thread": 140379336402752, + "relativeCreated": 18696.95782661438, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68590,8 +68537,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,901", - "created": 1610361446.901881, + "asctime": "2021-01-14 00:26:09,468", + "created": 1610580369.468677, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68601,35 +68548,35 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 901.8809795379639, + "msecs": 468.6770439147949, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18557.29103088379, - "thread": 140379336402752, + "relativeCreated": 18697.175979614258, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 902.1289348602295, + "msecs": 468.86706352233887, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18557.538986206055, - "thread": 140379336402752, + "relativeCreated": 18697.3659992218, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.000247955322265625 + "time_consumption": 0.0001900196075439453 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:26,903", - "created": 1610361446.903003, + "asctime": "2021-01-14 00:26:09,469", + "created": 1610580369.469642, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68646,8 +68593,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,902", - "created": 1610361446.902555, + "asctime": "2021-01-14 00:26:09,469", + "created": 1610580369.469237, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68657,14 +68604,14 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 902.554988861084, + "msecs": 469.2370891571045, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18557.96504020691, - "thread": 140379336402752, + "relativeCreated": 18697.736024856567, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68673,8 +68620,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:26,902", - "created": 1610361446.902781, + "asctime": "2021-01-14 00:26:09,469", + "created": 1610580369.469448, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68684,39 +68631,39 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 902.7810096740723, + "msecs": 469.4480895996094, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18558.191061019897, - "thread": 140379336402752, + "relativeCreated": 18697.947025299072, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 903.0029773712158, + "msecs": 469.64192390441895, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 18558.41302871704, - "thread": 140379336402752, + "relativeCreated": 18698.140859603882, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002219676971435547 + "time_consumption": 0.0001938343048095703 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.7021820545196533, - "time_finished": "2021-01-11 11:37:26,903", - "time_start": "2021-01-11 11:37:26,200" + "time_consumption": 0.7049119472503662, + "time_finished": "2021-01-14 00:26:09,469", + "time_start": "2021-01-14 00:26:08,764" }, "_j-npsE0MEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:10,096", - "created": 1610361430.096359, + "asctime": "2021-01-14 00:25:52,553", + "created": 1610580352.553719, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68727,18 +68674,18 @@ "message": "_j-npsE0MEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 96.3590145111084, + "msecs": 553.7190437316895, "msg": "_j-npsE0MEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1751.7690658569336, + "relativeCreated": 1782.2179794311523, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.106036, + "asctime": "2021-01-14 00:25:52,564", + "created": 1610580352.564209, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -68753,8 +68700,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:10,097", - "created": 1610361430.097495, + "asctime": "2021-01-14 00:25:52,554", + "created": 1610580352.554658, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68764,22 +68711,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 97.49507904052734, + "msecs": 554.6579360961914, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1752.9051303863525, - "thread": 140379336402752, + "relativeCreated": 1783.1568717956543, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:10,098", - "created": 1610361430.098563, + "asctime": "2021-01-14 00:25:52,555", + "created": 1610580352.555538, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68789,22 +68736,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 98.56295585632324, + "msecs": 555.5379390716553, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1753.9730072021484, - "thread": 140379336402752, + "relativeCreated": 1784.0368747711182, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:10,098", - "created": 1610361430.098955, + "asctime": "2021-01-14 00:25:52,555", + "created": 1610580352.55585, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68814,39 +68761,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 98.95491600036621, + "msecs": 555.8500289916992, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1754.3649673461914, - "thread": 140379336402752, + "relativeCreated": 1784.348964691162, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:10,099", - "created": 1610361430.099658, + "asctime": "2021-01-14 00:25:52,556", + "created": 1610580352.556252, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 99.65801239013672, + "msecs": 556.2520027160645, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1755.068063735962, - "thread": 140379336402752, + "relativeCreated": 1784.7509384155273, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68855,25 +68802,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:10,099", - "created": 1610361430.099951, + "asctime": "2021-01-14 00:25:52,556", + "created": 1610580352.556449, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 99.95102882385254, + "msecs": 556.4489364624023, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1755.3610801696777, - "thread": 140379336402752, + "relativeCreated": 1784.9478721618652, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68881,25 +68828,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:10,100", - "created": 1610361430.100269, + "asctime": "2021-01-14 00:25:52,556", + "created": 1610580352.556686, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 100.26907920837402, + "msecs": 556.6859245300293, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1755.6791305541992, - "thread": 140379336402752, + "relativeCreated": 1785.1848602294922, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68907,25 +68854,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:10,100", - "created": 1610361430.10053, + "asctime": "2021-01-14 00:25:52,556", + "created": 1610580352.556874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 100.52990913391113, + "msecs": 556.8740367889404, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1755.9399604797363, - "thread": 140379336402752, + "relativeCreated": 1785.3729724884033, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68933,25 +68880,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:10,100", - "created": 1610361430.100784, + "asctime": "2021-01-14 00:25:52,557", + "created": 1610580352.557164, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 100.7840633392334, + "msecs": 557.1639537811279, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1756.1941146850586, - "thread": 140379336402752, + "relativeCreated": 1785.6628894805908, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68959,25 +68906,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:10,101", - "created": 1610361430.101053, + "asctime": "2021-01-14 00:25:52,557", + "created": 1610580352.557343, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 101.05299949645996, + "msecs": 557.3430061340332, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1756.4630508422852, - "thread": 140379336402752, + "relativeCreated": 1785.841941833496, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -68987,8 +68934,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:10,101", - "created": 1610361430.101299, + "asctime": "2021-01-14 00:25:52,557", + "created": 1610580352.557529, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68998,14 +68945,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 101.29904747009277, + "msecs": 557.5289726257324, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1756.709098815918, - "thread": 140379336402752, + "relativeCreated": 1786.0279083251953, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69015,8 +68962,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:10,101", - "created": 1610361430.101574, + "asctime": "2021-01-14 00:25:52,557", + "created": 1610580352.557722, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69026,14 +68973,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 101.57394409179688, + "msecs": 557.7220916748047, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1756.983995437622, - "thread": 140379336402752, + "relativeCreated": 1786.2210273742676, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69043,8 +68990,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:10,101", - "created": 1610361430.10182, + "asctime": "2021-01-14 00:25:52,558", + "created": 1610580352.558057, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69054,14 +69001,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 101.81999206542969, + "msecs": 558.0570697784424, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1757.2300434112549, - "thread": 140379336402752, + "relativeCreated": 1786.5560054779053, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69071,8 +69018,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:10,102", - "created": 1610361430.102068, + "asctime": "2021-01-14 00:25:52,558", + "created": 1610580352.558265, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69082,39 +69029,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 102.06794738769531, + "msecs": 558.264970779419, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1757.4779987335205, - "thread": 140379336402752, + "relativeCreated": 1786.7639064788818, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:10,102", - "created": 1610361430.102303, + "asctime": "2021-01-14 00:25:52,558", + "created": 1610580352.558446, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 102.30302810668945, + "msecs": 558.445930480957, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1757.7130794525146, - "thread": 140379336402752, + "relativeCreated": 1786.94486618042, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69123,25 +69070,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:10,102", - "created": 1610361430.102577, + "asctime": "2021-01-14 00:25:52,558", + "created": 1610580352.558673, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 102.57697105407715, + "msecs": 558.6729049682617, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1757.9870223999023, - "thread": 140379336402752, + "relativeCreated": 1787.1718406677246, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69149,25 +69096,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:10,102", - "created": 1610361430.102822, + "asctime": "2021-01-14 00:25:52,558", + "created": 1610580352.558903, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 102.82206535339355, + "msecs": 558.9029788970947, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1758.2321166992188, - "thread": 140379336402752, + "relativeCreated": 1787.4019145965576, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69175,25 +69122,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:10,103", - "created": 1610361430.103118, + "asctime": "2021-01-14 00:25:52,559", + "created": 1610580352.559078, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 103.1179428100586, + "msecs": 559.0779781341553, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1758.5279941558838, - "thread": 140379336402752, + "relativeCreated": 1787.5769138336182, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69203,8 +69150,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:10,103", - "created": 1610361430.103362, + "asctime": "2021-01-14 00:25:52,559", + "created": 1610580352.559256, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69214,14 +69161,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 103.3620834350586, + "msecs": 559.2560768127441, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1758.7721347808838, - "thread": 140379336402752, + "relativeCreated": 1787.755012512207, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69231,8 +69178,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:10,103", - "created": 1610361430.103674, + "asctime": "2021-01-14 00:25:52,559", + "created": 1610580352.559465, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69242,14 +69189,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 103.67393493652344, + "msecs": 559.4649314880371, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1759.0839862823486, - "thread": 140379336402752, + "relativeCreated": 1787.9638671875, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69258,25 +69205,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:10,103", - "created": 1610361430.103855, + "asctime": "2021-01-14 00:25:52,559", + "created": 1610580352.55962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 103.85489463806152, + "msecs": 559.6199035644531, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1759.2649459838867, - "thread": 140379336402752, + "relativeCreated": 1788.118839263916, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69285,25 +69232,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:10,104", - "created": 1610361430.104017, + "asctime": "2021-01-14 00:25:52,559", + "created": 1610580352.559751, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 104.01701927185059, + "msecs": 559.751033782959, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1759.4270706176758, - "thread": 140379336402752, + "relativeCreated": 1788.2499694824219, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69312,75 +69259,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:10,104", - "created": 1610361430.104178, + "asctime": "2021-01-14 00:25:52,559", + "created": 1610580352.559878, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 104.17795181274414, + "msecs": 559.8781108856201, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1759.5880031585693, - "thread": 140379336402752, + "relativeCreated": 1788.377046585083, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:10,104", - "created": 1610361430.104347, + "asctime": "2021-01-14 00:25:52,560", + "created": 1610580352.560017, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 104.34699058532715, + "msecs": 560.0171089172363, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1759.7570419311523, - "thread": 140379336402752, + "relativeCreated": 1788.5160446166992, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:10,104", - "created": 1610361430.104785, + "asctime": "2021-01-14 00:25:52,560", + "created": 1610580352.560465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 104.78496551513672, + "msecs": 560.4650974273682, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.195016860962, - "thread": 140379336402752, + "relativeCreated": 1788.964033126831, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69389,25 +69336,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:10,104", - "created": 1610361430.104846, + "asctime": "2021-01-14 00:25:52,560", + "created": 1610580352.560654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 104.84600067138672, + "msecs": 560.6539249420166, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.256052017212, - "thread": 140379336402752, + "relativeCreated": 1789.1528606414795, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69415,25 +69362,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:10,104", - "created": 1610361430.104923, + "asctime": "2021-01-14 00:25:52,560", + "created": 1610580352.560894, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 104.92300987243652, + "msecs": 560.8940124511719, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.3330612182617, - "thread": 140379336402752, + "relativeCreated": 1789.3929481506348, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69441,25 +69388,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:10,104", - "created": 1610361430.104978, + "asctime": "2021-01-14 00:25:52,561", + "created": 1610580352.561067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 104.97808456420898, + "msecs": 561.0671043395996, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.3881359100342, - "thread": 140379336402752, + "relativeCreated": 1789.5660400390625, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69467,25 +69414,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105029, + "asctime": "2021-01-14 00:25:52,561", + "created": 1610580352.561263, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 105.02910614013672, + "msecs": 561.2630844116211, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.439157485962, - "thread": 140379336402752, + "relativeCreated": 1789.762020111084, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69493,25 +69440,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105078, + "asctime": "2021-01-14 00:25:52,561", + "created": 1610580352.561425, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 105.07798194885254, + "msecs": 561.424970626831, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.4880332946777, - "thread": 140379336402752, + "relativeCreated": 1789.923906326294, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69521,8 +69468,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105135, + "asctime": "2021-01-14 00:25:52,561", + "created": 1610580352.561641, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69532,14 +69479,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 105.13496398925781, + "msecs": 561.6409778594971, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.545015335083, - "thread": 140379336402752, + "relativeCreated": 1790.13991355896, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69549,8 +69496,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105191, + "asctime": "2021-01-14 00:25:52,561", + "created": 1610580352.561911, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69560,14 +69507,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 105.19099235534668, + "msecs": 561.9111061096191, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.6010437011719, - "thread": 140379336402752, + "relativeCreated": 1790.410041809082, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69577,8 +69524,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105246, + "asctime": "2021-01-14 00:25:52,562", + "created": 1610580352.562058, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69588,14 +69535,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 105.24606704711914, + "msecs": 562.0579719543457, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.6561183929443, - "thread": 140379336402752, + "relativeCreated": 1790.5569076538086, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69605,8 +69552,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105299, + "asctime": "2021-01-14 00:25:52,562", + "created": 1610580352.562197, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69616,39 +69563,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 105.29899597167969, + "msecs": 562.1969699859619, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.7090473175049, - "thread": 140379336402752, + "relativeCreated": 1790.6959056854248, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105347, + "asctime": "2021-01-14 00:25:52,562", + "created": 1610580352.562326, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 105.3469181060791, + "msecs": 562.3259544372559, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.7569694519043, - "thread": 140379336402752, + "relativeCreated": 1790.8248901367188, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69657,25 +69604,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.10541, + "asctime": "2021-01-14 00:25:52,562", + "created": 1610580352.5625, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 105.41009902954102, + "msecs": 562.5, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.8201503753662, - "thread": 140379336402752, + "relativeCreated": 1790.998935699463, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69683,25 +69630,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105467, + "asctime": "2021-01-14 00:25:52,562", + "created": 1610580352.56265, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 105.46708106994629, + "msecs": 562.6499652862549, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.8771324157715, - "thread": 140379336402752, + "relativeCreated": 1791.1489009857178, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69709,25 +69656,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105522, + "asctime": "2021-01-14 00:25:52,562", + "created": 1610580352.56279, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 105.52191734313965, + "msecs": 562.7899169921875, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.9319686889648, - "thread": 140379336402752, + "relativeCreated": 1791.2888526916504, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69737,8 +69684,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105576, + "asctime": "2021-01-14 00:25:52,562", + "created": 1610580352.562995, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69748,14 +69695,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 105.5760383605957, + "msecs": 562.9949569702148, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1760.986089706421, - "thread": 140379336402752, + "relativeCreated": 1791.4938926696777, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69765,8 +69712,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105665, + "asctime": "2021-01-14 00:25:52,563", + "created": 1610580352.563212, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69776,14 +69723,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 105.66496849060059, + "msecs": 563.2119178771973, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.0750198364258, - "thread": 140379336402752, + "relativeCreated": 1791.7108535766602, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69792,25 +69739,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105741, + "asctime": "2021-01-14 00:25:52,563", + "created": 1610580352.563423, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 105.74102401733398, + "msecs": 563.4229183197021, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.1510753631592, - "thread": 140379336402752, + "relativeCreated": 1791.921854019165, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69819,25 +69766,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105811, + "asctime": "2021-01-14 00:25:52,563", + "created": 1610580352.563614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 105.81111907958984, + "msecs": 563.6138916015625, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.221170425415, - "thread": 140379336402752, + "relativeCreated": 1792.1128273010254, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -69846,68 +69793,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105891, + "asctime": "2021-01-14 00:25:52,563", + "created": 1610580352.563811, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 105.89098930358887, + "msecs": 563.8110637664795, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.301040649414, - "thread": 140379336402752, + "relativeCreated": 1792.3099994659424, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:10,105", - "created": 1610361430.105962, + "asctime": "2021-01-14 00:25:52,564", + "created": 1610580352.564012, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 105.96203804016113, + "msecs": 564.0120506286621, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.3720893859863, - "thread": 140379336402752, + "relativeCreated": 1792.510986328125, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 106.03594779968262, + "msecs": 564.208984375, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.4459991455078, - "thread": 140379336402752, + "relativeCreated": 1792.707920074463, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 7.390975952148438e-05 + "time_consumption": 0.00019693374633789062 }, { "args": [], - "asctime": "2021-01-11 11:37:10,449", - "created": 1610361430.449888, + "asctime": "2021-01-14 00:25:52,909", + "created": 1610580352.909219, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -69922,8 +69869,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.106165, + "asctime": "2021-01-14 00:25:52,564", + "created": 1610580352.564564, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69933,22 +69880,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 106.16493225097656, + "msecs": 564.5639896392822, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.5749835968018, - "thread": 140379336402752, + "relativeCreated": 1793.0629253387451, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.106221, + "asctime": "2021-01-14 00:25:52,564", + "created": 1610580352.564711, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -69958,39 +69905,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 106.22096061706543, + "msecs": 564.7110939025879, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.6310119628906, - "thread": 140379336402752, + "relativeCreated": 1793.2100296020508, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.106276, + "asctime": "2021-01-14 00:25:52,564", + "created": 1610580352.564853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 106.27603530883789, + "msecs": 564.8529529571533, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.686086654663, - "thread": 140379336402752, + "relativeCreated": 1793.3518886566162, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -70001,33 +69948,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.106369, + "asctime": "2021-01-14 00:25:52,565", + "created": 1610580352.565089, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 106.3690185546875, + "msecs": 565.0889873504639, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.7790699005127, - "thread": 140379336402752, + "relativeCreated": 1793.5879230499268, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.10655, + "asctime": "2021-01-14 00:25:52,565", + "created": 1610580352.565527, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70037,22 +69984,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 106.54997825622559, + "msecs": 565.5269622802734, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1761.9600296020508, - "thread": 140379336402752, + "relativeCreated": 1794.0258979797363, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.106601, + "asctime": "2021-01-14 00:25:52,565", + "created": 1610580352.565675, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70062,39 +70009,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 106.60099983215332, + "msecs": 565.6750202178955, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1762.0110511779785, - "thread": 140379336402752, + "relativeCreated": 1794.1739559173584, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:10,106", - "created": 1610361430.106648, + "asctime": "2021-01-14 00:25:52,565", + "created": 1610580352.565806, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 106.64796829223633, + "msecs": 565.8059120178223, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1762.0580196380615, - "thread": 140379336402752, + "relativeCreated": 1794.3048477172852, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -70102,8 +70049,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,107", - "created": 1610361430.107716, + "asctime": "2021-01-14 00:25:52,571", + "created": 1610580352.571886, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70113,14 +70060,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 107.71608352661133, + "msecs": 571.8860626220703, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.1261348724365, - "thread": 140379281274624, + "relativeCreated": 1800.3849983215332, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70128,8 +70075,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,107", - "created": 1610361430.10787, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572019, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70139,14 +70086,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 107.87010192871094, + "msecs": 572.019100189209, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.2801532745361, - "thread": 140379281274624, + "relativeCreated": 1800.5180358886719, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70154,8 +70101,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,107", - "created": 1610361430.107934, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572073, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70165,14 +70112,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 107.93399810791016, + "msecs": 572.0729827880859, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.3440494537354, - "thread": 140379281274624, + "relativeCreated": 1800.5719184875488, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70181,8 +70128,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,107", - "created": 1610361430.107989, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572125, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70192,14 +70139,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 107.98907279968262, + "msecs": 572.1249580383301, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.3991241455078, - "thread": 140379281274624, + "relativeCreated": 1800.623893737793, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70207,8 +70154,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108054, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572188, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70218,14 +70165,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 108.05392265319824, + "msecs": 572.1879005432129, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.4639739990234, - "thread": 140379281274624, + "relativeCreated": 1800.6868362426758, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70234,8 +70181,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108109, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572241, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70245,14 +70192,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 108.1089973449707, + "msecs": 572.2410678863525, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.519048690796, - "thread": 140379281274624, + "relativeCreated": 1800.7400035858154, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70260,8 +70207,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108181, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572311, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70271,14 +70218,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 108.18099975585938, + "msecs": 572.3109245300293, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.5910511016846, - "thread": 140379281274624, + "relativeCreated": 1800.8098602294922, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70287,8 +70234,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108229, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70298,14 +70245,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 108.22892189025879, + "msecs": 572.3590850830078, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.638973236084, - "thread": 140379281274624, + "relativeCreated": 1800.8580207824707, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70313,8 +70260,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108288, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572427, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70324,14 +70271,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 108.28804969787598, + "msecs": 572.4270343780518, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.6981010437012, - "thread": 140379281274624, + "relativeCreated": 1800.9259700775146, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70340,8 +70287,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108335, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572475, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70351,14 +70298,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 108.33501815795898, + "msecs": 572.4749565124512, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.7450695037842, - "thread": 140379281274624, + "relativeCreated": 1800.973892211914, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70366,8 +70313,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108406, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572548, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70377,14 +70324,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 108.40606689453125, + "msecs": 572.5479125976562, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.8161182403564, - "thread": 140379281274624, + "relativeCreated": 1801.0468482971191, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70393,8 +70340,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108452, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572595, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70404,14 +70351,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 108.45208168029785, + "msecs": 572.5948810577393, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.862133026123, - "thread": 140379281274624, + "relativeCreated": 1801.0938167572021, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70419,8 +70366,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108524, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572667, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70430,14 +70377,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 108.52408409118652, + "msecs": 572.6668834686279, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.9341354370117, - "thread": 140379281274624, + "relativeCreated": 1801.1658191680908, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70445,8 +70392,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108581, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572725, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70456,14 +70403,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 108.5810661315918, + "msecs": 572.7250576019287, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1763.991117477417, - "thread": 140379281274624, + "relativeCreated": 1801.2239933013916, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70471,8 +70418,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108639, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.572783, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70482,14 +70429,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 108.63900184631348, + "msecs": 572.7829933166504, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1764.0490531921387, - "thread": 140379281274624, + "relativeCreated": 1801.2819290161133, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70498,8 +70445,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108679, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.57283, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70509,14 +70456,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 108.67905616760254, + "msecs": 572.8299617767334, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1764.0891075134277, - "thread": 140379281274624, + "relativeCreated": 1801.3288974761963, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70524,8 +70471,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108772, + "asctime": "2021-01-14 00:25:52,572", + "created": 1610580352.57293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70535,14 +70482,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 108.77203941345215, + "msecs": 572.930097579956, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1764.1820907592773, - "thread": 140379281274624, + "relativeCreated": 1801.429033279419, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70553,25 +70500,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108878, + "asctime": "2021-01-14 00:25:52,573", + "created": 1610580352.573045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 108.87789726257324, + "msecs": 573.045015335083, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1764.2879486083984, - "thread": 140379281274624, + "relativeCreated": 1801.543951034546, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70579,25 +70526,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:10,108", - "created": 1610361430.108938, + "asctime": "2021-01-14 00:25:52,573", + "created": 1610580352.573133, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 108.93797874450684, + "msecs": 573.1329917907715, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1764.348030090332, - "thread": 140379281274624, + "relativeCreated": 1801.6319274902344, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70608,25 +70555,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,109", - "created": 1610361430.109009, + "asctime": "2021-01-14 00:25:52,573", + "created": 1610580352.573223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 109.0090274810791, + "msecs": 573.2231140136719, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1764.4190788269043, - "thread": 140379281274624, + "relativeCreated": 1801.7220497131348, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -70634,8 +70581,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.11023, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574129, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70645,14 +70592,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 110.2299690246582, + "msecs": 574.1291046142578, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1765.6400203704834, - "thread": 140379272881920, + "relativeCreated": 1802.6280403137207, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70660,8 +70607,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110377, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574257, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70671,14 +70618,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 110.37707328796387, + "msecs": 574.2568969726562, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1765.787124633789, - "thread": 140379272881920, + "relativeCreated": 1802.7558326721191, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70686,8 +70633,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110442, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574312, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70697,14 +70644,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 110.44192314147949, + "msecs": 574.3119716644287, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1765.8519744873047, - "thread": 140379272881920, + "relativeCreated": 1802.8109073638916, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70713,8 +70660,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110503, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574374, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70724,14 +70671,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 110.50295829772949, + "msecs": 574.3739604949951, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1765.9130096435547, - "thread": 140379272881920, + "relativeCreated": 1802.872896194458, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70739,8 +70686,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110582, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574454, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70750,14 +70697,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 110.58211326599121, + "msecs": 574.4540691375732, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1765.9921646118164, - "thread": 140379272881920, + "relativeCreated": 1802.9530048370361, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70766,8 +70713,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110643, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574518, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70777,14 +70724,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 110.64291000366211, + "msecs": 574.5179653167725, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.0529613494873, - "thread": 140379272881920, + "relativeCreated": 1803.0169010162354, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70792,8 +70739,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110727, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574606, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70803,14 +70750,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 110.72707176208496, + "msecs": 574.6059417724609, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.1371231079102, - "thread": 140379272881920, + "relativeCreated": 1803.1048774719238, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70819,8 +70766,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110786, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574667, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70830,14 +70777,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 110.78596115112305, + "msecs": 574.6669769287109, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.1960124969482, - "thread": 140379272881920, + "relativeCreated": 1803.1659126281738, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70845,8 +70792,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110861, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574743, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70856,14 +70803,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 110.86106300354004, + "msecs": 574.7430324554443, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.2711143493652, - "thread": 140379272881920, + "relativeCreated": 1803.2419681549072, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70872,8 +70819,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,110", - "created": 1610361430.110924, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574809, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70883,14 +70830,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 110.92400550842285, + "msecs": 574.8090744018555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.334056854248, - "thread": 140379272881920, + "relativeCreated": 1803.3080101013184, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70898,8 +70845,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.11101, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574892, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70909,14 +70856,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 111.01007461547852, + "msecs": 574.8920440673828, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.4201259613037, - "thread": 140379272881920, + "relativeCreated": 1803.3909797668457, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70925,8 +70872,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.111069, + "asctime": "2021-01-14 00:25:52,574", + "created": 1610580352.574952, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -70936,14 +70883,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 111.0689640045166, + "msecs": 574.9518871307373, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.4790153503418, - "thread": 140379272881920, + "relativeCreated": 1803.4508228302002, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70951,8 +70898,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.111177, + "asctime": "2021-01-14 00:25:52,575", + "created": 1610580352.575047, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70962,14 +70909,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 111.17696762084961, + "msecs": 575.0470161437988, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.5870189666748, - "thread": 140379272881920, + "relativeCreated": 1803.5459518432617, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -70977,8 +70924,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.111236, + "asctime": "2021-01-14 00:25:52,575", + "created": 1610580352.57512, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70988,14 +70935,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 111.2360954284668, + "msecs": 575.1199722290039, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.646146774292, - "thread": 140379272881920, + "relativeCreated": 1803.6189079284668, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -71003,8 +70950,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.11129, + "asctime": "2021-01-14 00:25:52,575", + "created": 1610580352.575188, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71014,14 +70961,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 111.28997802734375, + "msecs": 575.1879215240479, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.700029373169, - "thread": 140379272881920, + "relativeCreated": 1803.6868572235107, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -71030,8 +70977,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.111339, + "asctime": "2021-01-14 00:25:52,575", + "created": 1610580352.575249, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71041,14 +70988,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 111.33909225463867, + "msecs": 575.2489566802979, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.7491436004639, - "thread": 140379272881920, + "relativeCreated": 1803.7478923797607, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -71056,8 +71003,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.111445, + "asctime": "2021-01-14 00:25:52,575", + "created": 1610580352.575381, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71067,14 +71014,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 111.44495010375977, + "msecs": 575.3810405731201, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.855001449585, - "thread": 140379272881920, + "relativeCreated": 1803.879976272583, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -71085,25 +71032,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.111554, + "asctime": "2021-01-14 00:25:52,575", + "created": 1610580352.57548, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 111.55390739440918, + "msecs": 575.4799842834473, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1766.9639587402344, - "thread": 140379272881920, + "relativeCreated": 1803.9789199829102, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -71111,43 +71058,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:10,111", - "created": 1610361430.11162, + "asctime": "2021-01-14 00:25:52,575", + "created": 1610580352.575541, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 111.61994934082031, + "msecs": 575.5410194396973, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 1767.0300006866455, - "thread": 140379272881920, + "relativeCreated": 1804.0399551391602, + "thread": 140019641673472, "threadName": "Thread-6" } ], - "msecs": 449.8879909515381, + "msecs": 909.2190265655518, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2105.2980422973633, - "thread": 140379336402752, + "relativeCreated": 2137.7179622650146, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3382680416107178 + "time_consumption": 0.3336780071258545 }, { "args": [], - "asctime": "2021-01-11 11:37:10,450", - "created": 1610361430.450445, + "asctime": "2021-01-14 00:25:52,909", + "created": 1610580352.909815, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -71158,21 +71105,21 @@ "message": "No secret set", "module": "test_communication", "moduleLogger": [], - "msecs": 450.44493675231934, + "msecs": 909.8150730133057, "msg": "No secret set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2105.8549880981445, - "thread": 140379336402752, + "relativeCreated": 2138.3140087127686, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:10,450", - "created": 1610361430.450738, + "asctime": "2021-01-14 00:25:52,910", + "created": 1610580352.910111, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -71183,14 +71130,14 @@ "message": "Performing Authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 450.73795318603516, + "msecs": 910.1109504699707, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2106.1480045318604, - "thread": 140379336402752, + "relativeCreated": 2138.6098861694336, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -71199,8 +71146,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,451", - "created": 1610361430.451368, + "asctime": "2021-01-14 00:25:52,910", + "created": 1610580352.910752, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71217,8 +71164,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,451", - "created": 1610361430.451015, + "asctime": "2021-01-14 00:25:52,910", + "created": 1610580352.910391, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71228,14 +71175,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 451.0149955749512, + "msecs": 910.391092300415, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2106.4250469207764, - "thread": 140379336402752, + "relativeCreated": 2138.890027999878, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -71244,8 +71191,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,451", - "created": 1610361430.451197, + "asctime": "2021-01-14 00:25:52,910", + "created": 1610580352.910575, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71255,35 +71202,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 451.19690895080566, + "msecs": 910.5749130249023, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2106.606960296631, - "thread": 140379336402752, + "relativeCreated": 2139.0738487243652, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 451.3680934906006, + "msecs": 910.7520580291748, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2106.778144836426, - "thread": 140379336402752, + "relativeCreated": 2139.2509937286377, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017118453979492188 + "time_consumption": 0.00017714500427246094 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:10,451", - "created": 1610361430.451961, + "asctime": "2021-01-14 00:25:52,911", + "created": 1610580352.91134, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71300,8 +71247,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,451", - "created": 1610361430.451633, + "asctime": "2021-01-14 00:25:52,911", + "created": 1610580352.911021, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71311,14 +71258,14 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 451.6329765319824, + "msecs": 911.0209941864014, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2107.0430278778076, - "thread": 140379336402752, + "relativeCreated": 2139.5199298858643, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -71327,8 +71274,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,451", - "created": 1610361430.451794, + "asctime": "2021-01-14 00:25:52,911", + "created": 1610580352.911181, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71338,35 +71285,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 451.793909072876, + "msecs": 911.1809730529785, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2107.203960418701, - "thread": 140379336402752, + "relativeCreated": 2139.6799087524414, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 451.9610404968262, + "msecs": 911.3399982452393, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2107.3710918426514, - "thread": 140379336402752, + "relativeCreated": 2139.838933944702, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001671314239501953 + "time_consumption": 0.0001590251922607422 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:10,452", - "created": 1610361430.452645, + "asctime": "2021-01-14 00:25:52,911", + "created": 1610580352.911913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71383,8 +71330,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,452", - "created": 1610361430.45227, + "asctime": "2021-01-14 00:25:52,911", + "created": 1610580352.911608, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71394,14 +71341,14 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 452.2700309753418, + "msecs": 911.6079807281494, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2107.680082321167, - "thread": 140379336402752, + "relativeCreated": 2140.1069164276123, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -71410,8 +71357,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,452", - "created": 1610361430.452458, + "asctime": "2021-01-14 00:25:52,911", + "created": 1610580352.91176, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71421,32 +71368,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 452.4579048156738, + "msecs": 911.7600917816162, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2107.867956161499, - "thread": 140379336402752, + "relativeCreated": 2140.259027481079, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 452.64506340026855, + "msecs": 911.9129180908203, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2108.0551147460938, - "thread": 140379336402752, + "relativeCreated": 2140.411853790283, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018715858459472656 + "time_consumption": 0.00015282630920410156 }, { "args": [], - "asctime": "2021-01-11 11:37:10,452", - "created": 1610361430.452971, + "asctime": "2021-01-14 00:25:52,912", + "created": 1610580352.912144, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -71457,14 +71404,14 @@ "message": "Different secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 452.9709815979004, + "msecs": 912.1439456939697, "msg": "Different secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2108.3810329437256, - "thread": 140379336402752, + "relativeCreated": 2140.6428813934326, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -71473,8 +71420,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,453", - "created": 1610361430.453666, + "asctime": "2021-01-14 00:25:52,912", + "created": 1610580352.912693, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71491,8 +71438,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,453", - "created": 1610361430.453334, + "asctime": "2021-01-14 00:25:52,912", + "created": 1610580352.912386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71502,14 +71449,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 453.33409309387207, + "msecs": 912.3859405517578, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2108.7441444396973, - "thread": 140379336402752, + "relativeCreated": 2140.8848762512207, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -71518,8 +71465,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,453", - "created": 1610361430.453501, + "asctime": "2021-01-14 00:25:52,912", + "created": 1610580352.912539, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71529,35 +71476,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 453.50098609924316, + "msecs": 912.539005279541, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2108.9110374450684, - "thread": 140379336402752, + "relativeCreated": 2141.037940979004, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 453.66597175598145, + "msecs": 912.6930236816406, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2109.0760231018066, - "thread": 140379336402752, + "relativeCreated": 2141.1919593811035, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00016498565673828125 + "time_consumption": 0.00015401840209960938 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:10,454", - "created": 1610361430.454226, + "asctime": "2021-01-14 00:25:52,913", + "created": 1610580352.913288, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71574,8 +71521,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,453", - "created": 1610361430.453919, + "asctime": "2021-01-14 00:25:52,912", + "created": 1610580352.91295, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71585,14 +71532,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 453.9189338684082, + "msecs": 912.9500389099121, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2109.3289852142334, - "thread": 140379336402752, + "relativeCreated": 2141.448974609375, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -71601,8 +71548,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,454", - "created": 1610361430.454072, + "asctime": "2021-01-14 00:25:52,913", + "created": 1610580352.913101, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -71612,32 +71559,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 454.0719985961914, + "msecs": 913.1009578704834, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2109.4820499420166, - "thread": 140379336402752, + "relativeCreated": 2141.5998935699463, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 454.226016998291, + "msecs": 913.2881164550781, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2109.636068344116, - "thread": 140379336402752, + "relativeCreated": 2141.787052154541, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.00018715858459472656 }, { "args": [], - "asctime": "2021-01-11 11:37:10,555", - "created": 1610361430.555293, + "asctime": "2021-01-14 00:25:53,115", + "created": 1610580353.115216, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -71656,25 +71603,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,454", - "created": 1610361430.454575, + "asctime": "2021-01-14 00:25:52,913", + "created": 1610580352.913661, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 454.5750617980957, + "msecs": 913.661003112793, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2109.985113143921, - "thread": 140379336402752, + "relativeCreated": 2142.159938812256, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -71682,8 +71629,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,474", - "created": 1610361430.474224, + "asctime": "2021-01-14 00:25:52,938", + "created": 1610580352.938684, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -71693,14 +71640,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 474.2240905761719, + "msecs": 938.6839866638184, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2129.634141921997, - "thread": 140379281274624, + "relativeCreated": 2167.1829223632812, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71708,8 +71655,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,474", - "created": 1610361430.474616, + "asctime": "2021-01-14 00:25:52,939", + "created": 1610580352.939219, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -71719,14 +71666,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 474.61605072021484, + "msecs": 939.2189979553223, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2130.02610206604, - "thread": 140379281274624, + "relativeCreated": 2167.717933654785, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71734,8 +71681,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,474", - "created": 1610361430.474772, + "asctime": "2021-01-14 00:25:52,939", + "created": 1610580352.939452, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71745,14 +71692,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 474.77197647094727, + "msecs": 939.4519329071045, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2130.1820278167725, - "thread": 140379281274624, + "relativeCreated": 2167.9508686065674, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71761,8 +71708,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,474", - "created": 1610361430.474902, + "asctime": "2021-01-14 00:25:52,939", + "created": 1610580352.93963, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71772,14 +71719,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 474.9019145965576, + "msecs": 939.6300315856934, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2130.311965942383, - "thread": 140379281274624, + "relativeCreated": 2168.1289672851562, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71787,8 +71734,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,475", - "created": 1610361430.475056, + "asctime": "2021-01-14 00:25:52,939", + "created": 1610580352.939842, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71798,14 +71745,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 475.0559329986572, + "msecs": 939.8419857025146, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2130.4659843444824, - "thread": 140379281274624, + "relativeCreated": 2168.3409214019775, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71814,8 +71761,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,475", - "created": 1610361430.475174, + "asctime": "2021-01-14 00:25:52,940", + "created": 1610580352.940005, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71825,14 +71772,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 475.1739501953125, + "msecs": 940.0050640106201, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2130.5840015411377, - "thread": 140379281274624, + "relativeCreated": 2168.503999710083, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71840,8 +71787,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,475", - "created": 1610361430.475345, + "asctime": "2021-01-14 00:25:52,940", + "created": 1610580352.940236, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71851,14 +71798,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 475.3448963165283, + "msecs": 940.2360916137695, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2130.7549476623535, - "thread": 140379281274624, + "relativeCreated": 2168.7350273132324, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71867,8 +71814,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,475", - "created": 1610361430.475458, + "asctime": "2021-01-14 00:25:52,940", + "created": 1610580352.940417, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71878,14 +71825,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 475.45790672302246, + "msecs": 940.4170513153076, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2130.8679580688477, - "thread": 140379281274624, + "relativeCreated": 2168.9159870147705, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71893,8 +71840,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,475", - "created": 1610361430.475617, + "asctime": "2021-01-14 00:25:52,940", + "created": 1610580352.940611, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71904,14 +71851,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 475.6169319152832, + "msecs": 940.6108856201172, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2131.0269832611084, - "thread": 140379281274624, + "relativeCreated": 2169.10982131958, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71920,8 +71867,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,475", - "created": 1610361430.475809, + "asctime": "2021-01-14 00:25:52,940", + "created": 1610580352.94082, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71931,14 +71878,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 475.80909729003906, + "msecs": 940.8199787139893, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2131.2191486358643, - "thread": 140379281274624, + "relativeCreated": 2169.318914413452, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71946,8 +71893,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,475", - "created": 1610361430.475991, + "asctime": "2021-01-14 00:25:52,941", + "created": 1610580352.941089, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71957,14 +71904,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 475.99101066589355, + "msecs": 941.0889148712158, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2131.4010620117188, - "thread": 140379281274624, + "relativeCreated": 2169.5878505706787, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71973,8 +71920,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,476", - "created": 1610361430.476105, + "asctime": "2021-01-14 00:25:52,941", + "created": 1610580352.941369, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -71984,14 +71931,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 476.1049747467041, + "msecs": 941.3690567016602, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2131.5150260925293, - "thread": 140379281274624, + "relativeCreated": 2169.867992401123, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -71999,8 +71946,8 @@ "comm-client:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:10,476", - "created": 1610361430.476278, + "asctime": "2021-01-14 00:25:52,941", + "created": 1610580352.941611, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72010,14 +71957,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 476.27806663513184, + "msecs": 941.6110515594482, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2131.688117980957, - "thread": 140379281274624, + "relativeCreated": 2170.109987258911, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72025,8 +71972,8 @@ "comm-server:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:10,476", - "created": 1610361430.476414, + "asctime": "2021-01-14 00:25:52,941", + "created": 1610580352.941814, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72036,14 +71983,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 476.4139652252197, + "msecs": 941.8139457702637, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2131.824016571045, - "thread": 140379281274624, + "relativeCreated": 2170.3128814697266, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72051,8 +71998,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,476", - "created": 1610361430.476542, + "asctime": "2021-01-14 00:25:52,941", + "created": 1610580352.941991, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72062,14 +72009,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 476.54199600219727, + "msecs": 941.9910907745361, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2131.9520473480225, - "thread": 140379281274624, + "relativeCreated": 2170.490026473999, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72078,8 +72025,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,476", - "created": 1610361430.476653, + "asctime": "2021-01-14 00:25:52,942", + "created": 1610580352.942148, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72089,14 +72036,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 476.6530990600586, + "msecs": 942.147970199585, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2132.063150405884, - "thread": 140379281274624, + "relativeCreated": 2170.646905899048, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72104,8 +72051,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" ], - "asctime": "2021-01-11 11:37:10,476", - "created": 1610361430.476979, + "asctime": "2021-01-14 00:25:52,942", + "created": 1610580352.942472, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72115,14 +72062,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", "module": "stp", - "msecs": 476.97901725769043, + "msecs": 942.471981048584, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2132.3890686035156, - "thread": 140379281274624, + "relativeCreated": 2170.970916748047, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72133,25 +72080,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,477", - "created": 1610361430.477371, + "asctime": "2021-01-14 00:25:52,942", + "created": 1610580352.942908, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 477.3709774017334, + "msecs": 942.9080486297607, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2132.7810287475586, - "thread": 140379281274624, + "relativeCreated": 2171.4069843292236, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72159,25 +72106,25 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:10,477", - "created": 1610361430.477565, + "asctime": "2021-01-14 00:25:52,943", + "created": 1610580352.943139, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 477.56505012512207, + "msecs": 943.1390762329102, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2132.9751014709473, - "thread": 140379281274624, + "relativeCreated": 2171.638011932373, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72186,36 +72133,36 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'2f0399826cda4f59ed5d5f637956a2361c3bf54060db179ae2e5099c5eb8a3ed'" + "'a7297103014445de4fed37f28d74079232166883ca7da2b50d2d5bac6c494eee'" ], - "asctime": "2021-01-11 11:37:10,477", - "created": 1610361430.477895, + "asctime": "2021-01-14 00:25:52,943", + "created": 1610580352.943435, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'2f0399826cda4f59ed5d5f637956a2361c3bf54060db179ae2e5099c5eb8a3ed'\"", + "lineno": 457, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'a7297103014445de4fed37f28d74079232166883ca7da2b50d2d5bac6c494eee'\"", "module": "__init__", - "msecs": 477.89502143859863, + "msecs": 943.4349536895752, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2133.305072784424, - "thread": 140379281274624, + "relativeCreated": 2171.933889389038, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 30 33 39 39 38 32 36 63 64 61 34 66 35 39 65 64 35" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 37 32 39 37 31 30 33 30 31 34 34 34 35 64 65 34 66 65" ], - "asctime": "2021-01-11 11:37:10,513", - "created": 1610361430.513219, + "asctime": "2021-01-14 00:25:52,976", + "created": 1610580352.976982, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72223,25 +72170,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 30 33 39 39 38 32 36 63 64 61 34 66 35 39 65 64 35", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 37 32 39 37 31 30 33 30 31 34 34 34 35 64 65 34 66 65", "module": "__init__", - "msecs": 513.2191181182861, + "msecs": 976.9821166992188, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2168.6291694641113, - "thread": 140379272881920, + "relativeCreated": 2205.4810523986816, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 30 33 39 39 38 32 36 63 64 61 34 66 35 39 65 64 35" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 37 32 39 37 31 30 33 30 31 34 34 34 35 64 65 34 66 65" ], - "asctime": "2021-01-11 11:37:10,513", - "created": 1610361430.513723, + "asctime": "2021-01-14 00:25:52,977", + "created": 1610580352.977556, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72249,16 +72196,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 30 33 39 39 38 32 36 63 64 61 34 66 35 39 65 64 35", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 37 32 39 37 31 30 33 30 31 34 34 34 35 64 65 34 66 65", "module": "__init__", - "msecs": 513.7228965759277, + "msecs": 977.5559902191162, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2169.132947921753, - "thread": 140379272881920, + "relativeCreated": 2206.054925918579, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72266,8 +72213,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,513", - "created": 1610361430.513928, + "asctime": "2021-01-14 00:25:52,977", + "created": 1610580352.97777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72277,14 +72224,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 513.9279365539551, + "msecs": 977.7700901031494, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2169.3379878997803, - "thread": 140379272881920, + "relativeCreated": 2206.2690258026123, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72293,8 +72240,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,514", - "created": 1610361430.514126, + "asctime": "2021-01-14 00:25:52,977", + "created": 1610580352.977953, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72304,14 +72251,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 514.1260623931885, + "msecs": 977.9529571533203, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2169.5361137390137, - "thread": 140379272881920, + "relativeCreated": 2206.451892852783, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72319,8 +72266,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,514", - "created": 1610361430.514338, + "asctime": "2021-01-14 00:25:52,978", + "created": 1610580352.978169, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72330,14 +72277,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 514.3380165100098, + "msecs": 978.1689643859863, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2169.748067855835, - "thread": 140379272881920, + "relativeCreated": 2206.667900085449, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72346,8 +72293,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,514", - "created": 1610361430.514502, + "asctime": "2021-01-14 00:25:52,978", + "created": 1610580352.978362, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72357,14 +72304,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 514.5020484924316, + "msecs": 978.3620834350586, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2169.912099838257, - "thread": 140379272881920, + "relativeCreated": 2206.8610191345215, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72372,8 +72319,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,515", - "created": 1610361430.515316, + "asctime": "2021-01-14 00:25:52,979", + "created": 1610580352.979192, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72383,14 +72330,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 515.3160095214844, + "msecs": 979.1920185089111, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2170.7260608673096, - "thread": 140379272881920, + "relativeCreated": 2207.690954208374, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72399,8 +72346,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,515", - "created": 1610361430.51553, + "asctime": "2021-01-14 00:25:52,979", + "created": 1610580352.979387, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72410,14 +72357,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 515.5301094055176, + "msecs": 979.3870449066162, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2170.940160751343, - "thread": 140379272881920, + "relativeCreated": 2207.885980606079, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72425,8 +72372,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,515", - "created": 1610361430.515744, + "asctime": "2021-01-14 00:25:52,979", + "created": 1610580352.979624, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72436,14 +72383,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 515.7439708709717, + "msecs": 979.6240329742432, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2171.154022216797, - "thread": 140379272881920, + "relativeCreated": 2208.122968673706, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72452,8 +72399,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,515", - "created": 1610361430.515904, + "asctime": "2021-01-14 00:25:52,979", + "created": 1610580352.979819, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72463,23 +72410,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 515.9039497375488, + "msecs": 979.8190593719482, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2171.314001083374, - "thread": 140379272881920, + "relativeCreated": 2208.317995071411, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(64): 64 35 66 36 33 37 39 35 36 61 32 33 36 31 63 33 62 66 35 34 30 36 30 64 62 31 37 39 61 65 32 65 35 30 39 39 63 35 65 62 38 61 33 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 61 e4" + "(64): 64 33 37 66 32 38 64 37 34 30 37 39 32 33 32 31 36 36 38 38 33 63 61 37 64 61 32 62 35 30 64 32 64 35 62 61 63 36 63 34 39 34 65 65 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 4c 2a" ], - "asctime": "2021-01-11 11:37:10,516", - "created": 1610361430.516369, + "asctime": "2021-01-14 00:25:52,980", + "created": 1610580352.980322, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72487,25 +72434,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 64 35 66 36 33 37 39 35 36 61 32 33 36 31 63 33 62 66 35 34 30 36 30 64 62 31 37 39 61 65 32 65 35 30 39 39 63 35 65 62 38 61 33 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 61 e4", + "message": "comm-server: TX -> (64): 64 33 37 66 32 38 64 37 34 30 37 39 32 33 32 31 36 36 38 38 33 63 61 37 64 61 32 62 35 30 64 32 64 35 62 61 63 36 63 34 39 34 65 65 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 4c 2a", "module": "__init__", - "msecs": 516.369104385376, + "msecs": 980.3218841552734, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2171.779155731201, - "thread": 140379272881920, + "relativeCreated": 2208.8208198547363, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 64 35 66 36 33 37 39 35 36 61 32 33 36 31 63 33 62 66 35 34 30 36 30 64 62 31 37 39 61 65 32 65 35 30 39 39 63 35 65 62 38 61 33 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 61 e4" + "(64): 64 33 37 66 32 38 64 37 34 30 37 39 32 33 32 31 36 36 38 38 33 63 61 37 64 61 32 62 35 30 64 32 64 35 62 61 63 36 63 34 39 34 65 65 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 4c 2a" ], - "asctime": "2021-01-11 11:37:10,516", - "created": 1610361430.516718, + "asctime": "2021-01-14 00:25:52,980", + "created": 1610580352.980695, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72513,16 +72460,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 64 35 66 36 33 37 39 35 36 61 32 33 36 31 63 33 62 66 35 34 30 36 30 64 62 31 37 39 61 65 32 65 35 30 39 39 63 35 65 62 38 61 33 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 61 e4", + "message": "comm-client: RX <- (64): 64 33 37 66 32 38 64 37 34 30 37 39 32 33 32 31 36 36 38 38 33 63 61 37 64 61 32 62 35 30 64 32 64 35 62 61 63 36 63 34 39 34 65 65 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 4c 2a", "module": "__init__", - "msecs": 516.7179107666016, + "msecs": 980.6950092315674, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2172.1279621124268, - "thread": 140379272881920, + "relativeCreated": 2209.1939449310303, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72530,8 +72477,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,517", - "created": 1610361430.517138, + "asctime": "2021-01-14 00:25:52,981", + "created": 1610580352.981212, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72541,14 +72488,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 517.1380043029785, + "msecs": 981.2119007110596, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2172.5480556488037, - "thread": 140379272881920, + "relativeCreated": 2209.7108364105225, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72557,8 +72504,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,517", - "created": 1610361430.517302, + "asctime": "2021-01-14 00:25:52,981", + "created": 1610580352.981434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72568,23 +72515,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 517.3020362854004, + "msecs": 981.4341068267822, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2172.7120876312256, - "thread": 140379272881920, + "relativeCreated": 2209.933042526245, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(4): cb 82 3a 3e" + "(4): 29 94 3a 3e" ], - "asctime": "2021-01-11 11:37:10,517", - "created": 1610361430.517538, + "asctime": "2021-01-14 00:25:52,981", + "created": 1610580352.981762, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72592,25 +72539,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): cb 82 3a 3e", + "message": "comm-server: TX -> (4): 29 94 3a 3e", "module": "__init__", - "msecs": 517.5380706787109, + "msecs": 981.7619323730469, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2172.948122024536, - "thread": 140379272881920, + "relativeCreated": 2210.2608680725098, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(4): cb 82 3a 3e" + "(4): 29 94 3a 3e" ], - "asctime": "2021-01-11 11:37:10,517", - "created": 1610361430.517722, + "asctime": "2021-01-14 00:25:52,982", + "created": 1610580352.982085, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72618,16 +72565,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): cb 82 3a 3e", + "message": "comm-client: RX <- (4): 29 94 3a 3e", "module": "__init__", - "msecs": 517.7218914031982, + "msecs": 982.0849895477295, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2173.1319427490234, - "thread": 140379272881920, + "relativeCreated": 2210.5839252471924, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72635,8 +72582,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,517", - "created": 1610361430.517902, + "asctime": "2021-01-14 00:25:52,982", + "created": 1610580352.982369, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72646,14 +72593,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 517.9018974304199, + "msecs": 982.3689460754395, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2173.311948776245, - "thread": 140379272881920, + "relativeCreated": 2210.8678817749023, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72662,8 +72609,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,518", - "created": 1610361430.518055, + "asctime": "2021-01-14 00:25:52,982", + "created": 1610580352.982619, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72673,23 +72620,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 518.0549621582031, + "msecs": 982.619047164917, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2173.4650135040283, - "thread": 140379272881920, + "relativeCreated": 2211.11798286438, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "STP:", - "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 32 66 30 33 39 39 38 32 36 63 64 61 34 66 35 39 65 64 35 64 35 66 36 33 37 39 35 36 61 32 33 36 31 63 33 62 66 35 34 30 36 30 64 62 31 37 39 61 65 32 65 35 30 39 39 63 35 65 62 38 61 33 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 61 e4 cb 82" + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 61 37 32 39 37 31 30 33 30 31 34 34 34 35 64 65 34 66 65 64 33 37 66 32 38 64 37 34 30 37 39 32 33 32 31 36 36 38 38 33 63 61 37 64 61 32 62 35 30 64 32 64 35 62 61 63 36 63 34 39 34 65 65 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 4c 2a 29 94" ], - "asctime": "2021-01-11 11:37:10,518", - "created": 1610361430.518535, + "asctime": "2021-01-14 00:25:52,983", + "created": 1610580352.983334, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72697,16 +72644,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 32 66 30 33 39 39 38 32 36 63 64 61 34 66 35 39 65 64 35 64 35 66 36 33 37 39 35 36 61 32 33 36 31 63 33 62 66 35 34 30 36 30 64 62 31 37 39 61 65 32 65 35 30 39 39 63 35 65 62 38 61 33 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 61 e4 cb 82", + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 61 37 32 39 37 31 30 33 30 31 34 34 34 35 64 65 34 66 65 64 33 37 66 32 38 64 37 34 30 37 39 32 33 32 31 36 36 38 38 33 63 61 37 64 61 32 62 35 30 64 32 64 35 62 61 63 36 63 34 39 34 65 65 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 4c 2a 29 94", "module": "stp", - "msecs": 518.5348987579346, + "msecs": 983.3340644836426, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2173.9449501037598, - "thread": 140379272881920, + "relativeCreated": 2211.8330001831055, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72715,27 +72662,27 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "u'2f0399826cda4f59ed5d5f637956a2361c3bf54060db179ae2e5099c5eb8a3ed'" + "u'a7297103014445de4fed37f28d74079232166883ca7da2b50d2d5bac6c494eee'" ], - "asctime": "2021-01-11 11:37:10,518", - "created": 1610361430.518949, + "asctime": "2021-01-14 00:25:52,983", + "created": 1610580352.983907, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'2f0399826cda4f59ed5d5f637956a2361c3bf54060db179ae2e5099c5eb8a3ed'\"", + "lineno": 457, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'a7297103014445de4fed37f28d74079232166883ca7da2b50d2d5bac6c494eee'\"", "module": "__init__", - "msecs": 518.949031829834, + "msecs": 983.9069843292236, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2174.359083175659, - "thread": 140379272881920, + "relativeCreated": 2212.4059200286865, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72743,25 +72690,25 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:10,519", - "created": 1610361430.519171, + "asctime": "2021-01-14 00:25:52,984", + "created": 1610580352.984226, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 519.1709995269775, + "msecs": 984.2259883880615, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2174.5810508728027, - "thread": 140379272881920, + "relativeCreated": 2212.7249240875244, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -72770,36 +72717,36 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'cea9a510615aeaeac83d9d18cbfdd9f5c5345678587335c6aa3f7256cc0720e2beb22780d3ed0a14da87c3373e92f108f666dd599e3fb719653c0f3aa84eb104'" + "'58b04824dff37282c1dc3d1c1dccccc213500146431569e6fb23272b89a7891ec218701125b5468b90c3c8391482cdb7cec3a5b820a4f4510e0b3973d1e60989'" ], - "asctime": "2021-01-11 11:37:10,519", - "created": 1610361430.519486, + "asctime": "2021-01-14 00:25:52,984", + "created": 1610580352.98465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'cea9a510615aeaeac83d9d18cbfdd9f5c5345678587335c6aa3f7256cc0720e2beb22780d3ed0a14da87c3373e92f108f666dd599e3fb719653c0f3aa84eb104'\"", + "lineno": 457, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'58b04824dff37282c1dc3d1c1dccccc213500146431569e6fb23272b89a7891ec218701125b5468b90c3c8391482cdb7cec3a5b820a4f4510e0b3973d1e60989'\"", "module": "__init__", - "msecs": 519.4859504699707, + "msecs": 984.6498966217041, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2174.896001815796, - "thread": 140379272881920, + "relativeCreated": 2213.148832321167, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 65 61 39 61 35 31 30 36 31 35 61 65 61 65 61 63 38 33" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 38 62 30 34 38 32 34 64 66 66 33 37 32 38 32 63 31 64" ], - "asctime": "2021-01-11 11:37:10,542", - "created": 1610361430.542524, + "asctime": "2021-01-14 00:25:53,008", + "created": 1610580353.008467, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72807,25 +72754,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 65 61 39 61 35 31 30 36 31 35 61 65 61 65 61 63 38 33", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 38 62 30 34 38 32 34 64 66 66 33 37 32 38 32 63 31 64", "module": "__init__", - "msecs": 542.5240993499756, + "msecs": 8.466958999633789, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2197.934150695801, - "thread": 140379281274624, + "relativeCreated": 2236.9658946990967, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 65 61 39 61 35 31 30 36 31 35 61 65 61 65 61 63 38 33" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 38 62 30 34 38 32 34 64 66 66 33 37 32 38 32 63 31 64" ], - "asctime": "2021-01-11 11:37:10,542", - "created": 1610361430.54281, + "asctime": "2021-01-14 00:25:53,008", + "created": 1610580353.008836, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72833,16 +72780,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 65 61 39 61 35 31 30 36 31 35 61 65 61 65 61 63 38 33", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 38 62 30 34 38 32 34 64 66 66 33 37 32 38 32 63 31 64", "module": "__init__", - "msecs": 542.8099632263184, + "msecs": 8.836030960083008, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.2200145721436, - "thread": 140379281274624, + "relativeCreated": 2237.334966659546, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72850,8 +72797,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,542", - "created": 1610361430.542924, + "asctime": "2021-01-14 00:25:53,008", + "created": 1610580353.008971, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72861,14 +72808,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 542.9239273071289, + "msecs": 8.970975875854492, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.333978652954, - "thread": 140379281274624, + "relativeCreated": 2237.4699115753174, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72877,8 +72824,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.543019, + "asctime": "2021-01-14 00:25:53,009", + "created": 1610580353.009083, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72888,14 +72835,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 543.0190563201904, + "msecs": 9.083032608032227, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.4291076660156, - "thread": 140379281274624, + "relativeCreated": 2237.581968307495, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72903,8 +72850,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.54313, + "asctime": "2021-01-14 00:25:53,009", + "created": 1610580353.009294, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72914,14 +72861,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 543.1299209594727, + "msecs": 9.29403305053711, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.539972305298, - "thread": 140379281274624, + "relativeCreated": 2237.79296875, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72930,8 +72877,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.543229, + "asctime": "2021-01-14 00:25:53,009", + "created": 1610580353.009442, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72941,14 +72888,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 543.2291030883789, + "msecs": 9.44209098815918, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.639154434204, - "thread": 140379281274624, + "relativeCreated": 2237.941026687622, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72956,8 +72903,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.543345, + "asctime": "2021-01-14 00:25:53,009", + "created": 1610580353.009639, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72967,14 +72914,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 543.3449745178223, + "msecs": 9.63902473449707, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.7550258636475, - "thread": 140379281274624, + "relativeCreated": 2238.13796043396, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -72983,8 +72930,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.543427, + "asctime": "2021-01-14 00:25:53,009", + "created": 1610580353.009791, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -72994,14 +72941,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 543.4269905090332, + "msecs": 9.790897369384766, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.8370418548584, - "thread": 140379281274624, + "relativeCreated": 2238.2898330688477, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73009,8 +72956,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.543529, + "asctime": "2021-01-14 00:25:53,009", + "created": 1610580353.009964, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73020,14 +72967,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 543.5290336608887, + "msecs": 9.9639892578125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2198.939085006714, - "thread": 140379281274624, + "relativeCreated": 2238.4629249572754, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73036,8 +72983,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.543616, + "asctime": "2021-01-14 00:25:53,010", + "created": 1610580353.010102, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73047,23 +72994,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 543.6160564422607, + "msecs": 10.102033615112305, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2199.026107788086, - "thread": 140379281274624, + "relativeCreated": 2238.600969314575, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 64 39 64 31 38 63 62 66 64 64 39 66 35 63 35 33 34 35 36 37 38 35 38 37 33 33 35 63 36 61 61 33 66 37 32 35 36 63 63 30 37 32 30 65 32 62 65 62 32 32 37 38 30 64 33 65 64 30 61 31 34 64 61 38" + "(64): 63 33 64 31 63 31 64 63 63 63 63 63 32 31 33 35 30 30 31 34 36 34 33 31 35 36 39 65 36 66 62 32 33 32 37 32 62 38 39 61 37 38 39 31 65 63 32 31 38 37 30 31 31 32 35 62 35 34 36 38 62 39 30 63" ], - "asctime": "2021-01-11 11:37:10,543", - "created": 1610361430.543858, + "asctime": "2021-01-14 00:25:53,010", + "created": 1610580353.010506, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73071,25 +73018,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 64 39 64 31 38 63 62 66 64 64 39 66 35 63 35 33 34 35 36 37 38 35 38 37 33 33 35 63 36 61 61 33 66 37 32 35 36 63 63 30 37 32 30 65 32 62 65 62 32 32 37 38 30 64 33 65 64 30 61 31 34 64 61 38", + "message": "comm-client: TX -> (64): 63 33 64 31 63 31 64 63 63 63 63 63 32 31 33 35 30 30 31 34 36 34 33 31 35 36 39 65 36 66 62 32 33 32 37 32 62 38 39 61 37 38 39 31 65 63 32 31 38 37 30 31 31 32 35 62 35 34 36 38 62 39 30 63", "module": "__init__", - "msecs": 543.8580513000488, + "msecs": 10.505914688110352, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2199.268102645874, - "thread": 140379281274624, + "relativeCreated": 2239.0048503875732, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 64 39 64 31 38 63 62 66 64 64 39 66 35 63 35 33 34 35 36 37 38 35 38 37 33 33 35 63 36 61 61 33 66 37 32 35 36 63 63 30 37 32 30 65 32 62 65 62 32 32 37 38 30 64 33 65 64 30 61 31 34 64 61 38" + "(64): 63 33 64 31 63 31 64 63 63 63 63 63 32 31 33 35 30 30 31 34 36 34 33 31 35 36 39 65 36 66 62 32 33 32 37 32 62 38 39 61 37 38 39 31 65 63 32 31 38 37 30 31 31 32 35 62 35 34 36 38 62 39 30 63" ], - "asctime": "2021-01-11 11:37:10,544", - "created": 1610361430.54404, + "asctime": "2021-01-14 00:25:53,010", + "created": 1610580353.01082, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73097,25 +73044,25 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 64 39 64 31 38 63 62 66 64 64 39 66 35 63 35 33 34 35 36 37 38 35 38 37 33 33 35 63 36 61 61 33 66 37 32 35 36 63 63 30 37 32 30 65 32 62 65 62 32 32 37 38 30 64 33 65 64 30 61 31 34 64 61 38", + "message": "comm-server: RX <- (64): 63 33 64 31 63 31 64 63 63 63 63 63 32 31 33 35 30 30 31 34 36 34 33 31 35 36 39 65 36 66 62 32 33 32 37 32 62 38 39 61 37 38 39 31 65 63 32 31 38 37 30 31 31 32 35 62 35 34 36 38 62 39 30 63", "module": "__init__", - "msecs": 544.0399646759033, + "msecs": 10.81991195678711, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2199.4500160217285, - "thread": 140379281274624, + "relativeCreated": 2239.31884765625, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 37 63 33 33 37 33 65 39 32 66 31 30 38 66 36 36 36 64 64 35 39 39 65 33 66 62 37 31 39 36 35 33 63 30 66 33 61 61 38 34 65 62 31 30 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 97 d2" + "(64): 33 63 38 33 39 31 34 38 32 63 64 62 37 63 65 63 33 61 35 62 38 32 30 61 34 66 34 35 31 30 65 30 62 33 39 37 33 64 31 65 36 30 39 38 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 1a 9b" ], - "asctime": "2021-01-11 11:37:10,544", - "created": 1610361430.544363, + "asctime": "2021-01-14 00:25:53,011", + "created": 1610580353.011358, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73123,25 +73070,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 37 63 33 33 37 33 65 39 32 66 31 30 38 66 36 36 36 64 64 35 39 39 65 33 66 62 37 31 39 36 35 33 63 30 66 33 61 61 38 34 65 62 31 30 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 97 d2", + "message": "comm-client: TX -> (64): 33 63 38 33 39 31 34 38 32 63 64 62 37 63 65 63 33 61 35 62 38 32 30 61 34 66 34 35 31 30 65 30 62 33 39 37 33 64 31 65 36 30 39 38 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 1a 9b", "module": "__init__", - "msecs": 544.3630218505859, + "msecs": 11.358022689819336, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2199.773073196411, - "thread": 140379281274624, + "relativeCreated": 2239.856958389282, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 37 63 33 33 37 33 65 39 32 66 31 30 38 66 36 36 36 64 64 35 39 39 65 33 66 62 37 31 39 36 35 33 63 30 66 33 61 61 38 34 65 62 31 30 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 97 d2" + "(64): 33 63 38 33 39 31 34 38 32 63 64 62 37 63 65 63 33 61 35 62 38 32 30 61 34 66 34 35 31 30 65 30 62 33 39 37 33 64 31 65 36 30 39 38 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 1a 9b" ], - "asctime": "2021-01-11 11:37:10,544", - "created": 1610361430.544547, + "asctime": "2021-01-14 00:25:53,011", + "created": 1610580353.011663, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73149,16 +73096,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 37 63 33 33 37 33 65 39 32 66 31 30 38 66 36 36 36 64 64 35 39 39 65 33 66 62 37 31 39 36 35 33 63 30 66 33 61 61 38 34 65 62 31 30 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 97 d2", + "message": "comm-server: RX <- (64): 33 63 38 33 39 31 34 38 32 63 64 62 37 63 65 63 33 61 35 62 38 32 30 61 34 66 34 35 31 30 65 30 62 33 39 37 33 64 31 65 36 30 39 38 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 1a 9b", "module": "__init__", - "msecs": 544.5470809936523, + "msecs": 11.662960052490234, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2199.9571323394775, - "thread": 140379281274624, + "relativeCreated": 2240.161895751953, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73166,8 +73113,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,544", - "created": 1610361430.544768, + "asctime": "2021-01-14 00:25:53,011", + "created": 1610580353.011993, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73177,14 +73124,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 544.7680950164795, + "msecs": 11.992931365966797, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2200.1781463623047, - "thread": 140379281274624, + "relativeCreated": 2240.4918670654297, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73193,8 +73140,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,544", - "created": 1610361430.544859, + "asctime": "2021-01-14 00:25:53,012", + "created": 1610580353.012138, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73204,23 +73151,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 544.8589324951172, + "msecs": 12.137889862060547, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2200.2689838409424, - "thread": 140379281274624, + "relativeCreated": 2240.6368255615234, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(4): d9 48 3a 3e" + "(4): a8 57 3a 3e" ], - "asctime": "2021-01-11 11:37:10,544", - "created": 1610361430.544993, + "asctime": "2021-01-14 00:25:53,012", + "created": 1610580353.012358, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73228,25 +73175,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): d9 48 3a 3e", + "message": "comm-client: TX -> (4): a8 57 3a 3e", "module": "__init__", - "msecs": 544.9929237365723, + "msecs": 12.357950210571289, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2200.4029750823975, - "thread": 140379281274624, + "relativeCreated": 2240.856885910034, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(4): d9 48 3a 3e" + "(4): a8 57 3a 3e" ], - "asctime": "2021-01-11 11:37:10,545", - "created": 1610361430.545093, + "asctime": "2021-01-14 00:25:53,012", + "created": 1610580353.012529, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73254,16 +73201,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): d9 48 3a 3e", + "message": "comm-server: RX <- (4): a8 57 3a 3e", "module": "__init__", - "msecs": 545.0930595397949, + "msecs": 12.52889633178711, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2200.50311088562, - "thread": 140379281274624, + "relativeCreated": 2241.02783203125, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73271,8 +73218,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,545", - "created": 1610361430.545251, + "asctime": "2021-01-14 00:25:53,012", + "created": 1610580353.01268, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73282,14 +73229,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 545.2508926391602, + "msecs": 12.6800537109375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2200.6609439849854, - "thread": 140379281274624, + "relativeCreated": 2241.1789894104004, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73298,8 +73245,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,545", - "created": 1610361430.545347, + "asctime": "2021-01-14 00:25:53,012", + "created": 1610580353.012816, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73309,23 +73256,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 545.3469753265381, + "msecs": 12.81595230102539, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2200.7570266723633, - "thread": 140379281274624, + "relativeCreated": 2241.3148880004883, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "STP:", - "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 65 61 39 61 35 31 30 36 31 35 61 65 61 65 61 63 38 33 64 39 64 31 38 63 62 66 64 64 39 66 35 63 35 33 34 35 36 37 38 35 38 37 33 33 35 63 36 61 61 33 66 37 32 35 36 63 63 30 37 32 30 65 32 62 65 62 32 32 37 38 30 64 33 65 64 30 61 31 34 64 61 38 37 63 33 33 37 33 65 39 32 66 31 30 38 66 36 36 36 64 64 35 39 39 65 33 66 62 37 31 39 36 35 33 63 30 66 33 61 61 38 34 65 62 31 30 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 97 d2 d9 48" + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 38 62 30 34 38 32 34 64 66 66 33 37 32 38 32 63 31 64 63 33 64 31 63 31 64 63 63 63 63 63 32 31 33 35 30 30 31 34 36 34 33 31 35 36 39 65 36 66 62 32 33 32 37 32 62 38 39 61 37 38 39 31 65 63 32 31 38 37 30 31 31 32 35 62 35 34 36 38 62 39 30 63 33 63 38 33 39 31 34 38 32 63 64 62 37 63 65 63 33 61 35 62 38 32 30 61 34 66 34 35 31 30 65 30 62 33 39 37 33 64 31 65 36 30 39 38 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 1a 9b a8 57" ], - "asctime": "2021-01-11 11:37:10,545", - "created": 1610361430.545701, + "asctime": "2021-01-14 00:25:53,013", + "created": 1610580353.013426, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73333,16 +73280,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 65 61 39 61 35 31 30 36 31 35 61 65 61 65 61 63 38 33 64 39 64 31 38 63 62 66 64 64 39 66 35 63 35 33 34 35 36 37 38 35 38 37 33 33 35 63 36 61 61 33 66 37 32 35 36 63 63 30 37 32 30 65 32 62 65 62 32 32 37 38 30 64 33 65 64 30 61 31 34 64 61 38 37 63 33 33 37 33 65 39 32 66 31 30 38 66 36 36 36 64 64 35 39 39 65 33 66 62 37 31 39 36 35 33 63 30 66 33 61 61 38 34 65 62 31 30 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 97 d2 d9 48", + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 38 62 30 34 38 32 34 64 66 66 33 37 32 38 32 63 31 64 63 33 64 31 63 31 64 63 63 63 63 63 32 31 33 35 30 30 31 34 36 34 33 31 35 36 39 65 36 66 62 32 33 32 37 32 62 38 39 61 37 38 39 31 65 63 32 31 38 37 30 31 31 32 35 62 35 34 36 38 62 39 30 63 33 63 38 33 39 31 34 38 32 63 64 62 37 63 65 63 33 61 35 62 38 32 30 61 34 66 34 35 31 30 65 30 62 33 39 37 33 64 31 65 36 30 39 38 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 1a 9b a8 57", "module": "stp", - "msecs": 545.7010269165039, + "msecs": 13.426065444946289, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2201.111078262329, - "thread": 140379281274624, + "relativeCreated": 2241.925001144409, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73351,27 +73298,27 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "u'cea9a510615aeaeac83d9d18cbfdd9f5c5345678587335c6aa3f7256cc0720e2beb22780d3ed0a14da87c3373e92f108f666dd599e3fb719653c0f3aa84eb104'" + "u'58b04824dff37282c1dc3d1c1dccccc213500146431569e6fb23272b89a7891ec218701125b5468b90c3c8391482cdb7cec3a5b820a4f4510e0b3973d1e60989'" ], - "asctime": "2021-01-11 11:37:10,545", - "created": 1610361430.545945, + "asctime": "2021-01-14 00:25:53,013", + "created": 1610580353.013829, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'cea9a510615aeaeac83d9d18cbfdd9f5c5345678587335c6aa3f7256cc0720e2beb22780d3ed0a14da87c3373e92f108f666dd599e3fb719653c0f3aa84eb104'\"", + "lineno": 457, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'58b04824dff37282c1dc3d1c1dccccc213500146431569e6fb23272b89a7891ec218701125b5468b90c3c8391482cdb7cec3a5b820a4f4510e0b3973d1e60989'\"", "module": "__init__", - "msecs": 545.9449291229248, + "msecs": 13.82899284362793, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2201.35498046875, - "thread": 140379281274624, + "relativeCreated": 2242.327928543091, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73379,25 +73326,25 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:10,546", - "created": 1610361430.546068, + "asctime": "2021-01-14 00:25:53,014", + "created": 1610580353.014032, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 546.0679531097412, + "msecs": 14.03188705444336, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2201.4780044555664, - "thread": 140379281274624, + "relativeCreated": 2242.5308227539062, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73408,25 +73355,25 @@ "status: okay", "False" ], - "asctime": "2021-01-11 11:37:10,546", - "created": 1610361430.546251, + "asctime": "2021-01-14 00:25:53,014", + "created": 1610580353.014316, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"False\"", "module": "__init__", - "msecs": 546.2510585784912, + "msecs": 14.316082000732422, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2201.6611099243164, - "thread": 140379281274624, + "relativeCreated": 2242.8150177001953, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -73434,8 +73381,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31" ], - "asctime": "2021-01-11 11:37:10,552", - "created": 1610361430.55219, + "asctime": "2021-01-14 00:25:53,017", + "created": 1610580353.017714, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73445,14 +73392,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31", "module": "__init__", - "msecs": 552.1900653839111, + "msecs": 17.71402359008789, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2207.6001167297363, - "thread": 140379272881920, + "relativeCreated": 2246.212959289551, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73460,8 +73407,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31" ], - "asctime": "2021-01-11 11:37:10,552", - "created": 1610361430.552523, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018185, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73471,14 +73418,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31", "module": "__init__", - "msecs": 552.5228977203369, + "msecs": 18.184900283813477, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2207.932949066162, - "thread": 140379272881920, + "relativeCreated": 2246.6838359832764, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73486,8 +73433,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,552", - "created": 1610361430.552636, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018316, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73497,14 +73444,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 552.635908126831, + "msecs": 18.316030502319336, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.0459594726562, - "thread": 140379272881920, + "relativeCreated": 2246.814966201782, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73513,8 +73460,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,552", - "created": 1610361430.552754, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018373, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73524,14 +73471,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 552.7539253234863, + "msecs": 18.37301254272461, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.1639766693115, - "thread": 140379272881920, + "relativeCreated": 2246.8719482421875, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73539,8 +73486,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,552", - "created": 1610361430.552862, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018457, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73550,14 +73497,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 552.8619289398193, + "msecs": 18.45693588256836, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.2719802856445, - "thread": 140379272881920, + "relativeCreated": 2246.9558715820312, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73566,8 +73513,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,552", - "created": 1610361430.552971, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018508, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73577,14 +73524,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 552.9708862304688, + "msecs": 18.507957458496094, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.380937576294, - "thread": 140379272881920, + "relativeCreated": 2247.006893157959, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73592,8 +73539,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553106, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.01858, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73603,14 +73550,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 553.1060695648193, + "msecs": 18.579959869384766, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.5161209106445, - "thread": 140379272881920, + "relativeCreated": 2247.0788955688477, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73619,8 +73566,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553193, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018629, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73630,14 +73577,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 553.1930923461914, + "msecs": 18.629074096679688, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.6031436920166, - "thread": 140379272881920, + "relativeCreated": 2247.1280097961426, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73645,8 +73592,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553289, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018689, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73656,14 +73603,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 553.2889366149902, + "msecs": 18.68891716003418, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.6989879608154, - "thread": 140379272881920, + "relativeCreated": 2247.187852859497, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73672,8 +73619,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553366, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018737, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73683,14 +73630,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 553.36594581604, + "msecs": 18.737077713012695, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.7759971618652, - "thread": 140379272881920, + "relativeCreated": 2247.2360134124756, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73698,8 +73645,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553473, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018807, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73709,14 +73656,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 553.4729957580566, + "msecs": 18.806934356689453, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.883047103882, - "thread": 140379272881920, + "relativeCreated": 2247.3058700561523, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73725,8 +73672,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553549, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.018857, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73736,14 +73683,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 553.54905128479, + "msecs": 18.85700225830078, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2208.9591026306152, - "thread": 140379272881920, + "relativeCreated": 2247.3559379577637, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73751,8 +73698,8 @@ "comm-server:", "(7): 7d a1 48 27 7d 3a 3e" ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553674, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.01893, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73762,14 +73709,14 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d a1 48 27 7d 3a 3e", "module": "__init__", - "msecs": 553.6739826202393, + "msecs": 18.92995834350586, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.0840339660645, - "thread": 140379272881920, + "relativeCreated": 2247.4288940429688, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73777,8 +73724,8 @@ "comm-client:", "(7): 7d a1 48 27 7d 3a 3e" ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553769, + "asctime": "2021-01-14 00:25:53,018", + "created": 1610580353.01899, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -73788,14 +73735,14 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d a1 48 27 7d 3a 3e", "module": "__init__", - "msecs": 553.7691116333008, + "msecs": 18.990039825439453, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.179162979126, - "thread": 140379272881920, + "relativeCreated": 2247.4889755249023, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73803,8 +73750,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553865, + "asctime": "2021-01-14 00:25:53,019", + "created": 1610580353.019046, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73814,14 +73761,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 553.8649559020996, + "msecs": 19.04606819152832, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.275007247925, - "thread": 140379272881920, + "relativeCreated": 2247.545003890991, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73830,8 +73777,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,553", - "created": 1610361430.553963, + "asctime": "2021-01-14 00:25:53,019", + "created": 1610580353.019101, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73841,14 +73788,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 553.9629459381104, + "msecs": 19.10090446472168, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.3729972839355, - "thread": 140379272881920, + "relativeCreated": 2247.5998401641846, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73856,8 +73803,8 @@ "STP:", "(63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d" ], - "asctime": "2021-01-11 11:37:10,554", - "created": 1610361430.554131, + "asctime": "2021-01-14 00:25:53,019", + "created": 1610580353.019202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -73867,14 +73814,14 @@ "lineno": 148, "message": "STP: message identified - (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d", "module": "stp", - "msecs": 554.131031036377, + "msecs": 19.201993942260742, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.541082382202, - "thread": 140379272881920, + "relativeCreated": 2247.7009296417236, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73885,25 +73832,25 @@ "status: okay", "False" ], - "asctime": "2021-01-11 11:37:10,554", - "created": 1610361430.554352, + "asctime": "2021-01-14 00:25:53,019", + "created": 1610580353.019345, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", "module": "__init__", - "msecs": 554.3520450592041, + "msecs": 19.34504508972168, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.7620964050293, - "thread": 140379272881920, + "relativeCreated": 2247.8439807891846, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -73911,71 +73858,71 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:10,554", - "created": 1610361430.554467, + "asctime": "2021-01-14 00:25:53,019", + "created": 1610580353.019416, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 554.466962814331, + "msecs": 19.416093826293945, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.8770141601562, - "thread": 140379272881920, + "relativeCreated": 2247.915029525757, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:10,554", - "created": 1610361430.554557, + "asctime": "2021-01-14 00:25:53,019", + "created": 1610580353.019465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 363, + "lineno": 375, "message": "prot-client: Got negative authentification feedback", "module": "__init__", - "msecs": 554.5570850372314, + "msecs": 19.464969635009766, "msg": "%s Got negative authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2209.9671363830566, - "thread": 140379272881920, + "relativeCreated": 2247.9639053344727, + "thread": 140019641673472, "threadName": "Thread-6" } ], - "msecs": 555.293083190918, + "msecs": 115.21601676940918, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2210.703134536743, - "thread": 140379336402752, + "relativeCreated": 2343.714952468872, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0007359981536865234 + "time_consumption": 0.09575104713439941 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:10,555", - "created": 1610361430.555788, + "asctime": "2021-01-14 00:25:53,116", + "created": 1610580353.116433, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -73992,8 +73939,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,555", - "created": 1610361430.55557, + "asctime": "2021-01-14 00:25:53,115", + "created": 1610580353.115971, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74003,14 +73950,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 555.5698871612549, + "msecs": 115.97108840942383, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2210.97993850708, - "thread": 140379336402752, + "relativeCreated": 2344.4700241088867, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -74019,8 +73966,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,555", - "created": 1610361430.555673, + "asctime": "2021-01-14 00:25:53,116", + "created": 1610580353.116209, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74030,35 +73977,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 555.6728839874268, + "msecs": 116.20903015136719, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2211.082935333252, - "thread": 140379336402752, + "relativeCreated": 2344.70796585083, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 555.7880401611328, + "msecs": 116.43290519714355, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2211.198091506958, - "thread": 140379336402752, + "relativeCreated": 2344.9318408966064, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00011515617370605469 + "time_consumption": 0.0002238750457763672 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:10,556", - "created": 1610361430.556246, + "asctime": "2021-01-14 00:25:53,117", + "created": 1610580353.117433, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74075,8 +74022,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,556", - "created": 1610361430.556009, + "asctime": "2021-01-14 00:25:53,116", + "created": 1610580353.116983, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74086,14 +74033,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 556.00905418396, + "msecs": 116.98293685913086, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2211.419105529785, - "thread": 140379336402752, + "relativeCreated": 2345.4818725585938, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -74102,8 +74049,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,556", - "created": 1610361430.556123, + "asctime": "2021-01-14 00:25:53,117", + "created": 1610580353.117229, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74113,35 +74060,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 556.1230182647705, + "msecs": 117.22898483276367, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2211.5330696105957, - "thread": 140379336402752, + "relativeCreated": 2345.7279205322266, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 556.2460422515869, + "msecs": 117.43307113647461, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2211.656093597412, - "thread": 140379336402752, + "relativeCreated": 2345.9320068359375, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00012302398681640625 + "time_consumption": 0.0002040863037109375 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:10,556", - "created": 1610361430.556673, + "asctime": "2021-01-14 00:25:53,118", + "created": 1610580353.11872, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74158,8 +74105,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,556", - "created": 1610361430.556437, + "asctime": "2021-01-14 00:25:53,118", + "created": 1610580353.118133, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74169,14 +74116,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 556.4370155334473, + "msecs": 118.1330680847168, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2211.8470668792725, - "thread": 140379336402752, + "relativeCreated": 2346.6320037841797, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -74185,8 +74132,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:10,556", - "created": 1610361430.556552, + "asctime": "2021-01-14 00:25:53,118", + "created": 1610580353.118442, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74196,32 +74143,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 556.5519332885742, + "msecs": 118.44205856323242, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2211.9619846343994, - "thread": 140379336402752, + "relativeCreated": 2346.9409942626953, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 556.6730499267578, + "msecs": 118.72005462646484, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2212.083101272583, - "thread": 140379336402752, + "relativeCreated": 2347.2189903259277, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00012111663818359375 + "time_consumption": 0.0002779960632324219 }, { "args": [], - "asctime": "2021-01-11 11:37:10,556", - "created": 1610361430.556874, + "asctime": "2021-01-14 00:25:53,119", + "created": 1610580353.119137, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -74232,21 +74179,21 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 556.8740367889404, + "msecs": 119.13704872131348, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2212.2840881347656, - "thread": 140379336402752, + "relativeCreated": 2347.6359844207764, + "thread": 140019705194304, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:10,657", - "created": 1610361430.657628, + "asctime": "2021-01-14 00:25:53,220", + "created": 1610580353.220705, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -74265,25 +74212,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,557", - "created": 1610361430.557103, + "asctime": "2021-01-14 00:25:53,119", + "created": 1610580353.119712, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 557.1029186248779, + "msecs": 119.71211433410645, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2212.512969970703, - "thread": 140379336402752, + "relativeCreated": 2348.2110500335693, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -74291,8 +74238,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,562", - "created": 1610361430.562194, + "asctime": "2021-01-14 00:25:53,120", + "created": 1610580353.120843, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -74302,14 +74249,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 562.1941089630127, + "msecs": 120.84293365478516, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2217.604160308838, - "thread": 140379281274624, + "relativeCreated": 2349.341869354248, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74317,8 +74264,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,562", - "created": 1610361430.562494, + "asctime": "2021-01-14 00:25:53,121", + "created": 1610580353.121353, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -74328,14 +74275,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 562.4940395355225, + "msecs": 121.3529109954834, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2217.9040908813477, - "thread": 140379281274624, + "relativeCreated": 2349.8518466949463, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74343,8 +74290,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,562", - "created": 1610361430.562638, + "asctime": "2021-01-14 00:25:53,121", + "created": 1610580353.121632, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74354,14 +74301,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 562.6380443572998, + "msecs": 121.63209915161133, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2218.048095703125, - "thread": 140379281274624, + "relativeCreated": 2350.131034851074, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74370,8 +74317,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,562", - "created": 1610361430.562755, + "asctime": "2021-01-14 00:25:53,121", + "created": 1610580353.121891, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74381,14 +74328,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 562.7551078796387, + "msecs": 121.89102172851562, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2218.165159225464, - "thread": 140379281274624, + "relativeCreated": 2350.3899574279785, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74396,8 +74343,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,562", - "created": 1610361430.562894, + "asctime": "2021-01-14 00:25:53,122", + "created": 1610580353.122217, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74407,14 +74354,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 562.8941059112549, + "msecs": 122.21693992614746, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2218.30415725708, - "thread": 140379281274624, + "relativeCreated": 2350.7158756256104, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74423,8 +74370,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,563", - "created": 1610361430.563001, + "asctime": "2021-01-14 00:25:53,122", + "created": 1610580353.122456, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74434,14 +74381,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 563.0009174346924, + "msecs": 122.45607376098633, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2218.4109687805176, - "thread": 140379281274624, + "relativeCreated": 2350.955009460449, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74449,8 +74396,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,563", - "created": 1610361430.563152, + "asctime": "2021-01-14 00:25:53,122", + "created": 1610580353.122784, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74460,14 +74407,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 563.1520748138428, + "msecs": 122.78389930725098, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2218.562126159668, - "thread": 140379281274624, + "relativeCreated": 2351.282835006714, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74476,8 +74423,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,563", - "created": 1610361430.563282, + "asctime": "2021-01-14 00:25:53,123", + "created": 1610580353.123236, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74487,14 +74434,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 563.2820129394531, + "msecs": 123.23594093322754, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2218.6920642852783, - "thread": 140379281274624, + "relativeCreated": 2351.7348766326904, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74502,8 +74449,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,563", - "created": 1610361430.563484, + "asctime": "2021-01-14 00:25:53,123", + "created": 1610580353.123547, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74513,14 +74460,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 563.4839534759521, + "msecs": 123.54707717895508, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2218.8940048217773, - "thread": 140379281274624, + "relativeCreated": 2352.046012878418, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74529,8 +74476,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,563", - "created": 1610361430.563602, + "asctime": "2021-01-14 00:25:53,123", + "created": 1610580353.123803, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74540,14 +74487,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 563.6019706726074, + "msecs": 123.80290031433105, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2219.0120220184326, - "thread": 140379281274624, + "relativeCreated": 2352.301836013794, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74555,8 +74502,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,563", - "created": 1610361430.563761, + "asctime": "2021-01-14 00:25:53,124", + "created": 1610580353.124152, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74566,14 +74513,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 563.7609958648682, + "msecs": 124.15194511413574, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2219.1710472106934, - "thread": 140379281274624, + "relativeCreated": 2352.6508808135986, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74582,8 +74529,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,563", - "created": 1610361430.563895, + "asctime": "2021-01-14 00:25:53,124", + "created": 1610580353.124373, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74593,14 +74540,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 563.8949871063232, + "msecs": 124.37295913696289, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2219.3050384521484, - "thread": 140379281274624, + "relativeCreated": 2352.871894836426, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74608,8 +74555,8 @@ "comm-client:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:10,564", - "created": 1610361430.564206, + "asctime": "2021-01-14 00:25:53,124", + "created": 1610580353.124753, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -74619,14 +74566,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 564.2058849334717, + "msecs": 124.75299835205078, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2219.615936279297, - "thread": 140379281274624, + "relativeCreated": 2353.2519340515137, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74634,8 +74581,8 @@ "comm-server:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:10,564", - "created": 1610361430.564373, + "asctime": "2021-01-14 00:25:53,125", + "created": 1610580353.125025, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -74645,14 +74592,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 564.3730163574219, + "msecs": 125.02503395080566, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2219.783067703247, - "thread": 140379281274624, + "relativeCreated": 2353.5239696502686, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74660,8 +74607,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,564", - "created": 1610361430.564548, + "asctime": "2021-01-14 00:25:53,125", + "created": 1610580353.125211, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74671,14 +74618,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 564.5480155944824, + "msecs": 125.21100044250488, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2219.9580669403076, - "thread": 140379281274624, + "relativeCreated": 2353.709936141968, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74687,8 +74634,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,564", - "created": 1610361430.564787, + "asctime": "2021-01-14 00:25:53,125", + "created": 1610580353.125281, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74698,14 +74645,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 564.7869110107422, + "msecs": 125.28109550476074, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2220.1969623565674, - "thread": 140379281274624, + "relativeCreated": 2353.7800312042236, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74713,8 +74660,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" ], - "asctime": "2021-01-11 11:37:10,565", - "created": 1610361430.565206, + "asctime": "2021-01-14 00:25:53,125", + "created": 1610580353.125427, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74724,14 +74671,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", "module": "stp", - "msecs": 565.2060508728027, + "msecs": 125.4270076751709, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2220.616102218628, - "thread": 140379281274624, + "relativeCreated": 2353.925943374634, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74742,25 +74689,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,565", - "created": 1610361430.565532, + "asctime": "2021-01-14 00:25:53,125", + "created": 1610580353.125595, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 565.5319690704346, + "msecs": 125.5950927734375, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2220.9420204162598, - "thread": 140379281274624, + "relativeCreated": 2354.0940284729004, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74768,25 +74715,25 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:10,565", - "created": 1610361430.565674, + "asctime": "2021-01-14 00:25:53,125", + "created": 1610580353.125694, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 565.6740665435791, + "msecs": 125.69403648376465, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2221.0841178894043, - "thread": 140379281274624, + "relativeCreated": 2354.1929721832275, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -74795,36 +74742,36 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'7267b9ff3fa80f20acdfd3ae3e9f1a3eccdc79affad14b6bc643e4a3c2208d85'" + "'7d481b5970b38472dc2791845810a58d0ca6bc63c3e4757fcbe7db4cc70ae5da'" ], - "asctime": "2021-01-11 11:37:10,565", - "created": 1610361430.565856, + "asctime": "2021-01-14 00:25:53,125", + "created": 1610580353.125821, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'7267b9ff3fa80f20acdfd3ae3e9f1a3eccdc79affad14b6bc643e4a3c2208d85'\"", + "lineno": 457, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'7d481b5970b38472dc2791845810a58d0ca6bc63c3e4757fcbe7db4cc70ae5da'\"", "module": "__init__", - "msecs": 565.8559799194336, + "msecs": 125.82111358642578, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2221.266031265259, - "thread": 140379281274624, + "relativeCreated": 2354.3200492858887, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 36 37 62 39 66 66 33 66 61 38 30 66 32 30 61 63 64" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 34 38 31 62 35 39 37 30 62 33 38 34 37 32 64 63 32" ], - "asctime": "2021-01-11 11:37:10,571", - "created": 1610361430.57162, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130262, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -74832,25 +74779,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 36 37 62 39 66 66 33 66 61 38 30 66 32 30 61 63 64", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 34 38 31 62 35 39 37 30 62 33 38 34 37 32 64 63 32", "module": "__init__", - "msecs": 571.619987487793, + "msecs": 130.26189804077148, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.030038833618, - "thread": 140379272881920, + "relativeCreated": 2358.7608337402344, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 36 37 62 39 66 66 33 66 61 38 30 66 32 30 61 63 64" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 34 38 31 62 35 39 37 30 62 33 38 34 37 32 64 63 32" ], - "asctime": "2021-01-11 11:37:10,571", - "created": 1610361430.571884, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130404, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -74858,16 +74805,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 36 37 62 39 66 66 33 66 61 38 30 66 32 30 61 63 64", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 34 38 31 62 35 39 37 30 62 33 38 34 37 32 64 63 32", "module": "__init__", - "msecs": 571.8839168548584, + "msecs": 130.40399551391602, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.2939682006836, - "thread": 140379272881920, + "relativeCreated": 2358.902931213379, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -74875,8 +74822,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,571", - "created": 1610361430.571991, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130471, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74886,14 +74833,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 571.990966796875, + "msecs": 130.47099113464355, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.4010181427, - "thread": 140379272881920, + "relativeCreated": 2358.9699268341064, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -74902,8 +74849,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,572", - "created": 1610361430.572084, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130531, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74913,14 +74860,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 572.0839500427246, + "msecs": 130.53107261657715, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.49400138855, - "thread": 140379272881920, + "relativeCreated": 2359.03000831604, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -74928,8 +74875,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,572", - "created": 1610361430.572215, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130608, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74939,14 +74886,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 572.2150802612305, + "msecs": 130.60808181762695, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.6251316070557, - "thread": 140379272881920, + "relativeCreated": 2359.10701751709, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -74955,8 +74902,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,572", - "created": 1610361430.572305, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74966,14 +74913,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 572.3049640655518, + "msecs": 130.66506385803223, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.715015411377, - "thread": 140379272881920, + "relativeCreated": 2359.163999557495, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -74981,8 +74928,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,572", - "created": 1610361430.572421, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130741, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -74992,14 +74939,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 572.4210739135742, + "msecs": 130.74088096618652, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.8311252593994, - "thread": 140379272881920, + "relativeCreated": 2359.2398166656494, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75008,8 +74955,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,572", - "created": 1610361430.572521, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130796, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75019,14 +74966,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 572.5209712982178, + "msecs": 130.79595565795898, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2227.931022644043, - "thread": 140379272881920, + "relativeCreated": 2359.294891357422, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75034,8 +74981,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,572", - "created": 1610361430.57266, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75045,14 +74992,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 572.659969329834, + "msecs": 130.86795806884766, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2228.070020675659, - "thread": 140379272881920, + "relativeCreated": 2359.3668937683105, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75061,8 +75008,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,572", - "created": 1610361430.572785, + "asctime": "2021-01-14 00:25:53,130", + "created": 1610580353.130925, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75072,23 +75019,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 572.7849006652832, + "msecs": 130.92494010925293, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2228.1949520111084, - "thread": 140379272881920, + "relativeCreated": 2359.423875808716, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(64): 66 64 33 61 65 33 65 39 66 31 61 33 65 63 63 64 63 37 39 61 66 66 61 64 31 34 62 36 62 63 36 34 33 65 34 61 33 63 32 32 30 38 64 38 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d5 a5" + "(64): 37 39 31 38 34 35 38 31 30 61 35 38 64 30 63 61 36 62 63 36 33 63 33 65 34 37 35 37 66 63 62 65 37 64 62 34 63 63 37 30 61 65 35 64 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d ff db" ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573013, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131082, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75096,25 +75043,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 66 64 33 61 65 33 65 39 66 31 61 33 65 63 63 64 63 37 39 61 66 66 61 64 31 34 62 36 62 63 36 34 33 65 34 61 33 63 32 32 30 38 64 38 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d5 a5", + "message": "comm-server: TX -> (64): 37 39 31 38 34 35 38 31 30 61 35 38 64 30 63 61 36 62 63 36 33 63 33 65 34 37 35 37 66 63 62 65 37 64 62 34 63 63 37 30 61 65 35 64 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d ff db", "module": "__init__", - "msecs": 573.0130672454834, + "msecs": 131.08205795288086, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2228.4231185913086, - "thread": 140379272881920, + "relativeCreated": 2359.5809936523438, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 66 64 33 61 65 33 65 39 66 31 61 33 65 63 63 64 63 37 39 61 66 66 61 64 31 34 62 36 62 63 36 34 33 65 34 61 33 63 32 32 30 38 64 38 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d5 a5" + "(64): 37 39 31 38 34 35 38 31 30 61 35 38 64 30 63 61 36 62 63 36 33 63 33 65 34 37 35 37 66 63 62 65 37 64 62 34 63 63 37 30 61 65 35 64 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d ff db" ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573175, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.1312, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75122,16 +75069,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 66 64 33 61 65 33 65 39 66 31 61 33 65 63 63 64 63 37 39 61 66 66 61 64 31 34 62 36 62 63 36 34 33 65 34 61 33 63 32 32 30 38 64 38 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d d5 a5", + "message": "comm-client: RX <- (64): 37 39 31 38 34 35 38 31 30 61 35 38 64 30 63 61 36 62 63 36 33 63 33 65 34 37 35 37 66 63 62 65 37 64 62 34 63 63 37 30 61 65 35 64 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d ff db", "module": "__init__", - "msecs": 573.1749534606934, + "msecs": 131.20007514953613, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2228.5850048065186, - "thread": 140379272881920, + "relativeCreated": 2359.699010848999, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75139,8 +75086,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573361, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131334, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75150,14 +75097,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 573.3609199523926, + "msecs": 131.3340663909912, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2228.770971298218, - "thread": 140379272881920, + "relativeCreated": 2359.833002090454, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75166,8 +75113,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573436, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131391, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75177,23 +75124,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 573.4360218048096, + "msecs": 131.39104843139648, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2228.8460731506348, - "thread": 140379272881920, + "relativeCreated": 2359.8899841308594, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(4): c1 98 3a 3e" + "(4): d2 d9 3a 3e" ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573576, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131478, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75201,25 +75148,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): c1 98 3a 3e", + "message": "comm-server: TX -> (4): d2 d9 3a 3e", "module": "__init__", - "msecs": 573.5759735107422, + "msecs": 131.47807121276855, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2228.9860248565674, - "thread": 140379272881920, + "relativeCreated": 2359.9770069122314, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(4): c1 98 3a 3e" + "(4): d2 d9 3a 3e" ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573685, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131542, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75227,16 +75174,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): c1 98 3a 3e", + "message": "comm-client: RX <- (4): d2 d9 3a 3e", "module": "__init__", - "msecs": 573.6849308013916, + "msecs": 131.54196739196777, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2229.094982147217, - "thread": 140379272881920, + "relativeCreated": 2360.0409030914307, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75244,8 +75191,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573782, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131602, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75255,14 +75202,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 573.7819671630859, + "msecs": 131.60204887390137, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2229.192018508911, - "thread": 140379272881920, + "relativeCreated": 2360.1009845733643, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75271,8 +75218,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,573", - "created": 1610361430.573888, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131661, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75282,23 +75229,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 573.8880634307861, + "msecs": 131.66093826293945, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2229.2981147766113, - "thread": 140379272881920, + "relativeCreated": 2360.1598739624023, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "STP:", - "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 37 32 36 37 62 39 66 66 33 66 61 38 30 66 32 30 61 63 64 66 64 33 61 65 33 65 39 66 31 61 33 65 63 63 64 63 37 39 61 66 66 61 64 31 34 62 36 62 63 36 34 33 65 34 61 33 63 32 32 30 38 64 38 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d5 a5 c1 98" + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 37 64 34 38 31 62 35 39 37 30 62 33 38 34 37 32 64 63 32 37 39 31 38 34 35 38 31 30 61 35 38 64 30 63 61 36 62 63 36 33 63 33 65 34 37 35 37 66 63 62 65 37 64 62 34 63 63 37 30 61 65 35 64 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d ff db d2 d9" ], - "asctime": "2021-01-11 11:37:10,574", - "created": 1610361430.574161, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131829, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75306,16 +75253,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 37 32 36 37 62 39 66 66 33 66 61 38 30 66 32 30 61 63 64 66 64 33 61 65 33 65 39 66 31 61 33 65 63 63 64 63 37 39 61 66 66 61 64 31 34 62 36 62 63 36 34 33 65 34 61 33 63 32 32 30 38 64 38 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d5 a5 c1 98", + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 37 64 34 38 31 62 35 39 37 30 62 33 38 34 37 32 64 63 32 37 39 31 38 34 35 38 31 30 61 35 38 64 30 63 61 36 62 63 36 33 63 33 65 34 37 35 37 66 63 62 65 37 64 62 34 63 63 37 30 61 65 35 64 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d ff db d2 d9", "module": "stp", - "msecs": 574.1610527038574, + "msecs": 131.82902336120605, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2229.5711040496826, - "thread": 140379272881920, + "relativeCreated": 2360.327959060669, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75324,27 +75271,27 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "u'7267b9ff3fa80f20acdfd3ae3e9f1a3eccdc79affad14b6bc643e4a3c2208d85'" + "u'7d481b5970b38472dc2791845810a58d0ca6bc63c3e4757fcbe7db4cc70ae5da'" ], - "asctime": "2021-01-11 11:37:10,574", - "created": 1610361430.574381, + "asctime": "2021-01-14 00:25:53,131", + "created": 1610580353.131962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'7267b9ff3fa80f20acdfd3ae3e9f1a3eccdc79affad14b6bc643e4a3c2208d85'\"", + "lineno": 457, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'7d481b5970b38472dc2791845810a58d0ca6bc63c3e4757fcbe7db4cc70ae5da'\"", "module": "__init__", - "msecs": 574.3811130523682, + "msecs": 131.96206092834473, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2229.7911643981934, - "thread": 140379272881920, + "relativeCreated": 2360.4609966278076, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75352,25 +75299,25 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:10,574", - "created": 1610361430.574494, + "asctime": "2021-01-14 00:25:53,132", + "created": 1610580353.132038, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 574.4938850402832, + "msecs": 132.03811645507812, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2229.9039363861084, - "thread": 140379272881920, + "relativeCreated": 2360.537052154541, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -75379,36 +75326,36 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'3ff50b3fadf57f4b951dbe0c97e384fd1909f9a44de466e1e7d8ec3fd03eccc79dcb23a97a7c1cd1c3632051d23ebf6242a530fbfcf7a0f709e48028db74d04b'" + "'4fba2e0f52793e9f458824ba0c9064e6395c6d6a41e823969afedc1879a142673ca63122106f508e2d268fa0d92ea49e8c78b59a37632c75e041e34557183725'" ], - "asctime": "2021-01-11 11:37:10,574", - "created": 1610361430.574652, + "asctime": "2021-01-14 00:25:53,132", + "created": 1610580353.132148, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'3ff50b3fadf57f4b951dbe0c97e384fd1909f9a44de466e1e7d8ec3fd03eccc79dcb23a97a7c1cd1c3632051d23ebf6242a530fbfcf7a0f709e48028db74d04b'\"", + "lineno": 457, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'4fba2e0f52793e9f458824ba0c9064e6395c6d6a41e823969afedc1879a142673ca63122106f508e2d268fa0d92ea49e8c78b59a37632c75e041e34557183725'\"", "module": "__init__", - "msecs": 574.6519565582275, + "msecs": 132.14802742004395, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2230.0620079040527, - "thread": 140379272881920, + "relativeCreated": 2360.646963119507, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 66 66 35 30 62 33 66 61 64 66 35 37 66 34 62 39 35 31" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 66 62 61 32 65 30 66 35 32 37 39 33 65 39 66 34 35 38" ], - "asctime": "2021-01-11 11:37:10,582", - "created": 1610361430.582087, + "asctime": "2021-01-14 00:25:53,133", + "created": 1610580353.133406, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75416,25 +75363,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 66 66 35 30 62 33 66 61 64 66 35 37 66 34 62 39 35 31", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 66 62 61 32 65 30 66 35 32 37 39 33 65 39 66 34 35 38", "module": "__init__", - "msecs": 582.0870399475098, + "msecs": 133.4059238433838, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2237.497091293335, - "thread": 140379281274624, + "relativeCreated": 2361.9048595428467, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 66 66 35 30 62 33 66 61 64 66 35 37 66 34 62 39 35 31" + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 66 62 61 32 65 30 66 35 32 37 39 33 65 39 66 34 35 38" ], - "asctime": "2021-01-11 11:37:10,582", - "created": 1610361430.58237, + "asctime": "2021-01-14 00:25:53,133", + "created": 1610580353.133558, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75442,16 +75389,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 66 66 35 30 62 33 66 61 64 66 35 37 66 34 62 39 35 31", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 66 62 61 32 65 30 66 35 32 37 39 33 65 39 66 34 35 38", "module": "__init__", - "msecs": 582.3700428009033, + "msecs": 133.5580348968506, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2237.7800941467285, - "thread": 140379281274624, + "relativeCreated": 2362.0569705963135, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75459,8 +75406,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,582", - "created": 1610361430.582512, + "asctime": "2021-01-14 00:25:53,133", + "created": 1610580353.133645, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75470,14 +75417,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 582.5119018554688, + "msecs": 133.64505767822266, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2237.921953201294, - "thread": 140379281274624, + "relativeCreated": 2362.1439933776855, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75486,8 +75433,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,582", - "created": 1610361430.58264, + "asctime": "2021-01-14 00:25:53,133", + "created": 1610580353.133721, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75497,14 +75444,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 582.6399326324463, + "msecs": 133.72111320495605, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.0499839782715, - "thread": 140379281274624, + "relativeCreated": 2362.220048904419, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75512,8 +75459,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,582", - "created": 1610361430.582804, + "asctime": "2021-01-14 00:25:53,133", + "created": 1610580353.133814, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75523,14 +75470,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 582.8039646148682, + "msecs": 133.81409645080566, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.2140159606934, - "thread": 140379281274624, + "relativeCreated": 2362.3130321502686, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75539,8 +75486,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,582", - "created": 1610361430.582887, + "asctime": "2021-01-14 00:25:53,133", + "created": 1610580353.133884, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75550,14 +75497,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 582.8869342803955, + "msecs": 133.88395309448242, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.2969856262207, - "thread": 140379281274624, + "relativeCreated": 2362.3828887939453, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75565,8 +75512,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,582", - "created": 1610361430.582979, + "asctime": "2021-01-14 00:25:53,133", + "created": 1610580353.133983, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75576,14 +75523,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 582.9789638519287, + "msecs": 133.98289680480957, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.389015197754, - "thread": 140379281274624, + "relativeCreated": 2362.4818325042725, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75592,8 +75539,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,583", - "created": 1610361430.583044, + "asctime": "2021-01-14 00:25:53,134", + "created": 1610580353.134057, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75603,14 +75550,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 583.0440521240234, + "msecs": 134.05704498291016, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.4541034698486, - "thread": 140379281274624, + "relativeCreated": 2362.555980682373, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75618,8 +75565,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,583", - "created": 1610361430.583134, + "asctime": "2021-01-14 00:25:53,134", + "created": 1610580353.134151, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75629,14 +75576,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 583.1339359283447, + "msecs": 134.15098190307617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.54398727417, - "thread": 140379281274624, + "relativeCreated": 2362.649917602539, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75645,8 +75592,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,583", - "created": 1610361430.583204, + "asctime": "2021-01-14 00:25:53,134", + "created": 1610580353.134226, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75656,23 +75603,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 583.2040309906006, + "msecs": 134.22608375549316, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.614082336426, - "thread": 140379281274624, + "relativeCreated": 2362.725019454956, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 64 62 65 30 63 39 37 65 33 38 34 66 64 31 39 30 39 66 39 61 34 34 64 65 34 36 36 65 31 65 37 64 38 65 63 33 66 64 30 33 65 63 63 63 37 39 64 63 62 32 33 61 39 37 61 37 63 31 63 64 31 63 33 36" + "(64): 38 32 34 62 61 30 63 39 30 36 34 65 36 33 39 35 63 36 64 36 61 34 31 65 38 32 33 39 36 39 61 66 65 64 63 31 38 37 39 61 31 34 32 36 37 33 63 61 36 33 31 32 32 31 30 36 66 35 30 38 65 32 64 32" ], - "asctime": "2021-01-11 11:37:10,583", - "created": 1610361430.583401, + "asctime": "2021-01-14 00:25:53,134", + "created": 1610580353.134434, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75680,25 +75627,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 64 62 65 30 63 39 37 65 33 38 34 66 64 31 39 30 39 66 39 61 34 34 64 65 34 36 36 65 31 65 37 64 38 65 63 33 66 64 30 33 65 63 63 63 37 39 64 63 62 32 33 61 39 37 61 37 63 31 63 64 31 63 33 36", + "message": "comm-client: TX -> (64): 38 32 34 62 61 30 63 39 30 36 34 65 36 33 39 35 63 36 64 36 61 34 31 65 38 32 33 39 36 39 61 66 65 64 63 31 38 37 39 61 31 34 32 36 37 33 63 61 36 33 31 32 32 31 30 36 66 35 30 38 65 32 64 32", "module": "__init__", - "msecs": 583.4009647369385, + "msecs": 134.43398475646973, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.8110160827637, - "thread": 140379281274624, + "relativeCreated": 2362.9329204559326, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 64 62 65 30 63 39 37 65 33 38 34 66 64 31 39 30 39 66 39 61 34 34 64 65 34 36 36 65 31 65 37 64 38 65 63 33 66 64 30 33 65 63 63 63 37 39 64 63 62 32 33 61 39 37 61 37 63 31 63 64 31 63 33 36" + "(64): 38 32 34 62 61 30 63 39 30 36 34 65 36 33 39 35 63 36 64 36 61 34 31 65 38 32 33 39 36 39 61 66 65 64 63 31 38 37 39 61 31 34 32 36 37 33 63 61 36 33 31 32 32 31 30 36 66 35 30 38 65 32 64 32" ], - "asctime": "2021-01-11 11:37:10,583", - "created": 1610361430.583544, + "asctime": "2021-01-14 00:25:53,134", + "created": 1610580353.134559, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75706,25 +75653,25 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 64 62 65 30 63 39 37 65 33 38 34 66 64 31 39 30 39 66 39 61 34 34 64 65 34 36 36 65 31 65 37 64 38 65 63 33 66 64 30 33 65 63 63 63 37 39 64 63 62 32 33 61 39 37 61 37 63 31 63 64 31 63 33 36", + "message": "comm-server: RX <- (64): 38 32 34 62 61 30 63 39 30 36 34 65 36 33 39 35 63 36 64 36 61 34 31 65 38 32 33 39 36 39 61 66 65 64 63 31 38 37 39 61 31 34 32 36 37 33 63 61 36 33 31 32 32 31 30 36 66 35 30 38 65 32 64 32", "module": "__init__", - "msecs": 583.5440158843994, + "msecs": 134.55891609191895, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2238.9540672302246, - "thread": 140379281274624, + "relativeCreated": 2363.057851791382, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 33 32 30 35 31 64 32 33 65 62 66 36 32 34 32 61 35 33 30 66 62 66 63 66 37 61 30 66 37 30 39 65 34 38 30 32 38 64 62 37 34 64 30 34 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4b f6" + "(64): 36 38 66 61 30 64 39 32 65 61 34 39 65 38 63 37 38 62 35 39 61 33 37 36 33 32 63 37 35 65 30 34 31 65 33 34 35 35 37 31 38 33 37 32 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 54 a7" ], - "asctime": "2021-01-11 11:37:10,583", - "created": 1610361430.583819, + "asctime": "2021-01-14 00:25:53,134", + "created": 1610580353.134772, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75732,25 +75679,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 33 32 30 35 31 64 32 33 65 62 66 36 32 34 32 61 35 33 30 66 62 66 63 66 37 61 30 66 37 30 39 65 34 38 30 32 38 64 62 37 34 64 30 34 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4b f6", + "message": "comm-client: TX -> (64): 36 38 66 61 30 64 39 32 65 61 34 39 65 38 63 37 38 62 35 39 61 33 37 36 33 32 63 37 35 65 30 34 31 65 33 34 35 35 37 31 38 33 37 32 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 54 a7", "module": "__init__", - "msecs": 583.8189125061035, + "msecs": 134.77206230163574, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2239.2289638519287, - "thread": 140379281274624, + "relativeCreated": 2363.2709980010986, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 33 32 30 35 31 64 32 33 65 62 66 36 32 34 32 61 35 33 30 66 62 66 63 66 37 61 30 66 37 30 39 65 34 38 30 32 38 64 62 37 34 64 30 34 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4b f6" + "(64): 36 38 66 61 30 64 39 32 65 61 34 39 65 38 63 37 38 62 35 39 61 33 37 36 33 32 63 37 35 65 30 34 31 65 33 34 35 35 37 31 38 33 37 32 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 54 a7" ], - "asctime": "2021-01-11 11:37:10,583", - "created": 1610361430.583971, + "asctime": "2021-01-14 00:25:53,134", + "created": 1610580353.134891, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75758,16 +75705,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 33 32 30 35 31 64 32 33 65 62 66 36 32 34 32 61 35 33 30 66 62 66 63 66 37 61 30 66 37 30 39 65 34 38 30 32 38 64 62 37 34 64 30 34 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 4b f6", + "message": "comm-server: RX <- (64): 36 38 66 61 30 64 39 32 65 61 34 39 65 38 63 37 38 62 35 39 61 33 37 36 33 32 63 37 35 65 30 34 31 65 33 34 35 35 37 31 38 33 37 32 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 54 a7", "module": "__init__", - "msecs": 583.9710235595703, + "msecs": 134.89103317260742, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2239.3810749053955, - "thread": 140379281274624, + "relativeCreated": 2363.3899688720703, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75775,8 +75722,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,584", - "created": 1610361430.584146, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135022, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75786,14 +75733,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 584.1460227966309, + "msecs": 135.02192497253418, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2239.556074142456, - "thread": 140379281274624, + "relativeCreated": 2363.520860671997, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75802,8 +75749,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,584", - "created": 1610361430.584212, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135083, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75813,23 +75760,23 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 584.212064743042, + "msecs": 135.08296012878418, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2239.622116088867, - "thread": 140379281274624, + "relativeCreated": 2363.581895828247, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(4): 53 f4 3a 3e" + "(4): a3 5f 3a 3e" ], - "asctime": "2021-01-11 11:37:10,584", - "created": 1610361430.58433, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135165, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75837,25 +75784,25 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 53 f4 3a 3e", + "message": "comm-client: TX -> (4): a3 5f 3a 3e", "module": "__init__", - "msecs": 584.3300819396973, + "msecs": 135.16497611999512, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2239.7401332855225, - "thread": 140379281274624, + "relativeCreated": 2363.663911819458, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(4): 53 f4 3a 3e" + "(4): a3 5f 3a 3e" ], - "asctime": "2021-01-11 11:37:10,584", - "created": 1610361430.58442, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135228, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75863,16 +75810,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 53 f4 3a 3e", + "message": "comm-server: RX <- (4): a3 5f 3a 3e", "module": "__init__", - "msecs": 584.4199657440186, + "msecs": 135.22791862487793, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2239.8300170898438, - "thread": 140379281274624, + "relativeCreated": 2363.726854324341, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75880,8 +75827,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,584", - "created": 1610361430.584542, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135287, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75891,14 +75838,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 584.5420360565186, + "msecs": 135.28704643249512, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2239.9520874023438, - "thread": 140379281274624, + "relativeCreated": 2363.785982131958, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75907,8 +75854,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,584", - "created": 1610361430.584649, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135341, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75918,23 +75865,23 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 584.6490859985352, + "msecs": 135.34092903137207, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2240.0591373443604, - "thread": 140379281274624, + "relativeCreated": 2363.839864730835, + "thread": 140019650066176, "threadName": "Thread-5" }, { "args": [ "STP:", - "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 33 66 66 35 30 62 33 66 61 64 66 35 37 66 34 62 39 35 31 64 62 65 30 63 39 37 65 33 38 34 66 64 31 39 30 39 66 39 61 34 34 64 65 34 36 36 65 31 65 37 64 38 65 63 33 66 64 30 33 65 63 63 63 37 39 64 63 62 32 33 61 39 37 61 37 63 31 63 64 31 63 33 36 33 32 30 35 31 64 32 33 65 62 66 36 32 34 32 61 35 33 30 66 62 66 63 66 37 61 30 66 37 30 39 65 34 38 30 32 38 64 62 37 34 64 30 34 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 4b f6 53 f4" + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 66 62 61 32 65 30 66 35 32 37 39 33 65 39 66 34 35 38 38 32 34 62 61 30 63 39 30 36 34 65 36 33 39 35 63 36 64 36 61 34 31 65 38 32 33 39 36 39 61 66 65 64 63 31 38 37 39 61 31 34 32 36 37 33 63 61 36 33 31 32 32 31 30 36 66 35 30 38 65 32 64 32 36 38 66 61 30 64 39 32 65 61 34 39 65 38 63 37 38 62 35 39 61 33 37 36 33 32 63 37 35 65 30 34 31 65 33 34 35 35 37 31 38 33 37 32 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 54 a7 a3 5f" ], - "asctime": "2021-01-11 11:37:10,585", - "created": 1610361430.585056, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135577, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -75942,16 +75889,16 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 33 66 66 35 30 62 33 66 61 64 66 35 37 66 34 62 39 35 31 64 62 65 30 63 39 37 65 33 38 34 66 64 31 39 30 39 66 39 61 34 34 64 65 34 36 36 65 31 65 37 64 38 65 63 33 66 64 30 33 65 63 63 63 37 39 64 63 62 32 33 61 39 37 61 37 63 31 63 64 31 63 33 36 33 32 30 35 31 64 32 33 65 62 66 36 32 34 32 61 35 33 30 66 62 66 63 66 37 61 30 66 37 30 39 65 34 38 30 32 38 64 62 37 34 64 30 34 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 4b f6 53 f4", + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 66 62 61 32 65 30 66 35 32 37 39 33 65 39 66 34 35 38 38 32 34 62 61 30 63 39 30 36 34 65 36 33 39 35 63 36 64 36 61 34 31 65 38 32 33 39 36 39 61 66 65 64 63 31 38 37 39 61 31 34 32 36 37 33 63 61 36 33 31 32 32 31 30 36 66 35 30 38 65 32 64 32 36 38 66 61 30 64 39 32 65 61 34 39 65 38 63 37 38 62 35 39 61 33 37 36 33 32 63 37 35 65 30 34 31 65 33 34 35 35 37 31 38 33 37 32 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 54 a7 a3 5f", "module": "stp", - "msecs": 585.0560665130615, + "msecs": 135.57696342468262, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2240.4661178588867, - "thread": 140379281274624, + "relativeCreated": 2364.0758991241455, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75960,27 +75907,27 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "u'3ff50b3fadf57f4b951dbe0c97e384fd1909f9a44de466e1e7d8ec3fd03eccc79dcb23a97a7c1cd1c3632051d23ebf6242a530fbfcf7a0f709e48028db74d04b'" + "u'4fba2e0f52793e9f458824ba0c9064e6395c6d6a41e823969afedc1879a142673ca63122106f508e2d268fa0d92ea49e8c78b59a37632c75e041e34557183725'" ], - "asctime": "2021-01-11 11:37:10,585", - "created": 1610361430.58528, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135715, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'3ff50b3fadf57f4b951dbe0c97e384fd1909f9a44de466e1e7d8ec3fd03eccc79dcb23a97a7c1cd1c3632051d23ebf6242a530fbfcf7a0f709e48028db74d04b'\"", + "lineno": 457, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'4fba2e0f52793e9f458824ba0c9064e6395c6d6a41e823969afedc1879a142673ca63122106f508e2d268fa0d92ea49e8c78b59a37632c75e041e34557183725'\"", "module": "__init__", - "msecs": 585.2799415588379, + "msecs": 135.71500778198242, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2240.689992904663, - "thread": 140379281274624, + "relativeCreated": 2364.2139434814453, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -75988,25 +75935,25 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:10,585", - "created": 1610361430.585384, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135789, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 585.3838920593262, + "msecs": 135.7889175415039, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2240.7939434051514, - "thread": 140379281274624, + "relativeCreated": 2364.287853240967, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -76017,25 +75964,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:10,585", - "created": 1610361430.585497, + "asctime": "2021-01-14 00:25:53,135", + "created": 1610580353.135893, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 585.4969024658203, + "msecs": 135.8931064605713, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2240.9069538116455, - "thread": 140379281274624, + "relativeCreated": 2364.392042160034, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -76043,8 +75990,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:10,590", - "created": 1610361430.590895, + "asctime": "2021-01-14 00:25:53,136", + "created": 1610580353.136558, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -76054,14 +76001,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 590.8949375152588, + "msecs": 136.55805587768555, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.304988861084, - "thread": 140379272881920, + "relativeCreated": 2365.0569915771484, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76069,8 +76016,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591055, + "asctime": "2021-01-14 00:25:53,136", + "created": 1610580353.136746, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -76080,14 +76027,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", "module": "__init__", - "msecs": 591.0549163818359, + "msecs": 136.74592971801758, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.464967727661, - "thread": 140379272881920, + "relativeCreated": 2365.2448654174805, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76095,8 +76042,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591122, + "asctime": "2021-01-14 00:25:53,136", + "created": 1610580353.13685, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76106,14 +76053,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 591.1219120025635, + "msecs": 136.85011863708496, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.5319633483887, - "thread": 140379272881920, + "relativeCreated": 2365.349054336548, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76122,8 +76069,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591177, + "asctime": "2021-01-14 00:25:53,136", + "created": 1610580353.136947, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76133,14 +76080,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 591.1769866943359, + "msecs": 136.9469165802002, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.587038040161, - "thread": 140379272881920, + "relativeCreated": 2365.445852279663, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76148,8 +76095,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591243, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.137071, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76159,14 +76106,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 591.2430286407471, + "msecs": 137.070894241333, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.6530799865723, - "thread": 140379272881920, + "relativeCreated": 2365.569829940796, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76175,8 +76122,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591293, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.137195, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76186,14 +76133,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 591.2930965423584, + "msecs": 137.19511032104492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.7031478881836, - "thread": 140379272881920, + "relativeCreated": 2365.694046020508, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76201,8 +76148,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591368, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.137331, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76212,14 +76159,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 591.3679599761963, + "msecs": 137.3310089111328, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.7780113220215, - "thread": 140379272881920, + "relativeCreated": 2365.8299446105957, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76228,8 +76175,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591417, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.137446, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76239,14 +76186,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 591.4170742034912, + "msecs": 137.44592666625977, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.8271255493164, - "thread": 140379272881920, + "relativeCreated": 2365.9448623657227, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76254,8 +76201,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591476, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.137568, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76265,14 +76212,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 591.4759635925293, + "msecs": 137.56799697875977, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.8860149383545, - "thread": 140379272881920, + "relativeCreated": 2366.0669326782227, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76281,8 +76228,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591523, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.13766, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76292,14 +76239,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 591.5229320526123, + "msecs": 137.66002655029297, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.9329833984375, - "thread": 140379272881920, + "relativeCreated": 2366.158962249756, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76307,8 +76254,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591589, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.137791, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76318,14 +76265,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 591.5889739990234, + "msecs": 137.79091835021973, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2246.9990253448486, - "thread": 140379272881920, + "relativeCreated": 2366.2898540496826, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76334,8 +76281,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.59164, + "asctime": "2021-01-14 00:25:53,137", + "created": 1610580353.137888, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76345,14 +76292,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 591.6399955749512, + "msecs": 137.88795471191406, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.0500469207764, - "thread": 140379272881920, + "relativeCreated": 2366.386890411377, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76360,8 +76307,8 @@ "comm-server:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591715, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138022, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -76371,14 +76318,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 591.7150974273682, + "msecs": 138.02194595336914, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.1251487731934, - "thread": 140379272881920, + "relativeCreated": 2366.520881652832, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76386,8 +76333,8 @@ "comm-client:", "(6): 11 d3 26 78 3a 3e" ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.59178, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138111, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -76397,14 +76344,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", "module": "__init__", - "msecs": 591.7799472808838, + "msecs": 138.11111450195312, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.189998626709, - "thread": 140379272881920, + "relativeCreated": 2366.610050201416, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76412,8 +76359,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591828, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138195, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76423,14 +76370,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 591.8281078338623, + "msecs": 138.19503784179688, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.2381591796875, - "thread": 140379272881920, + "relativeCreated": 2366.6939735412598, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76439,8 +76386,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591875, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138268, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76450,14 +76397,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 591.8750762939453, + "msecs": 138.26799392700195, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.2851276397705, - "thread": 140379272881920, + "relativeCreated": 2366.766929626465, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76465,8 +76412,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" ], - "asctime": "2021-01-11 11:37:10,591", - "created": 1610361430.591964, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138426, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -76476,14 +76423,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", "module": "stp", - "msecs": 591.9640064239502, + "msecs": 138.4260654449463, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.3740577697754, - "thread": 140379272881920, + "relativeCreated": 2366.925001144409, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76494,25 +76441,25 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:10,592", - "created": 1610361430.592072, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 592.0720100402832, + "msecs": 138.5939121246338, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.4820613861084, - "thread": 140379272881920, + "relativeCreated": 2367.0928478240967, + "thread": 140019641673472, "threadName": "Thread-6" }, { @@ -76520,71 +76467,71 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:10,592", - "created": 1610361430.592129, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138692, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 592.1289920806885, + "msecs": 138.69190216064453, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.5390434265137, - "thread": 140379272881920, + "relativeCreated": 2367.1908378601074, + "thread": 140019641673472, "threadName": "Thread-6" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:10,592", - "created": 1610361430.59218, + "asctime": "2021-01-14 00:25:53,138", + "created": 1610580353.138775, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 592.1800136566162, + "msecs": 138.77511024475098, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2247.5900650024414, - "thread": 140379272881920, + "relativeCreated": 2367.274045944214, + "thread": 140019641673472, "threadName": "Thread-6" } ], - "msecs": 657.628059387207, + "msecs": 220.7050323486328, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2313.038110733032, - "thread": 140379336402752, + "relativeCreated": 2449.2039680480957, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.06544804573059082 + "time_consumption": 0.08192992210388184 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:10,658", - "created": 1610361430.658656, + "asctime": "2021-01-14 00:25:53,221", + "created": 1610580353.221956, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76601,8 +76548,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,658", - "created": 1610361430.658268, + "asctime": "2021-01-14 00:25:53,221", + "created": 1610580353.221485, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76612,14 +76559,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): True ()", "module": "test", - "msecs": 658.2679748535156, + "msecs": 221.48489952087402, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2313.678026199341, - "thread": 140379336402752, + "relativeCreated": 2449.983835220337, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -76628,8 +76575,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,658", - "created": 1610361430.658475, + "asctime": "2021-01-14 00:25:53,221", + "created": 1610580353.221735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76639,35 +76586,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = True ()", "module": "test", - "msecs": 658.4749221801758, + "msecs": 221.73500061035156, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2313.884973526001, - "thread": 140379336402752, + "relativeCreated": 2450.2339363098145, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 658.6558818817139, + "msecs": 221.9560146331787, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2314.065933227539, - "thread": 140379336402752, + "relativeCreated": 2450.4549503326416, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018095970153808594 + "time_consumption": 0.00022101402282714844 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:10,659", - "created": 1610361430.659269, + "asctime": "2021-01-14 00:25:53,222", + "created": 1610580353.222733, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76684,8 +76631,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,658", - "created": 1610361430.658943, + "asctime": "2021-01-14 00:25:53,222", + "created": 1610580353.222334, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76695,14 +76642,14 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 658.9429378509521, + "msecs": 222.3339080810547, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2314.3529891967773, - "thread": 140379336402752, + "relativeCreated": 2450.8328437805176, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -76711,8 +76658,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,659", - "created": 1610361430.65911, + "asctime": "2021-01-14 00:25:53,222", + "created": 1610580353.222534, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76722,35 +76669,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 659.1100692749023, + "msecs": 222.5339412689209, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2314.5201206207275, - "thread": 140379336402752, + "relativeCreated": 2451.032876968384, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 659.2690944671631, + "msecs": 222.7330207824707, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2314.6791458129883, - "thread": 140379336402752, + "relativeCreated": 2451.2319564819336, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001590251922607422 + "time_consumption": 0.0001990795135498047 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:10,659", - "created": 1610361430.659851, + "asctime": "2021-01-14 00:25:53,223", + "created": 1610580353.223556, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76767,8 +76714,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,659", - "created": 1610361430.659538, + "asctime": "2021-01-14 00:25:53,223", + "created": 1610580353.223093, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76778,14 +76725,14 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 659.5380306243896, + "msecs": 223.09303283691406, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2314.948081970215, - "thread": 140379336402752, + "relativeCreated": 2451.591968536377, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -76794,8 +76741,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:10,659", - "created": 1610361430.659697, + "asctime": "2021-01-14 00:25:53,223", + "created": 1610580353.223325, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -76805,32 +76752,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 659.6970558166504, + "msecs": 223.32501411437988, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2315.1071071624756, - "thread": 140379336402752, + "relativeCreated": 2451.823949813843, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 659.85107421875, + "msecs": 223.5560417175293, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2315.261125564575, - "thread": 140379336402752, + "relativeCreated": 2452.054977416992, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.00023102760314941406 }, { "args": [], - "asctime": "2021-01-11 11:37:10,660", - "created": 1610361430.660476, + "asctime": "2021-01-14 00:25:53,224", + "created": 1610580353.22458, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -76845,68 +76792,68 @@ "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:10,660", - "created": 1610361430.660102, + "asctime": "2021-01-14 00:25:53,223", + "created": 1610580353.223926, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 660.1018905639648, + "msecs": 223.92606735229492, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2315.51194190979, - "thread": 140379336402752, + "relativeCreated": 2452.425003051758, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:10,660", - "created": 1610361430.660299, + "asctime": "2021-01-14 00:25:53,224", + "created": 1610580353.224202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 660.2990627288818, + "msecs": 224.20191764831543, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2315.709114074707, - "thread": 140379336402752, + "relativeCreated": 2452.7008533477783, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 660.4759693145752, + "msecs": 224.5800495147705, "msg": "Corrupting the authentification mechanism", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2315.8860206604004, - "thread": 140379336402752, + "relativeCreated": 2453.0789852142334, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00017690658569335938 + "time_consumption": 0.0003781318664550781 }, { "args": [], - "asctime": "2021-01-11 11:37:11,062", - "created": 1610361431.062468, + "asctime": "2021-01-14 00:25:53,626", + "created": 1610580353.626013, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -76925,25 +76872,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,660", - "created": 1610361430.660875, + "asctime": "2021-01-14 00:25:53,224", + "created": 1610580353.224822, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 660.8750820159912, + "msecs": 224.8220443725586, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2316.2851333618164, - "thread": 140379336402752, + "relativeCreated": 2453.3209800720215, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -76951,8 +76898,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,686", - "created": 1610361430.68617, + "asctime": "2021-01-14 00:25:53,236", + "created": 1610580353.236411, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -76962,14 +76909,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 686.1701011657715, + "msecs": 236.41109466552734, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2341.5801525115967, - "thread": 140379281274624, + "relativeCreated": 2464.9100303649902, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -76977,8 +76924,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:10,686", - "created": 1610361430.686714, + "asctime": "2021-01-14 00:25:53,236", + "created": 1610580353.236809, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -76988,14 +76935,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 686.7139339447021, + "msecs": 236.80901527404785, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2342.1239852905273, - "thread": 140379281274624, + "relativeCreated": 2465.3079509735107, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77003,8 +76950,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,686", - "created": 1610361430.686944, + "asctime": "2021-01-14 00:25:53,236", + "created": 1610580353.236993, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77014,14 +76961,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 686.9440078735352, + "msecs": 236.99307441711426, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2342.3540592193604, - "thread": 140379281274624, + "relativeCreated": 2465.492010116577, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77030,8 +76977,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:10,687", - "created": 1610361430.687141, + "asctime": "2021-01-14 00:25:53,237", + "created": 1610580353.237217, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77041,14 +76988,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 687.140941619873, + "msecs": 237.21694946289062, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2342.5509929656982, - "thread": 140379281274624, + "relativeCreated": 2465.7158851623535, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77056,8 +77003,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,687", - "created": 1610361430.687387, + "asctime": "2021-01-14 00:25:53,237", + "created": 1610580353.237547, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77067,14 +77014,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 687.3869895935059, + "msecs": 237.5469207763672, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2342.797040939331, - "thread": 140379281274624, + "relativeCreated": 2466.04585647583, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77083,8 +77030,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,687", - "created": 1610361430.687564, + "asctime": "2021-01-14 00:25:53,237", + "created": 1610580353.237817, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77094,14 +77041,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 687.5638961791992, + "msecs": 237.81704902648926, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2342.9739475250244, - "thread": 140379281274624, + "relativeCreated": 2466.315984725952, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77109,8 +77056,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,687", - "created": 1610361430.687838, + "asctime": "2021-01-14 00:25:53,238", + "created": 1610580353.238045, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77120,14 +77067,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 687.838077545166, + "msecs": 238.04497718811035, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2343.248128890991, - "thread": 140379281274624, + "relativeCreated": 2466.5439128875732, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77136,8 +77083,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,687", - "created": 1610361430.687981, + "asctime": "2021-01-14 00:25:53,238", + "created": 1610580353.238207, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77147,14 +77094,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 687.9808902740479, + "msecs": 238.2071018218994, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2343.390941619873, - "thread": 140379281274624, + "relativeCreated": 2466.7060375213623, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77162,8 +77109,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,688", - "created": 1610361430.688153, + "asctime": "2021-01-14 00:25:53,238", + "created": 1610580353.238406, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77173,14 +77120,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 688.1530284881592, + "msecs": 238.40594291687012, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2343.5630798339844, - "thread": 140379281274624, + "relativeCreated": 2466.904878616333, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77189,8 +77136,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,688", - "created": 1610361430.688299, + "asctime": "2021-01-14 00:25:53,238", + "created": 1610580353.238561, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77200,14 +77147,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 688.2989406585693, + "msecs": 238.56091499328613, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2343.7089920043945, - "thread": 140379281274624, + "relativeCreated": 2467.059850692749, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77215,8 +77162,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,688", - "created": 1610361430.688485, + "asctime": "2021-01-14 00:25:53,238", + "created": 1610580353.238789, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77226,14 +77173,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 688.4849071502686, + "msecs": 238.78908157348633, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2343.8949584960938, - "thread": 140379281274624, + "relativeCreated": 2467.288017272949, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77242,8 +77189,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:10,688", - "created": 1610361430.688618, + "asctime": "2021-01-14 00:25:53,238", + "created": 1610580353.238942, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77253,14 +77200,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 688.6179447174072, + "msecs": 238.94190788269043, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2344.0279960632324, - "thread": 140379281274624, + "relativeCreated": 2467.4408435821533, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77268,8 +77215,8 @@ "comm-client:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:10,688", - "created": 1610361430.688851, + "asctime": "2021-01-14 00:25:53,239", + "created": 1610580353.239226, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -77279,14 +77226,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 688.8511180877686, + "msecs": 239.2261028289795, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2344.2611694335938, - "thread": 140379281274624, + "relativeCreated": 2467.7250385284424, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77294,8 +77241,8 @@ "comm-server:", "(6): 10 4d cd 55 3a 3e" ], - "asctime": "2021-01-11 11:37:10,689", - "created": 1610361430.689018, + "asctime": "2021-01-14 00:25:53,239", + "created": 1610580353.239457, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -77305,14 +77252,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", "module": "__init__", - "msecs": 689.0180110931396, + "msecs": 239.4568920135498, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2344.428062438965, - "thread": 140379281274624, + "relativeCreated": 2467.9558277130127, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77320,8 +77267,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:10,689", - "created": 1610361430.689193, + "asctime": "2021-01-14 00:25:53,239", + "created": 1610580353.239676, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77331,14 +77278,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 689.1930103302002, + "msecs": 239.67599868774414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2344.6030616760254, - "thread": 140379281274624, + "relativeCreated": 2468.174934387207, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77347,8 +77294,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:10,689", - "created": 1610361430.68933, + "asctime": "2021-01-14 00:25:53,239", + "created": 1610580353.239881, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77358,14 +77305,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 689.3301010131836, + "msecs": 239.88103866577148, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2344.740152359009, - "thread": 140379281274624, + "relativeCreated": 2468.3799743652344, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77373,8 +77320,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" ], - "asctime": "2021-01-11 11:37:10,689", - "created": 1610361430.689637, + "asctime": "2021-01-14 00:25:53,240", + "created": 1610580353.240301, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -77384,14 +77331,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", "module": "stp", - "msecs": 689.6369457244873, + "msecs": 240.30089378356934, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2345.0469970703125, - "thread": 140379281274624, + "relativeCreated": 2468.799829483032, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77402,25 +77349,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:10,690", - "created": 1610361430.690003, + "asctime": "2021-01-14 00:25:53,240", + "created": 1610580353.240744, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 690.0029182434082, + "msecs": 240.74411392211914, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2345.4129695892334, - "thread": 140379281274624, + "relativeCreated": 2469.243049621582, + "thread": 140019650066176, "threadName": "Thread-5" }, { @@ -77428,46 +77375,46 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:10,690", - "created": 1610361430.690193, + "asctime": "2021-01-14 00:25:53,241", + "created": 1610580353.241012, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 690.1929378509521, + "msecs": 241.0120964050293, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2345.6029891967773, - "thread": 140379281274624, + "relativeCreated": 2469.511032104492, + "thread": 140019650066176, "threadName": "Thread-5" } ], - "msecs": 62.46805191040039, + "msecs": 626.0130405426025, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2717.8781032562256, - "thread": 140379336402752, + "relativeCreated": 2854.5119762420654, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.37227511405944824 + "time_consumption": 0.38500094413757324 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:11,063", - "created": 1610361431.063485, + "asctime": "2021-01-14 00:25:53,627", + "created": 1610580353.627313, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77484,8 +77431,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,063", - "created": 1610361431.063005, + "asctime": "2021-01-14 00:25:53,626", + "created": 1610580353.626658, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77495,14 +77442,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 63.00497055053711, + "msecs": 626.6579627990723, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2718.4150218963623, - "thread": 140379336402752, + "relativeCreated": 2855.156898498535, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77511,8 +77458,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,063", - "created": 1610361431.063246, + "asctime": "2021-01-14 00:25:53,626", + "created": 1610580353.626989, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77522,35 +77469,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 63.24601173400879, + "msecs": 626.9888877868652, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2718.656063079834, - "thread": 140379336402752, + "relativeCreated": 2855.487823486328, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 63.484907150268555, + "msecs": 627.3128986358643, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2718.8949584960938, - "thread": 140379336402752, + "relativeCreated": 2855.811834335327, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00023889541625976562 + "time_consumption": 0.00032401084899902344 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:11,064", - "created": 1610361431.064238, + "asctime": "2021-01-14 00:25:53,627", + "created": 1610580353.627939, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77567,8 +77514,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,063", - "created": 1610361431.063901, + "asctime": "2021-01-14 00:25:53,627", + "created": 1610580353.627607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77578,14 +77525,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 63.90094757080078, + "msecs": 627.6071071624756, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2719.310998916626, - "thread": 140379336402752, + "relativeCreated": 2856.1060428619385, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77594,8 +77541,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,064", - "created": 1610361431.064078, + "asctime": "2021-01-14 00:25:53,627", + "created": 1610580353.627777, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77605,35 +77552,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 64.07809257507324, + "msecs": 627.777099609375, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2719.4881439208984, - "thread": 140379336402752, + "relativeCreated": 2856.276035308838, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 64.23807144165039, + "msecs": 627.938985824585, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2719.6481227874756, - "thread": 140379336402752, + "relativeCreated": 2856.437921524048, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 0.00016188621520996094 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:11,064", - "created": 1610361431.064835, + "asctime": "2021-01-14 00:25:53,628", + "created": 1610580353.628512, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77650,8 +77597,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,064", - "created": 1610361431.064495, + "asctime": "2021-01-14 00:25:53,628", + "created": 1610580353.628197, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77661,14 +77608,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 64.49508666992188, + "msecs": 628.1969547271729, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2719.905138015747, - "thread": 140379336402752, + "relativeCreated": 2856.6958904266357, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77677,8 +77624,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:11,064", - "created": 1610361431.06465, + "asctime": "2021-01-14 00:25:53,628", + "created": 1610580353.628355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77688,39 +77635,39 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 64.65005874633789, + "msecs": 628.3550262451172, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2720.060110092163, - "thread": 140379336402752, + "relativeCreated": 2856.85396194458, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 64.8350715637207, + "msecs": 628.511905670166, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 2720.245122909546, - "thread": 140379336402752, + "relativeCreated": 2857.010841369629, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 + "time_consumption": 0.00015687942504882812 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.9684760570526123, - "time_finished": "2021-01-11 11:37:11,064", - "time_start": "2021-01-11 11:37:10,096" + "time_consumption": 1.0747928619384766, + "time_finished": "2021-01-14 00:25:53,628", + "time_start": "2021-01-14 00:25:52,553" }, "_k-Q4EE0oEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:19,991", - "created": 1610361439.991665, + "asctime": "2021-01-14 00:26:02,553", + "created": 1610580362.55365, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -77731,18 +77678,18 @@ "message": "_k-Q4EE0oEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 991.6648864746094, + "msecs": 553.64990234375, "msg": "_k-Q4EE0oEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11647.074937820435, + "relativeCreated": 11782.148838043213, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.003106, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562711, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -77757,8 +77704,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:19,992", - "created": 1610361439.992985, + "asctime": "2021-01-14 00:26:02,554", + "created": 1610580362.554884, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -77768,22 +77715,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 992.9850101470947, + "msecs": 554.8839569091797, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11648.39506149292, - "thread": 140379336402752, + "relativeCreated": 11783.382892608643, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,994", - "created": 1610361439.994198, + "asctime": "2021-01-14 00:26:02,556", + "created": 1610580362.55617, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -77793,22 +77740,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 994.1980838775635, + "msecs": 556.1699867248535, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11649.608135223389, - "thread": 140379336402752, + "relativeCreated": 11784.668922424316, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:19,994", - "created": 1610361439.994481, + "asctime": "2021-01-14 00:26:02,556", + "created": 1610580362.556557, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -77818,39 +77765,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 994.481086730957, + "msecs": 556.5569400787354, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11649.891138076782, - "thread": 140379336402752, + "relativeCreated": 11785.055875778198, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:19,995", - "created": 1610361439.995088, + "asctime": "2021-01-14 00:26:02,557", + "created": 1610580362.557016, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 995.0881004333496, + "msecs": 557.0158958435059, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11650.498151779175, - "thread": 140379336402752, + "relativeCreated": 11785.514831542969, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77859,25 +77806,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:19,995", - "created": 1610361439.995403, + "asctime": "2021-01-14 00:26:02,557", + "created": 1610580362.557297, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 995.4030513763428, + "msecs": 557.2969913482666, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11650.813102722168, - "thread": 140379336402752, + "relativeCreated": 11785.79592704773, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77885,25 +77832,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:19,995", - "created": 1610361439.995716, + "asctime": "2021-01-14 00:26:02,557", + "created": 1610580362.55761, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 995.7160949707031, + "msecs": 557.610034942627, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11651.126146316528, - "thread": 140379336402752, + "relativeCreated": 11786.10897064209, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77911,25 +77858,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:19,995", - "created": 1610361439.995941, + "asctime": "2021-01-14 00:26:02,557", + "created": 1610580362.55784, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 995.9409236907959, + "msecs": 557.84010887146, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11651.350975036621, - "thread": 140379336402752, + "relativeCreated": 11786.339044570923, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77937,25 +77884,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:19,996", - "created": 1610361439.996159, + "asctime": "2021-01-14 00:26:02,558", + "created": 1610580362.558067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 996.1590766906738, + "msecs": 558.0670833587646, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11651.569128036499, - "thread": 140379336402752, + "relativeCreated": 11786.566019058228, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77963,25 +77910,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:19,996", - "created": 1610361439.99639, + "asctime": "2021-01-14 00:26:02,558", + "created": 1610580362.558276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 996.3901042938232, + "msecs": 558.2759380340576, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11651.800155639648, - "thread": 140379336402752, + "relativeCreated": 11786.77487373352, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -77991,8 +77938,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:19,996", - "created": 1610361439.996624, + "asctime": "2021-01-14 00:26:02,558", + "created": 1610580362.558601, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78002,14 +77949,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 996.6239929199219, + "msecs": 558.600902557373, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11652.034044265747, - "thread": 140379336402752, + "relativeCreated": 11787.099838256836, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78019,8 +77966,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:19,996", - "created": 1610361439.996873, + "asctime": "2021-01-14 00:26:02,558", + "created": 1610580362.558896, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78030,14 +77977,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 996.8729019165039, + "msecs": 558.8960647583008, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11652.28295326233, - "thread": 140379336402752, + "relativeCreated": 11787.395000457764, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78047,8 +77994,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:19,997", - "created": 1610361439.997082, + "asctime": "2021-01-14 00:26:02,559", + "created": 1610580362.559145, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78058,14 +78005,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 997.081995010376, + "msecs": 559.1449737548828, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11652.492046356201, - "thread": 140379336402752, + "relativeCreated": 11787.643909454346, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78075,8 +78022,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:19,997", - "created": 1610361439.997318, + "asctime": "2021-01-14 00:26:02,559", + "created": 1610580362.559537, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78086,39 +78033,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 997.3180294036865, + "msecs": 559.5369338989258, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11652.728080749512, - "thread": 140379336402752, + "relativeCreated": 11788.035869598389, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:19,997", - "created": 1610361439.997535, + "asctime": "2021-01-14 00:26:02,559", + "created": 1610580362.559759, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 997.534990310669, + "msecs": 559.7589015960693, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11652.945041656494, - "thread": 140379336402752, + "relativeCreated": 11788.257837295532, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78127,25 +78074,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:19,997", - "created": 1610361439.997775, + "asctime": "2021-01-14 00:26:02,560", + "created": 1610580362.560013, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 997.7750778198242, + "msecs": 560.0130558013916, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11653.18512916565, - "thread": 140379336402752, + "relativeCreated": 11788.511991500854, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78153,25 +78100,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:19,997", - "created": 1610361439.998, + "asctime": "2021-01-14 00:26:02,560", + "created": 1610580362.560258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 997.999906539917, + "msecs": 560.2579116821289, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11653.409957885742, - "thread": 140379336402752, + "relativeCreated": 11788.756847381592, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78179,25 +78126,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:19,998", - "created": 1610361439.998202, + "asctime": "2021-01-14 00:26:02,560", + "created": 1610580362.560508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 998.2020854949951, + "msecs": 560.5080127716064, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11653.61213684082, - "thread": 140379336402752, + "relativeCreated": 11789.00694847107, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78207,8 +78154,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:19,998", - "created": 1610361439.998435, + "asctime": "2021-01-14 00:26:02,560", + "created": 1610580362.560763, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78218,14 +78165,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 998.4350204467773, + "msecs": 560.762882232666, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11653.845071792603, - "thread": 140379336402752, + "relativeCreated": 11789.261817932129, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78235,8 +78182,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:19,998", - "created": 1610361439.99866, + "asctime": "2021-01-14 00:26:02,560", + "created": 1610580362.560956, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78246,14 +78193,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 998.6600875854492, + "msecs": 560.9560012817383, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11654.070138931274, - "thread": 140379336402752, + "relativeCreated": 11789.454936981201, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78262,25 +78209,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:19,998", - "created": 1610361439.99889, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561052, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 998.8899230957031, + "msecs": 561.0520839691162, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11654.299974441528, - "thread": 140379336402752, + "relativeCreated": 11789.55101966858, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78289,25 +78236,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:19,999", - "created": 1610361439.999092, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561127, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 999.0921020507812, + "msecs": 561.1269474029541, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11654.502153396606, - "thread": 140379336402752, + "relativeCreated": 11789.625883102417, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78316,75 +78263,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:19,999", - "created": 1610361439.999496, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561194, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 999.4959831237793, + "msecs": 561.1939430236816, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11654.906034469604, - "thread": 140379336402752, + "relativeCreated": 11789.692878723145, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:19,999", - "created": 1610361439.99988, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 999.8800754547119, + "msecs": 561.25807762146, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11655.290126800537, - "thread": 140379336402752, + "relativeCreated": 11789.757013320923, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,000", - "created": 1610361440.000267, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 0.26702880859375, + "msecs": 561.413049697876, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11655.677080154419, - "thread": 140379336402752, + "relativeCreated": 11789.911985397339, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78393,25 +78340,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:20,000", - "created": 1610361440.000449, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561478, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 0.4489421844482422, + "msecs": 561.4778995513916, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11655.858993530273, - "thread": 140379336402752, + "relativeCreated": 11789.976835250854, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78419,25 +78366,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:20,000", - "created": 1610361440.000657, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561551, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 0.6570816040039062, + "msecs": 561.5510940551758, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11656.06713294983, - "thread": 140379336402752, + "relativeCreated": 11790.050029754639, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78445,25 +78392,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:20,000", - "created": 1610361440.000907, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561607, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 0.9069442749023438, + "msecs": 561.6068840026855, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11656.316995620728, - "thread": 140379336402752, + "relativeCreated": 11790.105819702148, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78471,25 +78418,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:20,001", - "created": 1610361440.001095, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561663, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 1.0950565338134766, + "msecs": 561.6629123687744, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11656.505107879639, - "thread": 140379336402752, + "relativeCreated": 11790.161848068237, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78497,25 +78444,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:20,001", - "created": 1610361440.001275, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561713, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 1.2750625610351562, + "msecs": 561.7129802703857, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11656.68511390686, - "thread": 140379336402752, + "relativeCreated": 11790.211915969849, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78525,8 +78472,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:20,001", - "created": 1610361440.001475, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561767, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78536,14 +78483,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 1.4750957489013672, + "msecs": 561.7671012878418, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11656.885147094727, - "thread": 140379336402752, + "relativeCreated": 11790.266036987305, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78553,8 +78500,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:20,001", - "created": 1610361440.001694, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561824, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78564,14 +78511,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 1.6939640045166016, + "msecs": 561.8240833282471, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11657.104015350342, - "thread": 140379336402752, + "relativeCreated": 11790.32301902771, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78581,8 +78528,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:20,001", - "created": 1610361440.001909, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561878, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78592,14 +78539,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 1.909017562866211, + "msecs": 561.877965927124, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11657.319068908691, - "thread": 140379336402752, + "relativeCreated": 11790.376901626587, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78609,8 +78556,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.002131, + "asctime": "2021-01-14 00:26:02,561", + "created": 1610580362.561936, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78620,39 +78567,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 2.1309852600097656, + "msecs": 561.9359016418457, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11657.541036605835, - "thread": 140379336402752, + "relativeCreated": 11790.434837341309, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.002294, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562009, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 2.2940635681152344, + "msecs": 562.0090961456299, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11657.70411491394, - "thread": 140379336402752, + "relativeCreated": 11790.508031845093, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78661,25 +78608,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.002371, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.5621, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 2.371072769165039, + "msecs": 562.0999336242676, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11657.78112411499, - "thread": 140379336402752, + "relativeCreated": 11790.59886932373, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78687,25 +78634,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.002456, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562158, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 2.4559497833251953, + "msecs": 562.1581077575684, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11657.86600112915, - "thread": 140379336402752, + "relativeCreated": 11790.657043457031, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78713,25 +78660,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.00259, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 2.5899410247802734, + "msecs": 562.2580051422119, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11657.999992370605, - "thread": 140379336402752, + "relativeCreated": 11790.756940841675, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78741,8 +78688,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.002663, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562324, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78752,14 +78699,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 2.6628971099853516, + "msecs": 562.324047088623, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.07294845581, - "thread": 140379336402752, + "relativeCreated": 11790.822982788086, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78769,8 +78716,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.00274, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562393, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78780,14 +78727,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 2.7399063110351562, + "msecs": 562.3929500579834, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.14995765686, - "thread": 140379336402752, + "relativeCreated": 11790.891885757446, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78796,25 +78743,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.00282, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562461, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 2.8200149536132812, + "msecs": 562.4608993530273, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.230066299438, - "thread": 140379336402752, + "relativeCreated": 11790.95983505249, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78823,25 +78770,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.002886, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562526, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 2.886056900024414, + "msecs": 562.5259876251221, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.29610824585, - "thread": 140379336402752, + "relativeCreated": 11791.024923324585, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -78850,68 +78797,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:20,002", - "created": 1610361440.002955, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 2.9549598693847656, + "msecs": 562.5870227813721, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.36501121521, - "thread": 140379336402752, + "relativeCreated": 11791.085958480835, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.003022, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562655, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 3.0219554901123047, + "msecs": 562.654972076416, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.432006835938, - "thread": 140379336402752, + "relativeCreated": 11791.153907775879, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 3.1061172485351562, + "msecs": 562.7110004425049, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.51616859436, - "thread": 140379336402752, + "relativeCreated": 11791.209936141968, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 8.416175842285156e-05 + "time_consumption": 5.602836608886719e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:20,347", - "created": 1610361440.347284, + "asctime": "2021-01-14 00:26:02,906", + "created": 1610580362.906417, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -78926,8 +78873,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.00327, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562811, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78937,22 +78884,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 3.2699108123779297, + "msecs": 562.8108978271484, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.679962158203, - "thread": 140379336402752, + "relativeCreated": 11791.309833526611, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.003336, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.562858, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78962,39 +78909,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 3.3359527587890625, + "msecs": 562.8581047058105, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.746004104614, - "thread": 140379336402752, + "relativeCreated": 11791.357040405273, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.003399, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.56291, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 3.398895263671875, + "msecs": 562.9100799560547, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.808946609497, - "thread": 140379336402752, + "relativeCreated": 11791.409015655518, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -79005,33 +78952,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.003509, + "asctime": "2021-01-14 00:26:02,562", + "created": 1610580362.56299, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 3.509044647216797, + "msecs": 562.9899501800537, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11658.919095993042, - "thread": 140379336402752, + "relativeCreated": 11791.488885879517, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.00371, + "asctime": "2021-01-14 00:26:02,563", + "created": 1610580362.563138, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79041,22 +78988,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 3.710031509399414, + "msecs": 563.1380081176758, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.120082855225, - "thread": 140379336402752, + "relativeCreated": 11791.636943817139, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.003793, + "asctime": "2021-01-14 00:26:02,563", + "created": 1610580362.56319, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79066,39 +79013,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 3.793001174926758, + "msecs": 563.1899833679199, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.203052520752, - "thread": 140379336402752, + "relativeCreated": 11791.688919067383, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:20,003", - "created": 1610361440.003859, + "asctime": "2021-01-14 00:26:02,563", + "created": 1610580362.56324, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 3.8590431213378906, + "msecs": 563.2400512695312, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.269094467163, - "thread": 140379336402752, + "relativeCreated": 11791.738986968994, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -79106,8 +79053,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004002, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565151, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79117,14 +79064,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 4.002094268798828, + "msecs": 565.1509761810303, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.412145614624, - "thread": 140378313320192, + "relativeCreated": 11793.649911880493, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79132,8 +79079,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.00419, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565296, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79143,14 +79090,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 4.189968109130859, + "msecs": 565.295934677124, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.600019454956, - "thread": 140378313320192, + "relativeCreated": 11793.794870376587, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79158,8 +79105,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004265, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565363, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79169,14 +79116,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 4.265069961547852, + "msecs": 565.3629302978516, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.675121307373, - "thread": 140378313320192, + "relativeCreated": 11793.861865997314, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79185,8 +79132,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004338, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565419, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79196,14 +79143,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.33802604675293, + "msecs": 565.4189586639404, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.748077392578, - "thread": 140378313320192, + "relativeCreated": 11793.917894363403, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79211,8 +79158,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004422, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565527, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79222,14 +79169,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 4.42194938659668, + "msecs": 565.5269622802734, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.832000732422, - "thread": 140378313320192, + "relativeCreated": 11794.025897979736, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79238,8 +79185,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004483, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565603, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79249,14 +79196,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.48298454284668, + "msecs": 565.6030178070068, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.893035888672, - "thread": 140378313320192, + "relativeCreated": 11794.10195350647, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79264,8 +79211,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004574, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565714, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79275,14 +79222,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 4.574060440063477, + "msecs": 565.7138824462891, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11659.984111785889, - "thread": 140378313320192, + "relativeCreated": 11794.212818145752, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79291,8 +79238,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004634, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565786, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79302,14 +79249,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.633903503417969, + "msecs": 565.7858848571777, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.043954849243, - "thread": 140378313320192, + "relativeCreated": 11794.28482055664, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79317,8 +79264,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004714, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565898, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79328,14 +79275,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 4.714012145996094, + "msecs": 565.8979415893555, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.124063491821, - "thread": 140378313320192, + "relativeCreated": 11794.396877288818, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79344,8 +79291,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004777, + "asctime": "2021-01-14 00:26:02,565", + "created": 1610580362.565979, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79355,14 +79302,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.776954650878906, + "msecs": 565.97900390625, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.187005996704, - "thread": 140378313320192, + "relativeCreated": 11794.477939605713, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79370,8 +79317,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004872, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.56609, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79381,14 +79328,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 4.87208366394043, + "msecs": 566.0901069641113, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.282135009766, - "thread": 140378313320192, + "relativeCreated": 11794.589042663574, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79397,8 +79344,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,004", - "created": 1610361440.004934, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566165, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79408,14 +79355,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.934072494506836, + "msecs": 566.1649703979492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.344123840332, - "thread": 140378313320192, + "relativeCreated": 11794.663906097412, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79423,8 +79370,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005029, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566278, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79434,14 +79381,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 5.028963088989258, + "msecs": 566.2779808044434, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.439014434814, - "thread": 140378313320192, + "relativeCreated": 11794.776916503906, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79449,8 +79396,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005141, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566372, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79460,14 +79407,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 5.141019821166992, + "msecs": 566.3719177246094, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.551071166992, - "thread": 140378313320192, + "relativeCreated": 11794.870853424072, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79475,8 +79422,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005202, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566459, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79486,14 +79433,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 5.202054977416992, + "msecs": 566.4589405059814, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.612106323242, - "thread": 140378313320192, + "relativeCreated": 11794.957876205444, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79502,8 +79449,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005254, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566531, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79513,14 +79460,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 5.254030227661133, + "msecs": 566.5309429168701, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.664081573486, - "thread": 140378313320192, + "relativeCreated": 11795.029878616333, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79528,8 +79475,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005362, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566682, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79539,14 +79486,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 5.362033843994141, + "msecs": 566.6821002960205, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.77208518982, - "thread": 140378313320192, + "relativeCreated": 11795.181035995483, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79557,25 +79504,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005481, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566871, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 5.48100471496582, + "msecs": 566.870927810669, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.891056060791, - "thread": 140378313320192, + "relativeCreated": 11795.369863510132, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79583,25 +79530,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005546, + "asctime": "2021-01-14 00:26:02,566", + "created": 1610580362.566986, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 5.546092987060547, + "msecs": 566.986083984375, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11660.956144332886, - "thread": 140378313320192, + "relativeCreated": 11795.485019683838, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79612,25 +79559,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,005", - "created": 1610361440.005629, + "asctime": "2021-01-14 00:26:02,567", + "created": 1610580362.567079, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 5.629062652587891, + "msecs": 567.0790672302246, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11661.039113998413, - "thread": 140378313320192, + "relativeCreated": 11795.578002929688, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -79638,8 +79585,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.006406, + "asctime": "2021-01-14 00:26:02,573", + "created": 1610580362.573199, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79649,14 +79596,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 6.406068801879883, + "msecs": 573.1990337371826, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11661.816120147705, - "thread": 140378304927488, + "relativeCreated": 11801.697969436646, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79664,8 +79611,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.006537, + "asctime": "2021-01-14 00:26:02,573", + "created": 1610580362.573395, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79675,14 +79622,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 6.536960601806641, + "msecs": 573.3950138092041, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11661.947011947632, - "thread": 140378304927488, + "relativeCreated": 11801.893949508667, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79690,8 +79637,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.006596, + "asctime": "2021-01-14 00:26:02,573", + "created": 1610580362.57348, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79701,14 +79648,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 6.596088409423828, + "msecs": 573.4798908233643, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.006139755249, - "thread": 140378304927488, + "relativeCreated": 11801.978826522827, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79717,8 +79664,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.006659, + "asctime": "2021-01-14 00:26:02,573", + "created": 1610580362.573556, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79728,14 +79675,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 6.659030914306641, + "msecs": 573.5559463500977, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.069082260132, - "thread": 140378304927488, + "relativeCreated": 11802.05488204956, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79743,8 +79690,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.00674, + "asctime": "2021-01-14 00:26:02,573", + "created": 1610580362.573652, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79754,14 +79701,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 6.740093231201172, + "msecs": 573.6520290374756, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.150144577026, - "thread": 140378304927488, + "relativeCreated": 11802.150964736938, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79770,8 +79717,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.006802, + "asctime": "2021-01-14 00:26:02,573", + "created": 1610580362.573725, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79781,14 +79728,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 6.802082061767578, + "msecs": 573.7249851226807, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.212133407593, - "thread": 140378304927488, + "relativeCreated": 11802.223920822144, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79796,8 +79743,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.006888, + "asctime": "2021-01-14 00:26:02,573", + "created": 1610580362.573932, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79807,14 +79754,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 6.887912750244141, + "msecs": 573.9319324493408, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.29796409607, - "thread": 140378304927488, + "relativeCreated": 11802.430868148804, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79823,8 +79770,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,006", - "created": 1610361440.006948, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.57401, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79834,14 +79781,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 6.947994232177734, + "msecs": 574.009895324707, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.358045578003, - "thread": 140378304927488, + "relativeCreated": 11802.50883102417, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79849,8 +79796,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007024, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574103, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79860,14 +79807,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 7.024049758911133, + "msecs": 574.1031169891357, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.434101104736, - "thread": 140378304927488, + "relativeCreated": 11802.602052688599, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79876,8 +79823,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007086, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574173, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79887,14 +79834,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 7.086038589477539, + "msecs": 574.1729736328125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.496089935303, - "thread": 140378304927488, + "relativeCreated": 11802.671909332275, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79902,8 +79849,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007171, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574267, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79913,14 +79860,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 7.170915603637695, + "msecs": 574.2669105529785, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.580966949463, - "thread": 140378304927488, + "relativeCreated": 11802.765846252441, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79929,8 +79876,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007229, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574335, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -79940,14 +79887,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 7.229089736938477, + "msecs": 574.3350982666016, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.639141082764, - "thread": 140378304927488, + "relativeCreated": 11802.834033966064, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79955,8 +79902,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007324, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574444, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79966,14 +79913,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 7.323980331420898, + "msecs": 574.444055557251, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.734031677246, - "thread": 140378304927488, + "relativeCreated": 11802.942991256714, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -79981,8 +79928,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007397, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574598, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -79992,14 +79939,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 7.396936416625977, + "msecs": 574.5980739593506, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.806987762451, - "thread": 140378304927488, + "relativeCreated": 11803.097009658813, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -80007,8 +79954,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007477, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574684, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80018,14 +79965,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 7.477045059204102, + "msecs": 574.6839046478271, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.88709640503, - "thread": 140378304927488, + "relativeCreated": 11803.18284034729, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -80034,8 +79981,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007542, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574753, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80045,14 +79992,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 7.541894912719727, + "msecs": 574.7530460357666, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11662.951946258545, - "thread": 140378304927488, + "relativeCreated": 11803.25198173523, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -80060,8 +80007,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007681, + "asctime": "2021-01-14 00:26:02,574", + "created": 1610580362.574905, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80071,14 +80018,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 7.6808929443359375, + "msecs": 574.9049186706543, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11663.090944290161, - "thread": 140378304927488, + "relativeCreated": 11803.403854370117, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -80089,25 +80036,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007844, + "asctime": "2021-01-14 00:26:02,575", + "created": 1610580362.575065, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 7.843971252441406, + "msecs": 575.0648975372314, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11663.254022598267, - "thread": 140378304927488, + "relativeCreated": 11803.563833236694, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -80115,43 +80062,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:20,007", - "created": 1610361440.007927, + "asctime": "2021-01-14 00:26:02,575", + "created": 1610580362.575157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 7.92694091796875, + "msecs": 575.1569271087646, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 11663.336992263794, - "thread": 140378304927488, + "relativeCreated": 11803.655862808228, + "thread": 140018668525312, "threadName": "Thread-16" } ], - "msecs": 347.28407859802246, + "msecs": 906.4168930053711, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12002.694129943848, - "thread": 140379336402752, + "relativeCreated": 12134.915828704834, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3393571376800537 + "time_consumption": 0.33125996589660645 }, { "args": [], - "asctime": "2021-01-11 11:37:20,649", - "created": 1610361440.649939, + "asctime": "2021-01-14 00:26:03,209", + "created": 1610580363.209461, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -80170,25 +80117,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:20,348", - "created": 1610361440.348005, + "asctime": "2021-01-14 00:26:02,907", + "created": 1610580362.907266, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 348.0050563812256, + "msecs": 907.2659015655518, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12003.41510772705, - "thread": 140379336402752, + "relativeCreated": 12135.764837265015, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -80196,8 +80143,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:20,370", - "created": 1610361440.370802, + "asctime": "2021-01-14 00:26:02,932", + "created": 1610580362.932422, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -80207,14 +80154,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 370.8019256591797, + "msecs": 932.4219226837158, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12026.211977005005, - "thread": 140378313320192, + "relativeCreated": 12160.920858383179, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80222,8 +80169,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:20,371", - "created": 1610361440.371402, + "asctime": "2021-01-14 00:26:02,932", + "created": 1610580362.932958, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -80233,14 +80180,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 371.4020252227783, + "msecs": 932.9578876495361, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12026.812076568604, - "thread": 140378313320192, + "relativeCreated": 12161.456823348999, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80248,8 +80195,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,371", - "created": 1610361440.371828, + "asctime": "2021-01-14 00:26:02,933", + "created": 1610580362.933194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80259,14 +80206,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 371.8280792236328, + "msecs": 933.1939220428467, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12027.238130569458, - "thread": 140378313320192, + "relativeCreated": 12161.69285774231, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80275,8 +80222,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:20,372", - "created": 1610361440.372049, + "asctime": "2021-01-14 00:26:02,933", + "created": 1610580362.933378, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80286,14 +80233,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 372.04909324645996, + "msecs": 933.3779811859131, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12027.459144592285, - "thread": 140378313320192, + "relativeCreated": 12161.876916885376, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80301,8 +80248,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,372", - "created": 1610361440.372278, + "asctime": "2021-01-14 00:26:02,933", + "created": 1610580362.933625, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80312,14 +80259,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 372.27797508239746, + "msecs": 933.6249828338623, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12027.688026428223, - "thread": 140378313320192, + "relativeCreated": 12162.123918533325, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80328,8 +80275,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,372", - "created": 1610361440.372469, + "asctime": "2021-01-14 00:26:02,933", + "created": 1610580362.933822, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80339,14 +80286,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 372.4689483642578, + "msecs": 933.8219165802002, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12027.878999710083, - "thread": 140378313320192, + "relativeCreated": 12162.320852279663, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80354,8 +80301,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,372", - "created": 1610361440.372691, + "asctime": "2021-01-14 00:26:02,934", + "created": 1610580362.934116, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80365,14 +80312,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 372.69091606140137, + "msecs": 934.1158866882324, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12028.100967407227, - "thread": 140378313320192, + "relativeCreated": 12162.614822387695, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80381,8 +80328,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,372", - "created": 1610361440.372947, + "asctime": "2021-01-14 00:26:02,934", + "created": 1610580362.934306, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80392,14 +80339,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 372.94697761535645, + "msecs": 934.3059062957764, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12028.357028961182, - "thread": 140378313320192, + "relativeCreated": 12162.80484199524, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80407,8 +80354,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,373", - "created": 1610361440.373212, + "asctime": "2021-01-14 00:26:02,934", + "created": 1610580362.934552, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80418,14 +80365,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 373.2120990753174, + "msecs": 934.5519542694092, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12028.622150421143, - "thread": 140378313320192, + "relativeCreated": 12163.050889968872, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80434,8 +80381,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,373", - "created": 1610361440.373479, + "asctime": "2021-01-14 00:26:02,934", + "created": 1610580362.93475, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80445,14 +80392,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 373.47888946533203, + "msecs": 934.7500801086426, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12028.888940811157, - "thread": 140378313320192, + "relativeCreated": 12163.249015808105, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80460,8 +80407,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:20,373", - "created": 1610361440.373864, + "asctime": "2021-01-14 00:26:02,935", + "created": 1610580362.935238, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -80471,14 +80418,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 373.86393547058105, + "msecs": 935.2378845214844, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12029.273986816406, - "thread": 140378313320192, + "relativeCreated": 12163.736820220947, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80486,8 +80433,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:20,374", - "created": 1610361440.374131, + "asctime": "2021-01-14 00:26:02,935", + "created": 1610580362.935503, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -80497,14 +80444,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 374.1309642791748, + "msecs": 935.5030059814453, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12029.541015625, - "thread": 140378313320192, + "relativeCreated": 12164.001941680908, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80512,8 +80459,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,374", - "created": 1610361440.374371, + "asctime": "2021-01-14 00:26:02,935", + "created": 1610580362.93574, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80523,14 +80470,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 374.3710517883301, + "msecs": 935.7399940490723, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12029.781103134155, - "thread": 140378313320192, + "relativeCreated": 12164.238929748535, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80539,8 +80486,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,374", - "created": 1610361440.37453, + "asctime": "2021-01-14 00:26:02,935", + "created": 1610580362.935903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80550,14 +80497,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 374.5300769805908, + "msecs": 935.9030723571777, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12029.940128326416, - "thread": 140378313320192, + "relativeCreated": 12164.40200805664, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80565,8 +80512,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,374", - "created": 1610361440.374714, + "asctime": "2021-01-14 00:26:02,936", + "created": 1610580362.93609, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80576,14 +80523,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 374.7138977050781, + "msecs": 936.0899925231934, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12030.123949050903, - "thread": 140378313320192, + "relativeCreated": 12164.588928222656, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80592,8 +80539,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:20,374", - "created": 1610361440.37488, + "asctime": "2021-01-14 00:26:02,936", + "created": 1610580362.936261, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80603,14 +80550,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 374.8800754547119, + "msecs": 936.2609386444092, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12030.290126800537, - "thread": 140378313320192, + "relativeCreated": 12164.759874343872, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80618,8 +80565,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" ], - "asctime": "2021-01-11 11:37:20,375", - "created": 1610361440.375291, + "asctime": "2021-01-14 00:26:02,936", + "created": 1610580362.936719, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -80629,14 +80576,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", "module": "stp", - "msecs": 375.291109085083, + "msecs": 936.7189407348633, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12030.701160430908, - "thread": 140378313320192, + "relativeCreated": 12165.217876434326, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80647,50 +80594,50 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:20,375", - "created": 1610361440.375709, + "asctime": "2021-01-14 00:26:02,937", + "created": 1610580362.937173, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 375.70905685424805, + "msecs": 937.1728897094727, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12031.119108200073, - "thread": 140378313320192, + "relativeCreated": 12165.671825408936, + "thread": 140018676918016, "threadName": "Thread-15" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:20,376", - "created": 1610361440.376044, + "asctime": "2021-01-14 00:26:02,937", + "created": 1610580362.937433, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 376.04403495788574, + "msecs": 937.4330043792725, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12031.454086303711, - "thread": 140378313320192, + "relativeCreated": 12165.931940078735, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -80700,46 +80647,46 @@ "18", "34" ], - "asctime": "2021-01-11 11:37:20,649", - "created": 1610361440.64955, + "asctime": "2021-01-14 00:26:03,208", + "created": 1610580363.208985, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 18; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 649.5499610900879, + "msecs": 208.9850902557373, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12304.960012435913, - "thread": 140379336402752, + "relativeCreated": 12437.4840259552, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 649.9390602111816, + "msecs": 209.46097373962402, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12305.349111557007, - "thread": 140379336402752, + "relativeCreated": 12437.959909439087, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00038909912109375 + "time_consumption": 0.00047588348388671875 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:20,650", - "created": 1610361440.650844, + "asctime": "2021-01-14 00:26:03,210", + "created": 1610580363.210328, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80756,8 +80703,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:20,650", - "created": 1610361440.650388, + "asctime": "2021-01-14 00:26:03,209", + "created": 1610580363.209948, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80767,14 +80714,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 650.3880023956299, + "msecs": 209.94806289672852, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12305.798053741455, - "thread": 140379336402752, + "relativeCreated": 12438.446998596191, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -80783,8 +80730,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:20,650", - "created": 1610361440.650618, + "asctime": "2021-01-14 00:26:03,210", + "created": 1610580363.210146, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80794,35 +80741,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 650.6180763244629, + "msecs": 210.1459503173828, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12306.028127670288, - "thread": 140379336402752, + "relativeCreated": 12438.644886016846, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 650.8440971374512, + "msecs": 210.3281021118164, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12306.254148483276, - "thread": 140379336402752, + "relativeCreated": 12438.82703781128, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00022602081298828125 + "time_consumption": 0.00018215179443359375 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:20,651", - "created": 1610361440.651884, + "asctime": "2021-01-14 00:26:03,210", + "created": 1610580363.210941, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80839,8 +80786,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:20,651", - "created": 1610361440.651474, + "asctime": "2021-01-14 00:26:03,210", + "created": 1610580363.210598, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80850,14 +80797,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 651.4739990234375, + "msecs": 210.59799194335938, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12306.884050369263, - "thread": 140379336402752, + "relativeCreated": 12439.096927642822, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -80866,8 +80813,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:20,651", - "created": 1610361440.651696, + "asctime": "2021-01-14 00:26:03,210", + "created": 1610580363.210761, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80877,32 +80824,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 651.695966720581, + "msecs": 210.76107025146484, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12307.106018066406, - "thread": 140379336402752, + "relativeCreated": 12439.260005950928, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 651.8840789794922, + "msecs": 210.94107627868652, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12307.294130325317, - "thread": 140379336402752, + "relativeCreated": 12439.44001197815, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001881122589111328 + "time_consumption": 0.0001800060272216797 }, { "args": [], - "asctime": "2021-01-11 11:37:20,652", - "created": 1610361440.652835, + "asctime": "2021-01-14 00:26:03,211", + "created": 1610580363.211396, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -80919,43 +80866,43 @@ "17", "18" ], - "asctime": "2021-01-11 11:37:20,652", - "created": 1610361440.652296, + "asctime": "2021-01-14 00:26:03,211", + "created": 1610580363.211227, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=17 and Response=18", "module": "__init__", - "msecs": 652.2960662841797, + "msecs": 211.2269401550293, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12307.706117630005, - "thread": 140379336402752, + "relativeCreated": 12439.725875854492, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 652.8348922729492, + "msecs": 211.3959789276123, "msg": "Adding service to server instance for the transmit message", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12308.244943618774, - "thread": 140379336402752, + "relativeCreated": 12439.894914627075, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0005388259887695312 + "time_consumption": 0.0001690387725830078 }, { "args": [], - "asctime": "2021-01-11 11:37:20,854", - "created": 1610361440.854608, + "asctime": "2021-01-14 00:26:03,412", + "created": 1610580363.412926, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -80974,25 +80921,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:20,653", - "created": 1610361440.653471, + "asctime": "2021-01-14 00:26:03,211", + "created": 1610580363.211752, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 653.4709930419922, + "msecs": 211.75193786621094, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12308.881044387817, - "thread": 140379336402752, + "relativeCreated": 12440.250873565674, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -81000,8 +80947,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:20,677", - "created": 1610361440.67736, + "asctime": "2021-01-14 00:26:03,238", + "created": 1610580363.238907, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81011,14 +80958,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 677.3600578308105, + "msecs": 238.9070987701416, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12332.770109176636, - "thread": 140378313320192, + "relativeCreated": 12467.406034469604, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81026,8 +80973,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-11 11:37:20,677", - "created": 1610361440.677927, + "asctime": "2021-01-14 00:26:03,239", + "created": 1610580363.239517, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81037,14 +80984,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", "module": "__init__", - "msecs": 677.9270172119141, + "msecs": 239.5169734954834, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12333.33706855774, - "thread": 140378313320192, + "relativeCreated": 12468.015909194946, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81052,8 +80999,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,678", - "created": 1610361440.678176, + "asctime": "2021-01-14 00:26:03,239", + "created": 1610580363.239757, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81063,14 +81010,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 678.1759262084961, + "msecs": 239.75706100463867, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12333.585977554321, - "thread": 140378313320192, + "relativeCreated": 12468.255996704102, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81079,8 +81026,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:20,678", - "created": 1610361440.678392, + "asctime": "2021-01-14 00:26:03,239", + "created": 1610580363.239985, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81090,14 +81037,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 678.3919334411621, + "msecs": 239.98498916625977, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12333.801984786987, - "thread": 140378313320192, + "relativeCreated": 12468.483924865723, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81105,8 +81052,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,678", - "created": 1610361440.678686, + "asctime": "2021-01-14 00:26:03,240", + "created": 1610580363.240359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81116,14 +81063,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 678.6859035491943, + "msecs": 240.35906791687012, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12334.09595489502, - "thread": 140378313320192, + "relativeCreated": 12468.858003616333, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81132,8 +81079,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,678", - "created": 1610361440.6789, + "asctime": "2021-01-14 00:26:03,240", + "created": 1610580363.240538, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81143,14 +81090,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 678.9000034332275, + "msecs": 240.5378818511963, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12334.310054779053, - "thread": 140378313320192, + "relativeCreated": 12469.03681755066, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81158,8 +81105,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,679", - "created": 1610361440.679195, + "asctime": "2021-01-14 00:26:03,240", + "created": 1610580363.240799, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81169,14 +81116,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 679.1949272155762, + "msecs": 240.7989501953125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12334.604978561401, - "thread": 140378313320192, + "relativeCreated": 12469.297885894775, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81185,8 +81132,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,679", - "created": 1610361440.679482, + "asctime": "2021-01-14 00:26:03,240", + "created": 1610580363.240982, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81196,14 +81143,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 679.4819831848145, + "msecs": 240.9820556640625, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12334.89203453064, - "thread": 140378313320192, + "relativeCreated": 12469.480991363525, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81211,8 +81158,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,679", - "created": 1610361440.679689, + "asctime": "2021-01-14 00:26:03,241", + "created": 1610580363.241239, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81222,14 +81169,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 679.6889305114746, + "msecs": 241.23907089233398, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12335.0989818573, - "thread": 140378313320192, + "relativeCreated": 12469.738006591797, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81238,8 +81185,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,679", - "created": 1610361440.67986, + "asctime": "2021-01-14 00:26:03,241", + "created": 1610580363.241509, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81249,14 +81196,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 679.8601150512695, + "msecs": 241.50896072387695, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12335.270166397095, - "thread": 140378313320192, + "relativeCreated": 12470.00789642334, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81264,8 +81211,8 @@ "comm-client:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:20,680", - "created": 1610361440.680249, + "asctime": "2021-01-14 00:26:03,241", + "created": 1610580363.241915, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81275,14 +81222,14 @@ "lineno": 284, "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 680.2489757537842, + "msecs": 241.9149875640869, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12335.65902709961, - "thread": 140378313320192, + "relativeCreated": 12470.41392326355, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81290,8 +81237,8 @@ "comm-server:", "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:20,680", - "created": 1610361440.680512, + "asctime": "2021-01-14 00:26:03,242", + "created": 1610580363.242227, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81301,14 +81248,14 @@ "lineno": 414, "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", "module": "__init__", - "msecs": 680.5119514465332, + "msecs": 242.22707748413086, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12335.922002792358, - "thread": 140378313320192, + "relativeCreated": 12470.726013183594, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81316,8 +81263,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,680", - "created": 1610361440.680783, + "asctime": "2021-01-14 00:26:03,242", + "created": 1610580363.242452, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81327,14 +81274,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 680.7830333709717, + "msecs": 242.45190620422363, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12336.193084716797, - "thread": 140378313320192, + "relativeCreated": 12470.950841903687, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81343,8 +81290,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,680", - "created": 1610361440.68096, + "asctime": "2021-01-14 00:26:03,242", + "created": 1610580363.242597, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81354,14 +81301,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 680.959939956665, + "msecs": 242.59710311889648, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12336.36999130249, - "thread": 140378313320192, + "relativeCreated": 12471.09603881836, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81369,8 +81316,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,681", - "created": 1610361440.681146, + "asctime": "2021-01-14 00:26:03,242", + "created": 1610580363.242777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81380,14 +81327,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 681.1459064483643, + "msecs": 242.77710914611816, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12336.55595779419, - "thread": 140378313320192, + "relativeCreated": 12471.276044845581, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81396,8 +81343,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:20,681", - "created": 1610361440.681865, + "asctime": "2021-01-14 00:26:03,242", + "created": 1610580363.242917, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81407,14 +81354,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 681.8649768829346, + "msecs": 242.91706085205078, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12337.27502822876, - "thread": 140378313320192, + "relativeCreated": 12471.415996551514, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81422,8 +81369,8 @@ "STP:", "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" ], - "asctime": "2021-01-11 11:37:20,682", - "created": 1610361440.682282, + "asctime": "2021-01-14 00:26:03,243", + "created": 1610580363.243265, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81433,14 +81380,14 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", "module": "stp", - "msecs": 682.2819709777832, + "msecs": 243.26491355895996, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12337.692022323608, - "thread": 140378313320192, + "relativeCreated": 12471.763849258423, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81451,50 +81398,50 @@ "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:20,682", - "created": 1610361440.68269, + "asctime": "2021-01-14 00:26:03,244", + "created": 1610580363.244145, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 682.689905166626, + "msecs": 244.14491653442383, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12338.099956512451, - "thread": 140378313320192, + "relativeCreated": 12472.643852233887, + "thread": 140018676918016, "threadName": "Thread-15" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:20,682", - "created": 1610361440.682951, + "asctime": "2021-01-14 00:26:03,244", + "created": 1610580363.244372, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 474, + "lineno": 486, "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 682.9509735107422, + "msecs": 244.37189102172852, "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12338.361024856567, - "thread": 140378313320192, + "relativeCreated": 12472.870826721191, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81505,25 +81452,25 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:20,683", - "created": 1610361440.683361, + "asctime": "2021-01-14 00:26:03,244", + "created": 1610580363.24464, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 683.3610534667969, + "msecs": 244.64011192321777, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12338.771104812622, - "thread": 140378313320192, + "relativeCreated": 12473.13904762268, + "thread": 140018676918016, "threadName": "Thread-15" }, { @@ -81531,8 +81478,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.7101, + "asctime": "2021-01-14 00:26:03,277", + "created": 1610580363.277287, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81542,14 +81489,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", "module": "__init__", - "msecs": 710.0999355316162, + "msecs": 277.2870063781738, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12365.509986877441, - "thread": 140378304927488, + "relativeCreated": 12505.785942077637, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81557,8 +81504,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710303, + "asctime": "2021-01-14 00:26:03,277", + "created": 1610580363.277737, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81568,14 +81515,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", "module": "__init__", - "msecs": 710.3030681610107, + "msecs": 277.7369022369385, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12365.713119506836, - "thread": 140378304927488, + "relativeCreated": 12506.235837936401, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81583,8 +81530,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.71038, + "asctime": "2021-01-14 00:26:03,277", + "created": 1610580363.27799, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81594,14 +81541,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 710.3800773620605, + "msecs": 277.99010276794434, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12365.790128707886, - "thread": 140378304927488, + "relativeCreated": 12506.489038467407, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81610,8 +81557,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.71047, + "asctime": "2021-01-14 00:26:03,278", + "created": 1610580363.278258, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81621,14 +81568,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 710.4699611663818, + "msecs": 278.2580852508545, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12365.880012512207, - "thread": 140378304927488, + "relativeCreated": 12506.757020950317, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81636,8 +81583,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710548, + "asctime": "2021-01-14 00:26:03,278", + "created": 1610580363.278534, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81647,14 +81594,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 710.547924041748, + "msecs": 278.533935546875, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12365.957975387573, - "thread": 140378304927488, + "relativeCreated": 12507.032871246338, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81663,8 +81610,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710612, + "asctime": "2021-01-14 00:26:03,278", + "created": 1610580363.278915, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81674,14 +81621,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 710.6120586395264, + "msecs": 278.9149284362793, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.022109985352, - "thread": 140378304927488, + "relativeCreated": 12507.413864135742, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81689,8 +81636,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710692, + "asctime": "2021-01-14 00:26:03,279", + "created": 1610580363.279123, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81700,14 +81647,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 710.6919288635254, + "msecs": 279.12306785583496, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.10198020935, - "thread": 140378304927488, + "relativeCreated": 12507.622003555298, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81716,8 +81663,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710753, + "asctime": "2021-01-14 00:26:03,279", + "created": 1610580363.27927, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81727,14 +81674,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 710.7529640197754, + "msecs": 279.2699337005615, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.1630153656, - "thread": 140378304927488, + "relativeCreated": 12507.768869400024, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81742,8 +81689,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710824, + "asctime": "2021-01-14 00:26:03,279", + "created": 1610580363.279448, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81753,14 +81700,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 710.8240127563477, + "msecs": 279.4480323791504, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.234064102173, - "thread": 140378304927488, + "relativeCreated": 12507.946968078613, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81769,8 +81716,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710879, + "asctime": "2021-01-14 00:26:03,279", + "created": 1610580363.279587, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81780,14 +81727,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 710.8790874481201, + "msecs": 279.5870304107666, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.289138793945, - "thread": 140378304927488, + "relativeCreated": 12508.08596611023, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81795,8 +81742,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,710", - "created": 1610361440.710956, + "asctime": "2021-01-14 00:26:03,279", + "created": 1610580363.279777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81806,14 +81753,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 710.9560966491699, + "msecs": 279.77705001831055, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.366147994995, - "thread": 140378304927488, + "relativeCreated": 12508.275985717773, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81822,8 +81769,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.711014, + "asctime": "2021-01-14 00:26:03,279", + "created": 1610580363.279927, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81833,14 +81780,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 711.0140323638916, + "msecs": 279.92701530456543, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.424083709717, - "thread": 140378304927488, + "relativeCreated": 12508.425951004028, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81848,8 +81795,8 @@ "comm-server:", "(8): 34 7d e8 ee d8 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.711133, + "asctime": "2021-01-14 00:26:03,280", + "created": 1610580363.280154, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81859,14 +81806,14 @@ "lineno": 284, "message": "comm-server: TX -> (8): 34 7d e8 ee d8 5c 3a 3e", "module": "__init__", - "msecs": 711.1330032348633, + "msecs": 280.1539897918701, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.543054580688, - "thread": 140378304927488, + "relativeCreated": 12508.652925491333, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81874,8 +81821,8 @@ "comm-client:", "(8): 34 7d e8 ee d8 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.71121, + "asctime": "2021-01-14 00:26:03,280", + "created": 1610580363.280328, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -81885,14 +81832,14 @@ "lineno": 414, "message": "comm-client: RX <- (8): 34 7d e8 ee d8 5c 3a 3e", "module": "__init__", - "msecs": 711.2100124359131, + "msecs": 280.32803535461426, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.620063781738, - "thread": 140378304927488, + "relativeCreated": 12508.826971054077, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81900,8 +81847,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.711276, + "asctime": "2021-01-14 00:26:03,280", + "created": 1610580363.280493, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81911,14 +81858,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 711.2760543823242, + "msecs": 280.49302101135254, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.68610572815, - "thread": 140378304927488, + "relativeCreated": 12508.991956710815, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81927,8 +81874,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.711333, + "asctime": "2021-01-14 00:26:03,280", + "created": 1610580363.280648, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81938,14 +81885,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 711.3330364227295, + "msecs": 280.64799308776855, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.743087768555, - "thread": 140378304927488, + "relativeCreated": 12509.146928787231, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81953,8 +81900,8 @@ "STP:", "(64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c" ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.711457, + "asctime": "2021-01-14 00:26:03,281", + "created": 1610580363.281307, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -81964,14 +81911,14 @@ "lineno": 148, "message": "STP: message identified - (64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c", "module": "stp", - "msecs": 711.4570140838623, + "msecs": 281.3069820404053, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12366.867065429688, - "thread": 140378304927488, + "relativeCreated": 12509.805917739868, + "thread": 140018668525312, "threadName": "Thread-16" }, { @@ -81982,71 +81929,71 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.711612, + "asctime": "2021-01-14 00:26:03,281", + "created": 1610580363.281731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 711.6119861602783, + "msecs": 281.73089027404785, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12367.022037506104, - "thread": 140378304927488, + "relativeCreated": 12510.22982597351, + "thread": 140018668525312, "threadName": "Thread-16" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:20,711", - "created": 1610361440.711714, + "asctime": "2021-01-14 00:26:03,282", + "created": 1610580363.28206, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 711.7140293121338, + "msecs": 282.059907913208, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12367.124080657959, - "thread": 140378304927488, + "relativeCreated": 12510.55884361267, + "thread": 140018668525312, "threadName": "Thread-16" } ], - "msecs": 854.6080589294434, + "msecs": 412.92595863342285, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12510.018110275269, - "thread": 140379336402752, + "relativeCreated": 12641.424894332886, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.14289402961730957 + "time_consumption": 0.13086605072021484 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:20,855", - "created": 1610361440.855809, + "asctime": "2021-01-14 00:26:03,413", + "created": 1610580363.413996, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82063,8 +82010,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:20,855", - "created": 1610361440.855382, + "asctime": "2021-01-14 00:26:03,413", + "created": 1610580363.413584, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82074,14 +82021,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 855.381965637207, + "msecs": 413.58399391174316, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12510.792016983032, - "thread": 140379336402752, + "relativeCreated": 12642.082929611206, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82090,8 +82037,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:20,855", - "created": 1610361440.855606, + "asctime": "2021-01-14 00:26:03,413", + "created": 1610580363.4138, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82101,35 +82048,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 855.6060791015625, + "msecs": 413.8000011444092, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12511.016130447388, - "thread": 140379336402752, + "relativeCreated": 12642.298936843872, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 855.8089733123779, + "msecs": 413.99598121643066, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12511.219024658203, - "thread": 140379336402752, + "relativeCreated": 12642.494916915894, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002028942108154297 + "time_consumption": 0.00019598007202148438 }, { "args": [ "{u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:20,856", - "created": 1610361440.85648, + "asctime": "2021-01-14 00:26:03,414", + "created": 1610580363.414924, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82146,8 +82093,8 @@ "{u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:20,856", - "created": 1610361440.856105, + "asctime": "2021-01-14 00:26:03,414", + "created": 1610580363.414333, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82157,14 +82104,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34} ()", "module": "test", - "msecs": 856.1050891876221, + "msecs": 414.3331050872803, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12511.515140533447, - "thread": 140379336402752, + "relativeCreated": 12642.832040786743, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82173,8 +82120,8 @@ "{'status': 1, 'service_id': 18, 'data': None, 'data_id': 34}", "" ], - "asctime": "2021-01-11 11:37:20,856", - "created": 1610361440.856299, + "asctime": "2021-01-14 00:26:03,414", + "created": 1610580363.414655, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82184,39 +82131,39 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 1, 'service_id': 18, 'data': None, 'data_id': 34} ()", "module": "test", - "msecs": 856.2989234924316, + "msecs": 414.6549701690674, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12511.708974838257, - "thread": 140379336402752, + "relativeCreated": 12643.15390586853, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 856.4798831939697, + "msecs": 414.92390632629395, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12511.889934539795, - "thread": 140379336402752, + "relativeCreated": 12643.422842025757, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00018095970153808594 + "time_consumption": 0.0002689361572265625 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.8648149967193604, - "time_finished": "2021-01-11 11:37:20,856", - "time_start": "2021-01-11 11:37:19,991" + "time_consumption": 0.861274003982544, + "time_finished": "2021-01-14 00:26:03,414", + "time_start": "2021-01-14 00:26:02,553" }, "_k7opsE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:23,299", - "created": 1610361443.299403, + "asctime": "2021-01-14 00:26:05,856", + "created": 1610580365.856336, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82227,18 +82174,18 @@ "message": "_k7opsE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 299.40295219421387, + "msecs": 856.3361167907715, "msg": "_k7opsE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14954.813003540039, + "relativeCreated": 15084.835052490234, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.305502, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864771, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -82253,8 +82200,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:23,300", - "created": 1610361443.300507, + "asctime": "2021-01-14 00:26:05,857", + "created": 1610580365.857987, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82264,22 +82211,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 300.5070686340332, + "msecs": 857.9869270324707, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14955.917119979858, - "thread": 140379336402752, + "relativeCreated": 15086.485862731934, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,301", - "created": 1610361443.301509, + "asctime": "2021-01-14 00:26:05,859", + "created": 1610580365.859255, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82289,22 +82236,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 301.50890350341797, + "msecs": 859.2550754547119, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14956.918954849243, - "thread": 140379336402752, + "relativeCreated": 15087.754011154175, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,301", - "created": 1610361443.301674, + "asctime": "2021-01-14 00:26:05,859", + "created": 1610580365.859594, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82314,39 +82261,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 301.67388916015625, + "msecs": 859.5941066741943, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.083940505981, - "thread": 140379336402752, + "relativeCreated": 15088.093042373657, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:23,301", - "created": 1610361443.301875, + "asctime": "2021-01-14 00:26:05,860", + "created": 1610580365.860252, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 301.87511444091797, + "msecs": 860.2519035339355, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.285165786743, - "thread": 140379336402752, + "relativeCreated": 15088.750839233398, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82355,25 +82302,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:23,301", - "created": 1610361443.301969, + "asctime": "2021-01-14 00:26:05,860", + "created": 1610580365.860481, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 301.969051361084, + "msecs": 860.4810237884521, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.37910270691, - "thread": 140379336402752, + "relativeCreated": 15088.979959487915, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82381,25 +82328,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302082, + "asctime": "2021-01-14 00:26:05,860", + "created": 1610580365.860762, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 302.0820617675781, + "msecs": 860.7618808746338, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.492113113403, - "thread": 140379336402752, + "relativeCreated": 15089.260816574097, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82407,25 +82354,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302161, + "asctime": "2021-01-14 00:26:05,860", + "created": 1610580365.860989, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 302.16097831726074, + "msecs": 860.9890937805176, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.571029663086, - "thread": 140379336402752, + "relativeCreated": 15089.48802947998, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82433,25 +82380,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.30223, + "asctime": "2021-01-14 00:26:05,861", + "created": 1610580365.861269, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 302.2298812866211, + "msecs": 861.2689971923828, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.639932632446, - "thread": 140379336402752, + "relativeCreated": 15089.767932891846, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82459,25 +82406,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302295, + "asctime": "2021-01-14 00:26:05,861", + "created": 1610580365.861512, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 302.2949695587158, + "msecs": 861.5119457244873, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.705020904541, - "thread": 140379336402752, + "relativeCreated": 15090.01088142395, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82487,8 +82434,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302368, + "asctime": "2021-01-14 00:26:05,861", + "created": 1610580365.861767, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82498,14 +82445,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 302.3679256439209, + "msecs": 861.767053604126, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.777976989746, - "thread": 140379336402752, + "relativeCreated": 15090.265989303589, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82515,8 +82462,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302462, + "asctime": "2021-01-14 00:26:05,862", + "created": 1610580365.862004, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82526,14 +82473,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 302.462100982666, + "msecs": 862.0040416717529, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.872152328491, - "thread": 140379336402752, + "relativeCreated": 15090.502977371216, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82543,8 +82490,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302568, + "asctime": "2021-01-14 00:26:05,862", + "created": 1610580365.862258, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82554,14 +82501,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 302.5679588317871, + "msecs": 862.2579574584961, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14957.978010177612, - "thread": 140379336402752, + "relativeCreated": 15090.756893157959, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82571,8 +82518,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.30268, + "asctime": "2021-01-14 00:26:05,862", + "created": 1610580365.862643, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82582,39 +82529,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 302.68001556396484, + "msecs": 862.6430034637451, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.09006690979, - "thread": 140379336402752, + "relativeCreated": 15091.141939163208, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302778, + "asctime": "2021-01-14 00:26:05,862", + "created": 1610580365.862902, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 302.7780055999756, + "msecs": 862.9019260406494, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.1880569458, - "thread": 140379336402752, + "relativeCreated": 15091.400861740112, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82623,25 +82570,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302886, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863009, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 302.8860092163086, + "msecs": 863.008975982666, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.296060562134, - "thread": 140379336402752, + "relativeCreated": 15091.507911682129, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82649,25 +82596,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:23,302", - "created": 1610361443.302986, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863096, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 302.98590660095215, + "msecs": 863.0959987640381, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.395957946777, - "thread": 140379336402752, + "relativeCreated": 15091.594934463501, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82675,25 +82622,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303077, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863166, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 303.07698249816895, + "msecs": 863.166093826294, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.487033843994, - "thread": 140379336402752, + "relativeCreated": 15091.665029525757, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82703,8 +82650,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303172, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863249, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82714,14 +82661,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 303.17211151123047, + "msecs": 863.2490634918213, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.582162857056, - "thread": 140379336402752, + "relativeCreated": 15091.747999191284, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82731,8 +82678,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303264, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.86332, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82742,14 +82689,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 303.26390266418457, + "msecs": 863.3201122283936, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.67395401001, - "thread": 140379336402752, + "relativeCreated": 15091.819047927856, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82758,25 +82705,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303364, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 303.3640384674072, + "msecs": 863.3780479431152, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.774089813232, - "thread": 140379336402752, + "relativeCreated": 15091.876983642578, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82785,25 +82732,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303453, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863431, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 303.4529685974121, + "msecs": 863.4309768676758, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.863019943237, - "thread": 140379336402752, + "relativeCreated": 15091.929912567139, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82812,75 +82759,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303545, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 303.5449981689453, + "msecs": 863.487958908081, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14958.95504951477, - "thread": 140379336402752, + "relativeCreated": 15091.986894607544, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303637, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863539, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 303.6370277404785, + "msecs": 863.5389804840088, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.047079086304, - "thread": 140379336402752, + "relativeCreated": 15092.037916183472, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303915, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.86367, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 303.91502380371094, + "msecs": 863.6701107025146, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.325075149536, - "thread": 140379336402752, + "relativeCreated": 15092.169046401978, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82889,25 +82836,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:23,303", - "created": 1610361443.303996, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.86373, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 303.99608612060547, + "msecs": 863.7299537658691, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.40613746643, - "thread": 140379336402752, + "relativeCreated": 15092.228889465332, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82915,25 +82862,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304097, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863805, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 304.09693717956543, + "msecs": 863.8050556182861, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.50698852539, - "thread": 140379336402752, + "relativeCreated": 15092.303991317749, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82941,25 +82888,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304168, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.86386, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 304.1679859161377, + "msecs": 863.8598918914795, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.578037261963, - "thread": 140379336402752, + "relativeCreated": 15092.358827590942, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82967,25 +82914,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304234, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.86392, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 304.2340278625488, + "msecs": 863.9199733734131, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.644079208374, - "thread": 140379336402752, + "relativeCreated": 15092.418909072876, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -82993,25 +82940,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304303, + "asctime": "2021-01-14 00:26:05,863", + "created": 1610580365.863962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 304.3029308319092, + "msecs": 863.961935043335, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.712982177734, - "thread": 140379336402752, + "relativeCreated": 15092.460870742798, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83021,8 +82968,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304372, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864008, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83032,14 +82979,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 304.37207221984863, + "msecs": 864.0079498291016, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.782123565674, - "thread": 140379336402752, + "relativeCreated": 15092.506885528564, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83049,8 +82996,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304443, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864054, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83060,14 +83007,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 304.4428825378418, + "msecs": 864.0539646148682, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.852933883667, - "thread": 140379336402752, + "relativeCreated": 15092.552900314331, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83077,8 +83024,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304513, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864101, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83088,14 +83035,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 304.51297760009766, + "msecs": 864.1009330749512, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.923028945923, - "thread": 140379336402752, + "relativeCreated": 15092.599868774414, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83105,8 +83052,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304582, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.86415, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83116,39 +83063,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 304.5821189880371, + "msecs": 864.1500473022461, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14959.992170333862, - "thread": 140379336402752, + "relativeCreated": 15092.648983001709, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304655, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864194, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 304.6550750732422, + "msecs": 864.1939163208008, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.065126419067, - "thread": 140379336402752, + "relativeCreated": 15092.692852020264, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83157,25 +83104,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.30473, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864244, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 304.7299385070801, + "msecs": 864.2439842224121, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.139989852905, - "thread": 140379336402752, + "relativeCreated": 15092.742919921875, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83183,25 +83130,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304818, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864292, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 304.81791496276855, + "msecs": 864.2919063568115, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.227966308594, - "thread": 140379336402752, + "relativeCreated": 15092.790842056274, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83209,25 +83156,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304885, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 304.8849105834961, + "msecs": 864.3560409545898, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.294961929321, - "thread": 140379336402752, + "relativeCreated": 15092.854976654053, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83237,8 +83184,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:23,304", - "created": 1610361443.304981, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864413, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83248,14 +83195,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 304.980993270874, + "msecs": 864.4130229949951, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.3910446167, - "thread": 140379336402752, + "relativeCreated": 15092.911958694458, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83265,8 +83212,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.305091, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864471, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83276,14 +83223,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 305.09090423583984, + "msecs": 864.4709587097168, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.500955581665, - "thread": 140379336402752, + "relativeCreated": 15092.96989440918, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83292,25 +83239,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.305176, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864526, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 305.1760196685791, + "msecs": 864.5260334014893, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.586071014404, - "thread": 140379336402752, + "relativeCreated": 15093.024969100952, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83319,25 +83266,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.305255, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 305.2549362182617, + "msecs": 864.5939826965332, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.664987564087, - "thread": 140379336402752, + "relativeCreated": 15093.092918395996, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83346,68 +83293,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.30534, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864664, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 305.340051651001, + "msecs": 864.6640777587891, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.750102996826, - "thread": 140379336402752, + "relativeCreated": 15093.163013458252, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.30542, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864717, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 305.419921875, + "msecs": 864.7170066833496, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.829973220825, - "thread": 140379336402752, + "relativeCreated": 15093.215942382812, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 305.50193786621094, + "msecs": 864.7708892822266, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14960.911989212036, - "thread": 140379336402752, + "relativeCreated": 15093.26982498169, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 8.20159912109375e-05 + "time_consumption": 5.3882598876953125e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:23,649", - "created": 1610361443.649988, + "asctime": "2021-01-14 00:26:06,208", + "created": 1610580366.208666, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -83422,8 +83369,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.305679, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864923, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83433,22 +83380,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 305.6790828704834, + "msecs": 864.9230003356934, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14961.089134216309, - "thread": 140379336402752, + "relativeCreated": 15093.421936035156, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.305777, + "asctime": "2021-01-14 00:26:05,864", + "created": 1610580365.864981, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83458,39 +83405,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 305.77707290649414, + "msecs": 864.980936050415, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14961.18712425232, - "thread": 140379336402752, + "relativeCreated": 15093.479871749878, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,305", - "created": 1610361443.30592, + "asctime": "2021-01-14 00:26:05,865", + "created": 1610580365.865041, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 305.919885635376, + "msecs": 865.0410175323486, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14961.329936981201, - "thread": 140379336402752, + "relativeCreated": 15093.539953231812, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83501,33 +83448,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,306", - "created": 1610361443.306061, + "asctime": "2021-01-14 00:26:05,865", + "created": 1610580365.865143, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 306.0610294342041, + "msecs": 865.1430606842041, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14961.47108078003, - "thread": 140379336402752, + "relativeCreated": 15093.641996383667, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,306", - "created": 1610361443.306324, + "asctime": "2021-01-14 00:26:05,865", + "created": 1610580365.865333, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83537,22 +83484,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 306.3240051269531, + "msecs": 865.333080291748, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14961.734056472778, - "thread": 140379336402752, + "relativeCreated": 15093.832015991211, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,306", - "created": 1610361443.306424, + "asctime": "2021-01-14 00:26:05,865", + "created": 1610580365.86539, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83562,14 +83509,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 306.4239025115967, + "msecs": 865.3900623321533, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14961.833953857422, - "thread": 140379336402752, + "relativeCreated": 15093.888998031616, + "thread": 140019705194304, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-14 00:26:05,865", + "created": 1610580365.865438, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 439, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 865.4379844665527, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 5213, + "processName": "MainProcess", + "relativeCreated": 15093.936920166016, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -83577,8 +83549,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,306", - "created": 1610361443.306617, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867363, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83588,48 +83560,23 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 306.61702156066895, + "msecs": 867.3629760742188, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.027072906494, - "thread": 140377751271168, + "relativeCreated": 15095.861911773682, + "thread": 140018114868992, "threadName": "Thread-25" }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-01-11 11:37:23,306", - "created": 1610361443.306727, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 427, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 306.72693252563477, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 36164, - "processName": "MainProcess", - "relativeCreated": 14962.13698387146, - "thread": 140379336402752, - "threadName": "MainThread" - }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,306", - "created": 1610361443.306962, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867505, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83639,14 +83586,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 306.9620132446289, + "msecs": 867.5050735473633, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.372064590454, - "thread": 140377751271168, + "relativeCreated": 15096.004009246826, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83654,8 +83601,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307059, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867581, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83665,14 +83612,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 307.05904960632324, + "msecs": 867.5808906555176, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.469100952148, - "thread": 140377751271168, + "relativeCreated": 15096.07982635498, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83681,8 +83628,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307149, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867645, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83692,14 +83639,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 307.14893341064453, + "msecs": 867.6450252532959, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.55898475647, - "thread": 140377751271168, + "relativeCreated": 15096.143960952759, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83707,8 +83654,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307254, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867728, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83718,14 +83665,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 307.2540760040283, + "msecs": 867.7279949188232, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.664127349854, - "thread": 140377751271168, + "relativeCreated": 15096.226930618286, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83734,8 +83681,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307332, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867789, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83745,14 +83692,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 307.33203887939453, + "msecs": 867.7890300750732, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.74209022522, - "thread": 140377751271168, + "relativeCreated": 15096.287965774536, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83760,8 +83707,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307459, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867893, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83771,14 +83718,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 307.45911598205566, + "msecs": 867.8929805755615, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.86916732788, - "thread": 140377751271168, + "relativeCreated": 15096.391916275024, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83787,8 +83734,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307562, + "asctime": "2021-01-14 00:26:05,867", + "created": 1610580365.867958, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83798,14 +83745,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 307.56211280822754, + "msecs": 867.9580688476562, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14962.972164154053, - "thread": 140377751271168, + "relativeCreated": 15096.45700454712, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83813,8 +83760,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.30768, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868036, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83824,14 +83771,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 307.6798915863037, + "msecs": 868.0360317230225, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.089942932129, - "thread": 140377751271168, + "relativeCreated": 15096.534967422485, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83840,8 +83787,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307772, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868094, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83851,14 +83798,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 307.7719211578369, + "msecs": 868.0939674377441, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.181972503662, - "thread": 140377751271168, + "relativeCreated": 15096.592903137207, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83866,8 +83813,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307907, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.86818, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83877,14 +83824,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 307.9071044921875, + "msecs": 868.1800365447998, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.317155838013, - "thread": 140377751271168, + "relativeCreated": 15096.678972244263, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83893,8 +83840,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,307", - "created": 1610361443.307999, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868242, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83904,14 +83851,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 307.9988956451416, + "msecs": 868.2420253753662, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.408946990967, - "thread": 140377751271168, + "relativeCreated": 15096.74096107483, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83919,8 +83866,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:23,308", - "created": 1610361443.308137, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868343, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83930,14 +83877,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 308.1369400024414, + "msecs": 868.3431148529053, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.546991348267, - "thread": 140377751271168, + "relativeCreated": 15096.842050552368, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83945,8 +83892,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:23,308", - "created": 1610361443.308252, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868402, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -83956,14 +83903,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 308.25209617614746, + "msecs": 868.4020042419434, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.662147521973, - "thread": 140377751271168, + "relativeCreated": 15096.900939941406, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83971,8 +83918,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,308", - "created": 1610361443.308343, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868477, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -83982,14 +83929,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 308.34293365478516, + "msecs": 868.4771060943604, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.75298500061, - "thread": 140377751271168, + "relativeCreated": 15096.976041793823, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -83998,8 +83945,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,308", - "created": 1610361443.308419, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868549, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84009,14 +83956,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 308.41898918151855, + "msecs": 868.549108505249, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.829040527344, - "thread": 140377751271168, + "relativeCreated": 15097.048044204712, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84024,8 +83971,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:23,308", - "created": 1610361443.308584, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868701, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84035,14 +83982,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 308.58397483825684, + "msecs": 868.7009811401367, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14963.994026184082, - "thread": 140377751271168, + "relativeCreated": 15097.1999168396, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84053,25 +84000,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,308", - "created": 1610361443.308763, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 308.7630271911621, + "msecs": 868.8509464263916, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14964.173078536987, - "thread": 140377751271168, + "relativeCreated": 15097.349882125854, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84079,25 +84026,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:23,308", - "created": 1610361443.308871, + "asctime": "2021-01-14 00:26:05,868", + "created": 1610580365.868938, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 308.8710308074951, + "msecs": 868.9379692077637, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14964.28108215332, - "thread": 140377751271168, + "relativeCreated": 15097.436904907227, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84108,25 +84055,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,309", - "created": 1610361443.309017, + "asctime": "2021-01-14 00:26:05,869", + "created": 1610580365.869054, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 309.0169429779053, + "msecs": 869.0540790557861, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14964.42699432373, - "thread": 140377751271168, + "relativeCreated": 15097.553014755249, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84134,8 +84081,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310001, + "asctime": "2021-01-14 00:26:05,877", + "created": 1610580365.877467, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84145,14 +84092,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 310.0008964538574, + "msecs": 877.4669170379639, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14965.410947799683, - "thread": 140377742878464, + "relativeCreated": 15105.965852737427, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84160,8 +84107,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.31017, + "asctime": "2021-01-14 00:26:05,877", + "created": 1610580365.877832, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84171,14 +84118,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 310.16993522644043, + "msecs": 877.8319358825684, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14965.579986572266, - "thread": 140377742878464, + "relativeCreated": 15106.330871582031, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84186,8 +84133,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.31026, + "asctime": "2021-01-14 00:26:05,877", + "created": 1610580365.877977, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84197,14 +84144,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 310.2600574493408, + "msecs": 877.9768943786621, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14965.670108795166, - "thread": 140377742878464, + "relativeCreated": 15106.475830078125, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84213,8 +84160,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310394, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.878094, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84224,14 +84171,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 310.3940486907959, + "msecs": 878.093957901001, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14965.804100036621, - "thread": 140377742878464, + "relativeCreated": 15106.592893600464, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84239,8 +84186,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310537, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.878242, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84250,14 +84197,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 310.53709983825684, + "msecs": 878.242015838623, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14965.947151184082, - "thread": 140377742878464, + "relativeCreated": 15106.740951538086, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84266,8 +84213,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310604, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.87835, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84277,14 +84224,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 310.6040954589844, + "msecs": 878.350019454956, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.01414680481, - "thread": 140377742878464, + "relativeCreated": 15106.848955154419, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84292,8 +84239,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310692, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.878505, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84303,14 +84250,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 310.69207191467285, + "msecs": 878.5049915313721, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.102123260498, - "thread": 140377742878464, + "relativeCreated": 15107.003927230835, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84319,8 +84266,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310755, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.878607, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84330,14 +84277,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 310.75501441955566, + "msecs": 878.6070346832275, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.16506576538, - "thread": 140377742878464, + "relativeCreated": 15107.10597038269, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84345,8 +84292,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310842, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.878748, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84356,14 +84303,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 310.84203720092773, + "msecs": 878.7479400634766, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.252088546753, - "thread": 140377742878464, + "relativeCreated": 15107.24687576294, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84372,8 +84319,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,310", - "created": 1610361443.310914, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.878852, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84383,14 +84330,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 310.9140396118164, + "msecs": 878.8518905639648, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.324090957642, - "thread": 140377742878464, + "relativeCreated": 15107.350826263428, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84398,8 +84345,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.311025, + "asctime": "2021-01-14 00:26:05,878", + "created": 1610580365.878999, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84409,14 +84356,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 311.02490425109863, + "msecs": 878.9989948272705, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.434955596924, - "thread": 140377742878464, + "relativeCreated": 15107.497930526733, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84425,8 +84372,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.311106, + "asctime": "2021-01-14 00:26:05,879", + "created": 1610580365.879103, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84436,14 +84383,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 311.10596656799316, + "msecs": 879.1029453277588, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.516017913818, - "thread": 140377742878464, + "relativeCreated": 15107.601881027222, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84451,8 +84398,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.311227, + "asctime": "2021-01-14 00:26:05,879", + "created": 1610580365.879266, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84462,14 +84409,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 311.22708320617676, + "msecs": 879.2660236358643, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.637134552002, - "thread": 140377742878464, + "relativeCreated": 15107.764959335327, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84477,8 +84424,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.311323, + "asctime": "2021-01-14 00:26:05,879", + "created": 1610580365.879463, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84488,14 +84435,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 311.3229274749756, + "msecs": 879.4629573822021, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.7329788208, - "thread": 140377742878464, + "relativeCreated": 15107.961893081665, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84503,8 +84450,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.311425, + "asctime": "2021-01-14 00:26:05,879", + "created": 1610580365.879556, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84514,14 +84461,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 311.42497062683105, + "msecs": 879.5559406280518, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.835021972656, - "thread": 140377742878464, + "relativeCreated": 15108.054876327515, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84530,8 +84477,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.311517, + "asctime": "2021-01-14 00:26:05,879", + "created": 1610580365.87964, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84541,14 +84488,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 311.51700019836426, + "msecs": 879.6401023864746, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14966.92705154419, - "thread": 140377742878464, + "relativeCreated": 15108.139038085938, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84556,8 +84503,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.311698, + "asctime": "2021-01-14 00:26:05,879", + "created": 1610580365.879797, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84567,14 +84514,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 311.69795989990234, + "msecs": 879.7969818115234, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14967.108011245728, - "thread": 140377742878464, + "relativeCreated": 15108.295917510986, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84585,25 +84532,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.31188, + "asctime": "2021-01-14 00:26:05,880", + "created": 1610580365.880017, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 311.88011169433594, + "msecs": 880.0170421600342, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14967.290163040161, - "thread": 140377742878464, + "relativeCreated": 15108.515977859497, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -84611,43 +84558,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:23,311", - "created": 1610361443.31199, + "asctime": "2021-01-14 00:26:05,880", + "created": 1610580365.880126, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 311.99002265930176, + "msecs": 880.1259994506836, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 14967.400074005127, - "thread": 140377742878464, + "relativeCreated": 15108.624935150146, + "thread": 140018106476288, "threadName": "Thread-26" } ], - "msecs": 649.9879360198975, + "msecs": 208.6660861968994, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15305.397987365723, - "thread": 140379336402752, + "relativeCreated": 15437.165021896362, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3379979133605957 + "time_consumption": 0.3285400867462158 }, { "args": [], - "asctime": "2021-01-11 11:37:23,650", - "created": 1610361443.650546, + "asctime": "2021-01-14 00:26:06,209", + "created": 1610580366.209797, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -84665,8 +84612,8 @@ "None", "None" ], - "asctime": "2021-01-11 11:37:23,650", - "created": 1610361443.650409, + "asctime": "2021-01-14 00:26:06,209", + "created": 1610580366.209557, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84676,32 +84623,32 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=None and DID=None", "module": "__init__", - "msecs": 650.4089832305908, + "msecs": 209.55705642700195, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15305.819034576416, - "thread": 140379336402752, + "relativeCreated": 15438.055992126465, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 650.5460739135742, + "msecs": 209.79690551757812, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15305.9561252594, - "thread": 140379336402752, + "relativeCreated": 15438.295841217041, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00013709068298339844 + "time_consumption": 0.00023984909057617188 }, { "args": [], - "asctime": "2021-01-11 11:37:23,851", - "created": 1610361443.851664, + "asctime": "2021-01-14 00:26:06,411", + "created": 1610580366.411345, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -84720,25 +84667,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:23,650", - "created": 1610361443.650797, + "asctime": "2021-01-14 00:26:06,210", + "created": 1610580366.210201, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 650.7968902587891, + "msecs": 210.20102500915527, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15306.206941604614, - "thread": 140379336402752, + "relativeCreated": 15438.699960708618, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -84746,8 +84693,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:23,674", - "created": 1610361443.674197, + "asctime": "2021-01-14 00:26:06,234", + "created": 1610580366.234065, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84757,14 +84704,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 674.1969585418701, + "msecs": 234.06505584716797, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15329.607009887695, - "thread": 140377751271168, + "relativeCreated": 15462.56399154663, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84772,8 +84719,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:23,674", - "created": 1610361443.674859, + "asctime": "2021-01-14 00:26:06,234", + "created": 1610580366.234732, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84783,14 +84730,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 674.8590469360352, + "msecs": 234.73191261291504, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15330.26909828186, - "thread": 140377751271168, + "relativeCreated": 15463.230848312378, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84798,8 +84745,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,675", - "created": 1610361443.675129, + "asctime": "2021-01-14 00:26:06,235", + "created": 1610580366.235106, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84809,14 +84756,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 675.1289367675781, + "msecs": 235.1059913635254, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15330.538988113403, - "thread": 140377751271168, + "relativeCreated": 15463.604927062988, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84825,8 +84772,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,675", - "created": 1610361443.675365, + "asctime": "2021-01-14 00:26:06,235", + "created": 1610580366.235586, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84836,14 +84783,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 675.3649711608887, + "msecs": 235.58592796325684, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15330.775022506714, - "thread": 140377751271168, + "relativeCreated": 15464.08486366272, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84851,8 +84798,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,675", - "created": 1610361443.675662, + "asctime": "2021-01-14 00:26:06,235", + "created": 1610580366.235993, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84862,14 +84809,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 675.6620407104492, + "msecs": 235.9929084777832, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15331.072092056274, - "thread": 140377751271168, + "relativeCreated": 15464.491844177246, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84878,8 +84825,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,675", - "created": 1610361443.67588, + "asctime": "2021-01-14 00:26:06,236", + "created": 1610580366.236257, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84889,14 +84836,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 675.879955291748, + "msecs": 236.25707626342773, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15331.290006637573, - "thread": 140377751271168, + "relativeCreated": 15464.75601196289, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84904,8 +84851,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,676", - "created": 1610361443.67622, + "asctime": "2021-01-14 00:26:06,236", + "created": 1610580366.236634, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84915,14 +84862,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 676.2199401855469, + "msecs": 236.6340160369873, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15331.629991531372, - "thread": 140377751271168, + "relativeCreated": 15465.13295173645, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84931,8 +84878,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,676", - "created": 1610361443.676452, + "asctime": "2021-01-14 00:26:06,237", + "created": 1610580366.237251, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84942,14 +84889,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 676.4519214630127, + "msecs": 237.25104331970215, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15331.861972808838, - "thread": 140377751271168, + "relativeCreated": 15465.749979019165, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84957,8 +84904,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,676", - "created": 1610361443.676719, + "asctime": "2021-01-14 00:26:06,237", + "created": 1610580366.23759, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84968,14 +84915,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 676.7189502716064, + "msecs": 237.59007453918457, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15332.129001617432, - "thread": 140377751271168, + "relativeCreated": 15466.089010238647, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -84984,8 +84931,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,677", - "created": 1610361443.677083, + "asctime": "2021-01-14 00:26:06,237", + "created": 1610580366.237844, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -84995,14 +84942,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 677.0830154418945, + "msecs": 237.84399032592773, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15332.49306678772, - "thread": 140377751271168, + "relativeCreated": 15466.34292602539, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85010,8 +84957,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,677", - "created": 1610361443.677475, + "asctime": "2021-01-14 00:26:06,238", + "created": 1610580366.238696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85021,14 +84968,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 677.4749755859375, + "msecs": 238.69609832763672, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15332.885026931763, - "thread": 140377751271168, + "relativeCreated": 15467.1950340271, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85037,8 +84984,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,677", - "created": 1610361443.677658, + "asctime": "2021-01-14 00:26:06,239", + "created": 1610580366.239014, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85048,14 +84995,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 677.6580810546875, + "msecs": 239.0139102935791, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15333.068132400513, - "thread": 140377751271168, + "relativeCreated": 15467.512845993042, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85063,8 +85010,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:23,677", - "created": 1610361443.677974, + "asctime": "2021-01-14 00:26:06,239", + "created": 1610580366.239416, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -85074,14 +85021,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 677.9739856719971, + "msecs": 239.41588401794434, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15333.384037017822, - "thread": 140377751271168, + "relativeCreated": 15467.914819717407, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85089,8 +85036,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:23,678", - "created": 1610361443.678216, + "asctime": "2021-01-14 00:26:06,239", + "created": 1610580366.239945, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -85100,14 +85047,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 678.2159805297852, + "msecs": 239.9449348449707, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15333.62603187561, - "thread": 140377751271168, + "relativeCreated": 15468.443870544434, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85115,8 +85062,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,678", - "created": 1610361443.678471, + "asctime": "2021-01-14 00:26:06,240", + "created": 1610580366.240221, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85126,14 +85073,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 678.4710884094238, + "msecs": 240.2210235595703, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15333.881139755249, - "thread": 140377751271168, + "relativeCreated": 15468.719959259033, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85142,8 +85089,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,678", - "created": 1610361443.678718, + "asctime": "2021-01-14 00:26:06,240", + "created": 1610580366.240521, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85153,14 +85100,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 678.718090057373, + "msecs": 240.52095413208008, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15334.128141403198, - "thread": 140377751271168, + "relativeCreated": 15469.019889831543, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85168,8 +85115,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:23,678", - "created": 1610361443.678917, + "asctime": "2021-01-14 00:26:06,241", + "created": 1610580366.241011, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85179,14 +85126,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 678.9169311523438, + "msecs": 241.0109043121338, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15334.326982498169, - "thread": 140377751271168, + "relativeCreated": 15469.509840011597, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85197,25 +85144,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:23,679", - "created": 1610361443.679149, + "asctime": "2021-01-14 00:26:06,241", + "created": 1610580366.24155, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 679.1489124298096, + "msecs": 241.54996871948242, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15334.558963775635, - "thread": 140377751271168, + "relativeCreated": 15470.048904418945, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85223,25 +85170,25 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:23,679", - "created": 1610361443.679354, + "asctime": "2021-01-14 00:26:06,241", + "created": 1610580366.241904, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 679.3539524078369, + "msecs": 241.90402030944824, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15334.764003753662, - "thread": 140377751271168, + "relativeCreated": 15470.402956008911, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85252,25 +85199,25 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:23,679", - "created": 1610361443.679509, + "asctime": "2021-01-14 00:26:06,242", + "created": 1610580366.242262, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 679.5089244842529, + "msecs": 242.2618865966797, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15334.918975830078, - "thread": 140377751271168, + "relativeCreated": 15470.760822296143, + "thread": 140018114868992, "threadName": "Thread-25" }, { @@ -85278,8 +85225,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:23,713", - "created": 1610361443.713556, + "asctime": "2021-01-14 00:26:06,245", + "created": 1610580366.245402, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -85289,14 +85236,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 713.5560512542725, + "msecs": 245.40209770202637, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15368.966102600098, - "thread": 140377742878464, + "relativeCreated": 15473.90103340149, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85304,8 +85251,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:23,714", - "created": 1610361443.714229, + "asctime": "2021-01-14 00:26:06,245", + "created": 1610580366.245673, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -85315,14 +85262,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 714.2291069030762, + "msecs": 245.67294120788574, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15369.639158248901, - "thread": 140377742878464, + "relativeCreated": 15474.171876907349, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85330,8 +85277,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,714", - "created": 1610361443.714492, + "asctime": "2021-01-14 00:26:06,245", + "created": 1610580366.245794, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85341,14 +85288,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 714.4920825958252, + "msecs": 245.79405784606934, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15369.90213394165, - "thread": 140377742878464, + "relativeCreated": 15474.292993545532, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85357,8 +85304,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,714", - "created": 1610361443.714799, + "asctime": "2021-01-14 00:26:06,245", + "created": 1610580366.245899, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85368,14 +85315,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 714.7989273071289, + "msecs": 245.89896202087402, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15370.208978652954, - "thread": 140377742878464, + "relativeCreated": 15474.397897720337, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85383,8 +85330,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,715", - "created": 1610361443.71525, + "asctime": "2021-01-14 00:26:06,246", + "created": 1610580366.246084, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85394,14 +85341,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 715.2500152587891, + "msecs": 246.08397483825684, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15370.660066604614, - "thread": 140377742878464, + "relativeCreated": 15474.58291053772, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85410,8 +85357,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,715", - "created": 1610361443.715474, + "asctime": "2021-01-14 00:26:06,246", + "created": 1610580366.246194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85421,14 +85368,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 715.4738903045654, + "msecs": 246.19388580322266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15370.88394165039, - "thread": 140377742878464, + "relativeCreated": 15474.692821502686, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85436,8 +85383,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,715", - "created": 1610361443.715888, + "asctime": "2021-01-14 00:26:06,246", + "created": 1610580366.246371, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85447,14 +85394,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 715.8880233764648, + "msecs": 246.37103080749512, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15371.29807472229, - "thread": 140377742878464, + "relativeCreated": 15474.869966506958, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85463,8 +85410,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,716", - "created": 1610361443.716137, + "asctime": "2021-01-14 00:26:06,246", + "created": 1610580366.246503, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85474,14 +85421,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 716.1369323730469, + "msecs": 246.50311470031738, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15371.546983718872, - "thread": 140377742878464, + "relativeCreated": 15475.00205039978, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85489,8 +85436,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,716", - "created": 1610361443.716475, + "asctime": "2021-01-14 00:26:06,246", + "created": 1610580366.246667, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85500,14 +85447,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 716.4750099182129, + "msecs": 246.66690826416016, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15371.885061264038, - "thread": 140377742878464, + "relativeCreated": 15475.165843963623, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85516,8 +85463,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,716", - "created": 1610361443.716689, + "asctime": "2021-01-14 00:26:06,246", + "created": 1610580366.246794, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85527,14 +85474,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 716.6891098022461, + "msecs": 246.7939853668213, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15372.099161148071, - "thread": 140377742878464, + "relativeCreated": 15475.292921066284, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85542,8 +85489,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,717", - "created": 1610361443.717033, + "asctime": "2021-01-14 00:26:06,247", + "created": 1610580366.247068, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85553,14 +85500,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 717.0329093933105, + "msecs": 247.06792831420898, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15372.442960739136, - "thread": 140377742878464, + "relativeCreated": 15475.566864013672, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85569,8 +85516,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,717", - "created": 1610361443.717258, + "asctime": "2021-01-14 00:26:06,247", + "created": 1610580366.247229, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85580,14 +85527,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 717.2579765319824, + "msecs": 247.22909927368164, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15372.668027877808, - "thread": 140377742878464, + "relativeCreated": 15475.728034973145, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85595,8 +85542,8 @@ "comm-server:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:23,717", - "created": 1610361443.717759, + "asctime": "2021-01-14 00:26:06,247", + "created": 1610580366.247486, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -85606,14 +85553,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 717.7588939666748, + "msecs": 247.48611450195312, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15373.1689453125, - "thread": 140377742878464, + "relativeCreated": 15475.985050201416, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85621,8 +85568,8 @@ "comm-client:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:23,718", - "created": 1610361443.718399, + "asctime": "2021-01-14 00:26:06,247", + "created": 1610580366.24768, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -85632,14 +85579,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 718.3990478515625, + "msecs": 247.6799488067627, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15373.809099197388, - "thread": 140377742878464, + "relativeCreated": 15476.178884506226, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85647,8 +85594,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,718", - "created": 1610361443.718607, + "asctime": "2021-01-14 00:26:06,247", + "created": 1610580366.247853, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85658,14 +85605,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 718.6069488525391, + "msecs": 247.85304069519043, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15374.017000198364, - "thread": 140377742878464, + "relativeCreated": 15476.351976394653, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85674,8 +85621,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,718", - "created": 1610361443.718825, + "asctime": "2021-01-14 00:26:06,248", + "created": 1610580366.248009, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85685,14 +85632,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 718.825101852417, + "msecs": 248.00896644592285, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15374.235153198242, - "thread": 140377742878464, + "relativeCreated": 15476.507902145386, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85700,8 +85647,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" ], - "asctime": "2021-01-11 11:37:23,719", - "created": 1610361443.719232, + "asctime": "2021-01-14 00:26:06,248", + "created": 1610580366.248302, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -85711,14 +85658,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", "module": "stp", - "msecs": 719.2320823669434, + "msecs": 248.30198287963867, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15374.642133712769, - "thread": 140377742878464, + "relativeCreated": 15476.800918579102, + "thread": 140018106476288, "threadName": "Thread-26" }, { @@ -85729,71 +85676,71 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:23,719", - "created": 1610361443.719688, + "asctime": "2021-01-14 00:26:06,248", + "created": 1610580366.248596, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 719.6879386901855, + "msecs": 248.5959529876709, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15375.09799003601, - "thread": 140377742878464, + "relativeCreated": 15477.094888687134, + "thread": 140018106476288, "threadName": "Thread-26" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,719", - "created": 1610361443.719989, + "asctime": "2021-01-14 00:26:06,248", + "created": 1610580366.248818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 719.9890613555908, + "msecs": 248.81792068481445, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15375.399112701416, - "thread": 140377742878464, + "relativeCreated": 15477.316856384277, + "thread": 140018106476288, "threadName": "Thread-26" } ], - "msecs": 851.6640663146973, + "msecs": 411.3450050354004, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15507.074117660522, - "thread": 140379336402752, + "relativeCreated": 15639.843940734863, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.13167500495910645 + "time_consumption": 0.16252708435058594 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,852", - "created": 1610361443.852833, + "asctime": "2021-01-14 00:26:06,412", + "created": 1610580366.412746, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -85810,8 +85757,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,852", - "created": 1610361443.852232, + "asctime": "2021-01-14 00:26:06,412", + "created": 1610580366.41209, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -85821,14 +85768,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 852.2319793701172, + "msecs": 412.0900630950928, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15507.642030715942, - "thread": 140379336402752, + "relativeCreated": 15640.588998794556, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -85837,8 +85784,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,852", - "created": 1610361443.852523, + "asctime": "2021-01-14 00:26:06,412", + "created": 1610580366.412393, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -85848,35 +85795,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 852.5230884552002, + "msecs": 412.39309310913086, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15507.933139801025, - "thread": 140379336402752, + "relativeCreated": 15640.892028808594, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 852.8330326080322, + "msecs": 412.7459526062012, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15508.243083953857, - "thread": 140379336402752, + "relativeCreated": 15641.244888305664, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00030994415283203125 + "time_consumption": 0.0003528594970703125 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,853", - "created": 1610361443.853774, + "asctime": "2021-01-14 00:26:06,413", + "created": 1610580366.413694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -85893,8 +85840,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,853", - "created": 1610361443.853265, + "asctime": "2021-01-14 00:26:06,413", + "created": 1610580366.413108, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -85904,14 +85851,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 853.2650470733643, + "msecs": 413.10811042785645, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15508.67509841919, - "thread": 140379336402752, + "relativeCreated": 15641.60704612732, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -85920,8 +85867,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:23,853", - "created": 1610361443.853589, + "asctime": "2021-01-14 00:26:06,413", + "created": 1610580366.413352, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -85931,39 +85878,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 853.5890579223633, + "msecs": 413.35201263427734, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15508.999109268188, - "thread": 140379336402752, + "relativeCreated": 15641.85094833374, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 853.7740707397461, + "msecs": 413.693904876709, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15509.184122085571, - "thread": 140379336402752, + "relativeCreated": 15642.192840576172, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 + "time_consumption": 0.0003418922424316406 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.5543711185455322, - "time_finished": "2021-01-11 11:37:23,853", - "time_start": "2021-01-11 11:37:23,299" + "time_consumption": 0.5573577880859375, + "time_finished": "2021-01-14 00:26:06,413", + "time_start": "2021-01-14 00:26:05,856" }, "_r9srME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:21,211", - "created": 1610361441.211067, + "asctime": "2021-01-14 00:26:03,769", + "created": 1610580363.769476, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -85974,18 +85921,18 @@ "message": "_r9srME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 211.06696128845215, + "msecs": 769.4759368896484, "msg": "_r9srME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12866.477012634277, + "relativeCreated": 12997.974872589111, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219543, + "asctime": "2021-01-14 00:26:03,776", + "created": 1610580363.776247, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -86000,8 +85947,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:21,212", - "created": 1610361441.212354, + "asctime": "2021-01-14 00:26:03,770", + "created": 1610580363.770579, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86011,22 +85958,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 212.35394477844238, + "msecs": 770.5790996551514, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12867.763996124268, - "thread": 140379336402752, + "relativeCreated": 12999.078035354614, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:21,213", - "created": 1610361441.213759, + "asctime": "2021-01-14 00:26:03,771", + "created": 1610580363.771398, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86036,22 +85983,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 213.7589454650879, + "msecs": 771.3980674743652, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12869.168996810913, - "thread": 140379336402752, + "relativeCreated": 12999.897003173828, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:21,214", - "created": 1610361441.214093, + "asctime": "2021-01-14 00:26:03,771", + "created": 1610580363.771647, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86061,39 +86008,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 214.09296989440918, + "msecs": 771.6469764709473, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12869.503021240234, - "thread": 140379336402752, + "relativeCreated": 13000.14591217041, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:21,214", - "created": 1610361441.214866, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.772178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 214.86592292785645, + "msecs": 772.1779346466064, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12870.275974273682, - "thread": 140379336402752, + "relativeCreated": 13000.67687034607, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86102,25 +86049,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:21,215", - "created": 1610361441.215165, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.772312, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 215.1648998260498, + "msecs": 772.3119258880615, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12870.574951171875, - "thread": 140379336402752, + "relativeCreated": 13000.810861587524, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86128,25 +86075,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:21,215", - "created": 1610361441.215515, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.772458, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 215.5148983001709, + "msecs": 772.4580764770508, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12870.924949645996, - "thread": 140379336402752, + "relativeCreated": 13000.957012176514, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86154,25 +86101,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:21,215", - "created": 1610361441.215833, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.772541, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 215.83294868469238, + "msecs": 772.5410461425781, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12871.243000030518, - "thread": 140379336402752, + "relativeCreated": 13001.039981842041, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86180,25 +86127,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:21,216", - "created": 1610361441.216047, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.772623, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 216.0470485687256, + "msecs": 772.6230621337891, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12871.45709991455, - "thread": 140379336402752, + "relativeCreated": 13001.121997833252, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86206,25 +86153,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:21,216", - "created": 1610361441.216255, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.772718, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 216.25494956970215, + "msecs": 772.7179527282715, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12871.665000915527, - "thread": 140379336402752, + "relativeCreated": 13001.216888427734, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86234,8 +86181,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:21,216", - "created": 1610361441.216499, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.77282, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86245,14 +86192,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 216.49909019470215, + "msecs": 772.819995880127, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12871.909141540527, - "thread": 140379336402752, + "relativeCreated": 13001.31893157959, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86262,8 +86209,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:21,216", - "created": 1610361441.21679, + "asctime": "2021-01-14 00:26:03,772", + "created": 1610580363.772923, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86273,14 +86220,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 216.78996086120605, + "msecs": 772.9229927062988, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12872.200012207031, - "thread": 140379336402752, + "relativeCreated": 13001.421928405762, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86290,8 +86237,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217042, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773024, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86301,14 +86248,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 217.0419692993164, + "msecs": 773.0240821838379, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12872.452020645142, - "thread": 140379336402752, + "relativeCreated": 13001.5230178833, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86318,8 +86265,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217287, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773105, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86329,39 +86276,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 217.2870635986328, + "msecs": 773.1049060821533, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12872.697114944458, - "thread": 140379336402752, + "relativeCreated": 13001.603841781616, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217517, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773207, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 217.51689910888672, + "msecs": 773.2069492340088, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12872.926950454712, - "thread": 140379336402752, + "relativeCreated": 13001.705884933472, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86370,25 +86317,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217616, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773294, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 217.61608123779297, + "msecs": 773.2939720153809, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.026132583618, - "thread": 140379336402752, + "relativeCreated": 13001.792907714844, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86396,25 +86343,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.21769, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.77338, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 217.68999099731445, + "msecs": 773.3800411224365, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.10004234314, - "thread": 140379336402752, + "relativeCreated": 13001.8789768219, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86422,25 +86369,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217755, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773459, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 217.75507926940918, + "msecs": 773.4589576721191, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.165130615234, - "thread": 140379336402752, + "relativeCreated": 13001.957893371582, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86450,8 +86397,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217823, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773565, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86461,14 +86408,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 217.82302856445312, + "msecs": 773.5650539398193, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.233079910278, - "thread": 140379336402752, + "relativeCreated": 13002.063989639282, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86478,8 +86425,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217892, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773663, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86489,14 +86436,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 217.89193153381348, + "msecs": 773.6630439758301, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.301982879639, - "thread": 140379336402752, + "relativeCreated": 13002.161979675293, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86505,25 +86452,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:21,217", - "created": 1610361441.217961, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773764, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 217.96107292175293, + "msecs": 773.76389503479, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.371124267578, - "thread": 140379336402752, + "relativeCreated": 13002.262830734253, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86532,25 +86479,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218021, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773854, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 218.02091598510742, + "msecs": 773.8540172576904, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.430967330933, - "thread": 140379336402752, + "relativeCreated": 13002.352952957153, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86559,75 +86506,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218082, + "asctime": "2021-01-14 00:26:03,773", + "created": 1610580363.773942, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 218.08195114135742, + "msecs": 773.9419937133789, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.492002487183, - "thread": 140379336402752, + "relativeCreated": 13002.440929412842, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218158, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.774033, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 218.15800666809082, + "msecs": 774.0330696105957, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.568058013916, - "thread": 140379336402752, + "relativeCreated": 13002.532005310059, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.21829, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.774322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 218.2900905609131, + "msecs": 774.3220329284668, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.700141906738, - "thread": 140379336402752, + "relativeCreated": 13002.82096862793, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86636,25 +86583,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218349, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.77442, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 218.34897994995117, + "msecs": 774.4200229644775, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.759031295776, - "thread": 140379336402752, + "relativeCreated": 13002.91895866394, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86662,25 +86609,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218419, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.77454, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 218.41907501220703, + "msecs": 774.5399475097656, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.829126358032, - "thread": 140379336402752, + "relativeCreated": 13003.038883209229, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86688,25 +86635,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218475, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.774618, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 218.4751033782959, + "msecs": 774.6179103851318, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.885154724121, - "thread": 140379336402752, + "relativeCreated": 13003.116846084595, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86714,25 +86661,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218525, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.774696, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 218.52493286132812, + "msecs": 774.6961116790771, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.934984207153, - "thread": 140379336402752, + "relativeCreated": 13003.19504737854, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86740,25 +86687,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218574, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.774766, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 218.57404708862305, + "msecs": 774.7659683227539, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12873.984098434448, - "thread": 140379336402752, + "relativeCreated": 13003.264904022217, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86768,8 +86715,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218808, + "asctime": "2021-01-14 00:26:03,774", + "created": 1610580363.774844, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86779,14 +86726,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 218.80793571472168, + "msecs": 774.8439311981201, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.217987060547, - "thread": 140379336402752, + "relativeCreated": 13003.342866897583, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86796,8 +86743,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218871, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775184, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86807,14 +86754,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 218.8711166381836, + "msecs": 775.183916091919, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.281167984009, - "thread": 140379336402752, + "relativeCreated": 13003.682851791382, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86824,8 +86771,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218933, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775278, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86835,14 +86782,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 218.93310546875, + "msecs": 775.2780914306641, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.343156814575, - "thread": 140379336402752, + "relativeCreated": 13003.777027130127, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86852,8 +86799,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:21,218", - "created": 1610361441.218997, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775362, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86863,39 +86810,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 218.99700164794922, + "msecs": 775.3620147705078, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.407052993774, - "thread": 140379336402752, + "relativeCreated": 13003.86095046997, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219039, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775436, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 219.0389633178711, + "msecs": 775.4359245300293, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.449014663696, - "thread": 140379336402752, + "relativeCreated": 13003.934860229492, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86904,25 +86851,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219105, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775525, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 219.10500526428223, + "msecs": 775.5250930786133, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.515056610107, - "thread": 140379336402752, + "relativeCreated": 13004.024028778076, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86930,25 +86877,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219164, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775609, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 219.1638946533203, + "msecs": 775.609016418457, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.573945999146, - "thread": 140379336402752, + "relativeCreated": 13004.10795211792, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86956,25 +86903,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219219, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775684, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 219.21896934509277, + "msecs": 775.684118270874, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.629020690918, - "thread": 140379336402752, + "relativeCreated": 13004.183053970337, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -86984,8 +86931,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219278, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775767, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86995,14 +86942,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 219.27809715270996, + "msecs": 775.7670879364014, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.688148498535, - "thread": 140379336402752, + "relativeCreated": 13004.266023635864, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -87012,8 +86959,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219326, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775851, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87023,14 +86970,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 219.32601928710938, + "msecs": 775.8510112762451, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.736070632935, - "thread": 140379336402752, + "relativeCreated": 13004.349946975708, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -87039,25 +86986,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219375, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775928, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 219.3748950958252, + "msecs": 775.9280204772949, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.78494644165, - "thread": 140379336402752, + "relativeCreated": 13004.426956176758, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -87066,25 +87013,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219417, + "asctime": "2021-01-14 00:26:03,775", + "created": 1610580363.775999, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 219.41709518432617, + "msecs": 775.9990692138672, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.827146530151, - "thread": 140379336402752, + "relativeCreated": 13004.49800491333, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -87093,68 +87040,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219458, + "asctime": "2021-01-14 00:26:03,776", + "created": 1610580363.776069, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 219.45810317993164, + "msecs": 776.068925857544, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.868154525757, - "thread": 140379336402752, + "relativeCreated": 13004.567861557007, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.2195, + "asctime": "2021-01-14 00:26:03,776", + "created": 1610580363.776145, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 219.50006484985352, + "msecs": 776.1449813842773, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.910116195679, - "thread": 140379336402752, + "relativeCreated": 13004.64391708374, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 219.5429801940918, + "msecs": 776.2470245361328, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12874.953031539917, - "thread": 140379336402752, + "relativeCreated": 13004.745960235596, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 4.291534423828125e-05 + "time_consumption": 0.00010204315185546875 }, { "args": [], - "asctime": "2021-01-11 11:37:21,563", - "created": 1610361441.563358, + "asctime": "2021-01-14 00:26:04,120", + "created": 1610580364.120373, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -87169,8 +87116,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219637, + "asctime": "2021-01-14 00:26:03,776", + "created": 1610580363.776441, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87180,22 +87127,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 219.6369171142578, + "msecs": 776.4410972595215, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12875.046968460083, - "thread": 140379336402752, + "relativeCreated": 13004.940032958984, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219696, + "asctime": "2021-01-14 00:26:03,776", + "created": 1610580363.776548, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87205,39 +87152,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 219.696044921875, + "msecs": 776.547908782959, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12875.1060962677, - "thread": 140379336402752, + "relativeCreated": 13005.046844482422, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219751, + "asctime": "2021-01-14 00:26:03,776", + "created": 1610580363.776657, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 219.75088119506836, + "msecs": 776.6571044921875, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12875.160932540894, - "thread": 140379336402752, + "relativeCreated": 13005.15604019165, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -87248,33 +87195,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219845, + "asctime": "2021-01-14 00:26:03,776", + "created": 1610580363.77682, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 219.84505653381348, + "msecs": 776.8199443817139, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12875.255107879639, - "thread": 140379336402752, + "relativeCreated": 13005.318880081177, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:21,219", - "created": 1610361441.219991, + "asctime": "2021-01-14 00:26:03,777", + "created": 1610580363.777158, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87284,22 +87231,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 219.99096870422363, + "msecs": 777.1580219268799, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12875.401020050049, - "thread": 140379336402752, + "relativeCreated": 13005.656957626343, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:21,220", - "created": 1610361441.220053, + "asctime": "2021-01-14 00:26:03,777", + "created": 1610580363.777281, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87309,39 +87256,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 220.05295753479004, + "msecs": 777.2810459136963, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12875.463008880615, - "thread": 140379336402752, + "relativeCreated": 13005.77998161316, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:21,220", - "created": 1610361441.220111, + "asctime": "2021-01-14 00:26:03,777", + "created": 1610580363.777392, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 220.11089324951172, + "msecs": 777.3919105529785, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12875.520944595337, - "thread": 140379336402752, + "relativeCreated": 13005.890846252441, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -87349,8 +87296,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:21,221", - "created": 1610361441.221714, + "asctime": "2021-01-14 00:26:03,778", + "created": 1610580363.778443, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87360,14 +87307,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 221.71401977539062, + "msecs": 778.4430980682373, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.124071121216, - "thread": 140378279749376, + "relativeCreated": 13006.9420337677, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87375,8 +87322,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:21,221", - "created": 1610361441.221838, + "asctime": "2021-01-14 00:26:03,778", + "created": 1610580363.778651, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87386,14 +87333,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 221.83799743652344, + "msecs": 778.6509990692139, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.248048782349, - "thread": 140378279749376, + "relativeCreated": 13007.149934768677, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87401,8 +87348,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,221", - "created": 1610361441.221893, + "asctime": "2021-01-14 00:26:03,778", + "created": 1610580363.77877, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87412,14 +87359,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 221.8930721282959, + "msecs": 778.7699699401855, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.303123474121, - "thread": 140378279749376, + "relativeCreated": 13007.268905639648, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87428,8 +87375,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:21,221", - "created": 1610361441.221943, + "asctime": "2021-01-14 00:26:03,778", + "created": 1610580363.77887, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87439,14 +87386,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 221.94290161132812, + "msecs": 778.8701057434082, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.352952957153, - "thread": 140378279749376, + "relativeCreated": 13007.369041442871, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87454,8 +87401,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222007, + "asctime": "2021-01-14 00:26:03,778", + "created": 1610580363.778993, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87465,14 +87412,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 222.00703620910645, + "msecs": 778.9928913116455, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.417087554932, - "thread": 140378279749376, + "relativeCreated": 13007.491827011108, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87481,8 +87428,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222056, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779086, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87492,14 +87439,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 222.05591201782227, + "msecs": 779.0861129760742, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.465963363647, - "thread": 140378279749376, + "relativeCreated": 13007.585048675537, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87507,8 +87454,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222122, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779213, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87518,14 +87465,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 222.1219539642334, + "msecs": 779.2129516601562, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.532005310059, - "thread": 140378279749376, + "relativeCreated": 13007.71188735962, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87534,8 +87481,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.22218, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779307, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87545,14 +87492,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 222.17988967895508, + "msecs": 779.3068885803223, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.58994102478, - "thread": 140378279749376, + "relativeCreated": 13007.805824279785, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87560,8 +87507,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222258, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779419, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87571,14 +87518,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 222.2580909729004, + "msecs": 779.4189453125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.668142318726, - "thread": 140378279749376, + "relativeCreated": 13007.917881011963, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87587,8 +87534,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222305, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779521, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87598,14 +87545,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 222.3050594329834, + "msecs": 779.5209884643555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.715110778809, - "thread": 140378279749376, + "relativeCreated": 13008.019924163818, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87613,8 +87560,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.22237, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779619, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87624,14 +87571,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 222.36990928649902, + "msecs": 779.6189785003662, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.779960632324, - "thread": 140378279749376, + "relativeCreated": 13008.11791419983, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87640,8 +87587,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222416, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779688, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87651,14 +87598,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 222.41592407226562, + "msecs": 779.6878814697266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.82597541809, - "thread": 140378279749376, + "relativeCreated": 13008.18681716919, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87666,8 +87613,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222487, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779791, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87677,14 +87624,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 222.4869728088379, + "msecs": 779.7911167144775, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.897024154663, - "thread": 140378279749376, + "relativeCreated": 13008.29005241394, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87692,8 +87639,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222556, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.779881, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87703,14 +87650,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 222.55611419677734, + "msecs": 779.8810005187988, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12877.966165542603, - "thread": 140378279749376, + "relativeCreated": 13008.379936218262, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87718,8 +87665,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.22261, + "asctime": "2021-01-14 00:26:03,779", + "created": 1610580363.77996, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87729,14 +87676,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 222.6099967956543, + "msecs": 779.9599170684814, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12878.02004814148, - "thread": 140378279749376, + "relativeCreated": 13008.458852767944, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87745,8 +87692,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222657, + "asctime": "2021-01-14 00:26:03,780", + "created": 1610580363.780029, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87756,14 +87703,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 222.6569652557373, + "msecs": 780.0290584564209, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12878.067016601562, - "thread": 140378279749376, + "relativeCreated": 13008.527994155884, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87771,8 +87718,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222759, + "asctime": "2021-01-14 00:26:03,780", + "created": 1610580363.780172, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87782,14 +87729,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 222.75900840759277, + "msecs": 780.1721096038818, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12878.169059753418, - "thread": 140378279749376, + "relativeCreated": 13008.671045303345, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87800,25 +87747,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222876, + "asctime": "2021-01-14 00:26:03,780", + "created": 1610580363.780356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 222.87607192993164, + "msecs": 780.3559303283691, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12878.286123275757, - "thread": 140378279749376, + "relativeCreated": 13008.854866027832, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87826,25 +87773,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:21,222", - "created": 1610361441.222938, + "asctime": "2021-01-14 00:26:03,780", + "created": 1610580363.780452, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 222.93806076049805, + "msecs": 780.4520130157471, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12878.348112106323, - "thread": 140378279749376, + "relativeCreated": 13008.95094871521, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87855,25 +87802,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:21,223", - "created": 1610361441.223023, + "asctime": "2021-01-14 00:26:03,780", + "created": 1610580363.780576, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 223.0229377746582, + "msecs": 780.5759906768799, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12878.432989120483, - "thread": 140378279749376, + "relativeCreated": 13009.074926376343, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -87881,8 +87828,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:21,230", - "created": 1610361441.230517, + "asctime": "2021-01-14 00:26:03,781", + "created": 1610580363.781751, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87892,14 +87839,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 230.51691055297852, + "msecs": 781.7509174346924, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12885.926961898804, - "thread": 140378271356672, + "relativeCreated": 13010.249853134155, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -87907,8 +87854,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:21,230", - "created": 1610361441.23084, + "asctime": "2021-01-14 00:26:03,781", + "created": 1610580363.781994, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -87918,14 +87865,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 230.83996772766113, + "msecs": 781.994104385376, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12886.250019073486, - "thread": 140378271356672, + "relativeCreated": 13010.493040084839, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -87933,8 +87880,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,230", - "created": 1610361441.230965, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782117, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87944,14 +87891,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 230.96489906311035, + "msecs": 782.1168899536133, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12886.374950408936, - "thread": 140378271356672, + "relativeCreated": 13010.615825653076, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -87960,8 +87907,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231082, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782227, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87971,14 +87918,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 231.08196258544922, + "msecs": 782.2270393371582, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12886.492013931274, - "thread": 140378271356672, + "relativeCreated": 13010.725975036621, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -87986,8 +87933,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231242, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782367, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -87997,14 +87944,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 231.24194145202637, + "msecs": 782.3669910430908, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12886.651992797852, - "thread": 140378271356672, + "relativeCreated": 13010.865926742554, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88013,8 +87960,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231327, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782465, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88024,14 +87971,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 231.32705688476562, + "msecs": 782.4649810791016, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12886.73710823059, - "thread": 140378271356672, + "relativeCreated": 13010.963916778564, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88039,8 +87986,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231436, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782601, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88050,14 +87997,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 231.43601417541504, + "msecs": 782.6011180877686, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12886.84606552124, - "thread": 140378271356672, + "relativeCreated": 13011.100053787231, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88066,8 +88013,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231515, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782703, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88077,14 +88024,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 231.51493072509766, + "msecs": 782.7029228210449, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12886.924982070923, - "thread": 140378271356672, + "relativeCreated": 13011.201858520508, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88092,8 +88039,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231626, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782838, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88103,14 +88050,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 231.62603378295898, + "msecs": 782.8381061553955, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.036085128784, - "thread": 140378271356672, + "relativeCreated": 13011.337041854858, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88119,8 +88066,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231704, + "asctime": "2021-01-14 00:26:03,782", + "created": 1610580363.782949, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88130,14 +88077,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 231.7039966583252, + "msecs": 782.9489707946777, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.11404800415, - "thread": 140378271356672, + "relativeCreated": 13011.44790649414, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88145,8 +88092,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.23181, + "asctime": "2021-01-14 00:26:03,783", + "created": 1610580363.783101, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88156,14 +88103,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 231.8100929260254, + "msecs": 783.1010818481445, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.22014427185, - "thread": 140378271356672, + "relativeCreated": 13011.600017547607, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88172,8 +88119,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,231", - "created": 1610361441.231916, + "asctime": "2021-01-14 00:26:03,783", + "created": 1610580363.783201, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88183,14 +88130,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 231.91595077514648, + "msecs": 783.2009792327881, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.326002120972, - "thread": 140378271356672, + "relativeCreated": 13011.699914932251, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88198,8 +88145,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:21,232", - "created": 1610361441.232105, + "asctime": "2021-01-14 00:26:03,783", + "created": 1610580363.78336, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -88209,14 +88156,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 232.10501670837402, + "msecs": 783.3600044250488, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.5150680542, - "thread": 140378271356672, + "relativeCreated": 13011.858940124512, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88224,8 +88171,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:21,232", - "created": 1610361441.232206, + "asctime": "2021-01-14 00:26:03,783", + "created": 1610580363.783502, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -88235,14 +88182,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 232.2061061859131, + "msecs": 783.5021018981934, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.616157531738, - "thread": 140378271356672, + "relativeCreated": 13012.001037597656, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88250,8 +88197,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,232", - "created": 1610361441.23229, + "asctime": "2021-01-14 00:26:03,783", + "created": 1610580363.783589, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88261,14 +88208,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 232.29002952575684, + "msecs": 783.5888862609863, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.700080871582, - "thread": 140378271356672, + "relativeCreated": 13012.08782196045, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88277,8 +88224,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:21,232", - "created": 1610361441.232363, + "asctime": "2021-01-14 00:26:03,783", + "created": 1610580363.783662, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88288,14 +88235,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 232.3629856109619, + "msecs": 783.6620807647705, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.773036956787, - "thread": 140378271356672, + "relativeCreated": 13012.161016464233, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88303,8 +88250,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:21,232", - "created": 1610361441.232566, + "asctime": "2021-01-14 00:26:03,783", + "created": 1610580363.783945, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88314,14 +88261,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 232.56611824035645, + "msecs": 783.9450836181641, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12887.976169586182, - "thread": 140378271356672, + "relativeCreated": 13012.444019317627, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88332,25 +88279,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:21,232", - "created": 1610361441.232805, + "asctime": "2021-01-14 00:26:03,784", + "created": 1610580363.784163, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 232.8050136566162, + "msecs": 784.1629981994629, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12888.215065002441, - "thread": 140378271356672, + "relativeCreated": 13012.661933898926, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -88358,43 +88305,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:21,232", - "created": 1610361441.232927, + "asctime": "2021-01-14 00:26:03,784", + "created": 1610580363.784322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 232.9270839691162, + "msecs": 784.3220233917236, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 12888.337135314941, - "thread": 140378271356672, + "relativeCreated": 13012.820959091187, + "thread": 140018634954496, "threadName": "Thread-20" } ], - "msecs": 563.3580684661865, + "msecs": 120.37301063537598, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13218.768119812012, - "thread": 140379336402752, + "relativeCreated": 13348.871946334839, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3304309844970703 + "time_consumption": 0.33605098724365234 }, { "args": [], - "asctime": "2021-01-11 11:37:21,564", - "created": 1610361441.564207, + "asctime": "2021-01-14 00:26:04,121", + "created": 1610580364.121952, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -88412,8 +88359,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:21,563", - "created": 1610361441.563985, + "asctime": "2021-01-14 00:26:04,121", + "created": 1610580364.121385, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -88423,32 +88370,32 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 563.9851093292236, + "msecs": 121.38509750366211, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13219.395160675049, - "thread": 140379336402752, + "relativeCreated": 13349.884033203125, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 564.2070770263672, + "msecs": 121.95205688476562, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13219.617128372192, - "thread": 140379336402752, + "relativeCreated": 13350.450992584229, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002219676971435547 + "time_consumption": 0.0005669593811035156 }, { "args": [], - "asctime": "2021-01-11 11:37:21,766", - "created": 1610361441.766279, + "asctime": "2021-01-14 00:26:04,323", + "created": 1610580364.323812, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -88467,25 +88414,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:21,564", - "created": 1610361441.564664, + "asctime": "2021-01-14 00:26:04,122", + "created": 1610580364.122508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 564.6638870239258, + "msecs": 122.50804901123047, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13220.073938369751, - "thread": 140379336402752, + "relativeCreated": 13351.006984710693, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -88493,8 +88440,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:21,588", - "created": 1610361441.588671, + "asctime": "2021-01-14 00:26:04,145", + "created": 1610580364.145878, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -88504,14 +88451,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 588.6709690093994, + "msecs": 145.87807655334473, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13244.081020355225, - "thread": 140378279749376, + "relativeCreated": 13374.377012252808, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88519,8 +88466,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:21,589", - "created": 1610361441.58938, + "asctime": "2021-01-14 00:26:04,146", + "created": 1610580364.146486, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -88530,14 +88477,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 589.3800258636475, + "msecs": 146.4860439300537, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13244.790077209473, - "thread": 140378279749376, + "relativeCreated": 13374.984979629517, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88545,8 +88492,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,589", - "created": 1610361441.589664, + "asctime": "2021-01-14 00:26:04,146", + "created": 1610580364.14674, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88556,14 +88503,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 589.6639823913574, + "msecs": 146.73995971679688, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13245.074033737183, - "thread": 140378279749376, + "relativeCreated": 13375.23889541626, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88572,8 +88519,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:21,589", - "created": 1610361441.589916, + "asctime": "2021-01-14 00:26:04,146", + "created": 1610580364.146963, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88583,14 +88530,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 589.9159908294678, + "msecs": 146.96288108825684, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13245.326042175293, - "thread": 140378279749376, + "relativeCreated": 13375.46181678772, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88598,8 +88545,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,590", - "created": 1610361441.590367, + "asctime": "2021-01-14 00:26:04,147", + "created": 1610580364.147233, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88609,14 +88556,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 590.3670787811279, + "msecs": 147.2330093383789, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13245.777130126953, - "thread": 140378279749376, + "relativeCreated": 13375.731945037842, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88625,8 +88572,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,590", - "created": 1610361441.590613, + "asctime": "2021-01-14 00:26:04,147", + "created": 1610580364.147483, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88636,14 +88583,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 590.6128883361816, + "msecs": 147.48311042785645, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13246.022939682007, - "thread": 140378279749376, + "relativeCreated": 13375.98204612732, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88651,8 +88598,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,591", - "created": 1610361441.591177, + "asctime": "2021-01-14 00:26:04,148", + "created": 1610580364.148077, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88662,14 +88609,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 591.1769866943359, + "msecs": 148.07701110839844, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13246.587038040161, - "thread": 140378279749376, + "relativeCreated": 13376.575946807861, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88678,8 +88625,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,591", - "created": 1610361441.591418, + "asctime": "2021-01-14 00:26:04,148", + "created": 1610580364.148352, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88689,14 +88636,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 591.4180278778076, + "msecs": 148.35190773010254, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13246.828079223633, - "thread": 140378279749376, + "relativeCreated": 13376.850843429565, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88704,8 +88651,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,591", - "created": 1610361441.591731, + "asctime": "2021-01-14 00:26:04,148", + "created": 1610580364.148708, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88715,14 +88662,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 591.731071472168, + "msecs": 148.70810508728027, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13247.141122817993, - "thread": 140378279749376, + "relativeCreated": 13377.207040786743, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88731,8 +88678,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,591", - "created": 1610361441.59197, + "asctime": "2021-01-14 00:26:04,148", + "created": 1610580364.148962, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88742,14 +88689,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 591.9699668884277, + "msecs": 148.96202087402344, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13247.380018234253, - "thread": 140378279749376, + "relativeCreated": 13377.460956573486, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88757,8 +88704,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,592", - "created": 1610361441.592195, + "asctime": "2021-01-14 00:26:04,149", + "created": 1610580364.149429, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88768,14 +88715,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 592.1950340270996, + "msecs": 149.4290828704834, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13247.605085372925, - "thread": 140378279749376, + "relativeCreated": 13377.928018569946, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88784,8 +88731,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,592", - "created": 1610361441.59235, + "asctime": "2021-01-14 00:26:04,149", + "created": 1610580364.149659, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88795,14 +88742,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 592.3500061035156, + "msecs": 149.6589183807373, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13247.76005744934, - "thread": 140378279749376, + "relativeCreated": 13378.1578540802, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88810,8 +88757,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:21,592", - "created": 1610361441.59259, + "asctime": "2021-01-14 00:26:04,150", + "created": 1610580364.150043, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -88821,14 +88768,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 592.5900936126709, + "msecs": 150.04301071166992, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13248.000144958496, - "thread": 140378279749376, + "relativeCreated": 13378.541946411133, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88836,8 +88783,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:21,592", - "created": 1610361441.592812, + "asctime": "2021-01-14 00:26:04,150", + "created": 1610580364.150267, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -88847,14 +88794,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 592.8120613098145, + "msecs": 150.2668857574463, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13248.22211265564, - "thread": 140378279749376, + "relativeCreated": 13378.76582145691, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88862,8 +88809,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,593", - "created": 1610361441.593054, + "asctime": "2021-01-14 00:26:04,150", + "created": 1610580364.150448, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88873,14 +88820,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 593.0540561676025, + "msecs": 150.44808387756348, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13248.464107513428, - "thread": 140378279749376, + "relativeCreated": 13378.947019577026, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88889,8 +88836,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:21,593", - "created": 1610361441.593298, + "asctime": "2021-01-14 00:26:04,150", + "created": 1610580364.150611, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88900,14 +88847,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 593.2979583740234, + "msecs": 150.61092376708984, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13248.708009719849, - "thread": 140378279749376, + "relativeCreated": 13379.109859466553, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88915,8 +88862,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:21,593", - "created": 1610361441.59379, + "asctime": "2021-01-14 00:26:04,150", + "created": 1610580364.150947, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -88926,14 +88873,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 593.7900543212891, + "msecs": 150.94709396362305, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13249.200105667114, - "thread": 140378279749376, + "relativeCreated": 13379.446029663086, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88944,25 +88891,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:21,594", - "created": 1610361441.59427, + "asctime": "2021-01-14 00:26:04,151", + "created": 1610580364.151407, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 594.2699909210205, + "msecs": 151.40700340270996, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13249.680042266846, - "thread": 140378279749376, + "relativeCreated": 13379.905939102173, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88970,25 +88917,25 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:21,594", - "created": 1610361441.59463, + "asctime": "2021-01-14 00:26:04,151", + "created": 1610580364.151661, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 594.6300029754639, + "msecs": 151.66091918945312, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13250.040054321289, - "thread": 140378279749376, + "relativeCreated": 13380.159854888916, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -88999,25 +88946,25 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:21,594", - "created": 1610361441.594896, + "asctime": "2021-01-14 00:26:04,151", + "created": 1610580364.151977, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 594.8960781097412, + "msecs": 151.9770622253418, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13250.306129455566, - "thread": 140378279749376, + "relativeCreated": 13380.475997924805, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89025,8 +88972,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:21,598", - "created": 1610361441.598339, + "asctime": "2021-01-14 00:26:04,185", + "created": 1610580364.185296, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89036,14 +88983,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 598.3390808105469, + "msecs": 185.29605865478516, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13253.749132156372, - "thread": 140378271356672, + "relativeCreated": 13413.794994354248, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89051,8 +88998,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:21,598", - "created": 1610361441.598991, + "asctime": "2021-01-14 00:26:04,185", + "created": 1610580364.185606, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89062,14 +89009,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 598.9909172058105, + "msecs": 185.6060028076172, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13254.400968551636, - "thread": 140378271356672, + "relativeCreated": 13414.10493850708, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89077,8 +89024,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,599", - "created": 1610361441.599279, + "asctime": "2021-01-14 00:26:04,185", + "created": 1610580364.185738, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89088,14 +89035,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 599.2789268493652, + "msecs": 185.73808670043945, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13254.68897819519, - "thread": 140378271356672, + "relativeCreated": 13414.237022399902, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89104,8 +89051,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:21,599", - "created": 1610361441.599521, + "asctime": "2021-01-14 00:26:04,185", + "created": 1610580364.185871, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89115,14 +89062,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 599.5209217071533, + "msecs": 185.87088584899902, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13254.930973052979, - "thread": 140378271356672, + "relativeCreated": 13414.369821548462, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89130,8 +89077,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,599", - "created": 1610361441.599839, + "asctime": "2021-01-14 00:26:04,186", + "created": 1610580364.186062, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89141,14 +89088,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 599.8389720916748, + "msecs": 186.06209754943848, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13255.2490234375, - "thread": 140378271356672, + "relativeCreated": 13414.561033248901, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89157,8 +89104,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,600", - "created": 1610361441.600066, + "asctime": "2021-01-14 00:26:04,186", + "created": 1610580364.186203, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89168,14 +89115,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 600.0659465789795, + "msecs": 186.2030029296875, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13255.475997924805, - "thread": 140378271356672, + "relativeCreated": 13414.70193862915, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89183,8 +89130,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,600", - "created": 1610361441.600394, + "asctime": "2021-01-14 00:26:04,186", + "created": 1610580364.186382, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89194,14 +89141,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 600.3940105438232, + "msecs": 186.38205528259277, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13255.804061889648, - "thread": 140378271356672, + "relativeCreated": 13414.880990982056, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89210,8 +89157,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,600", - "created": 1610361441.600631, + "asctime": "2021-01-14 00:26:04,186", + "created": 1610580364.186514, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89221,14 +89168,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 600.6309986114502, + "msecs": 186.51390075683594, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.041049957275, - "thread": 140378271356672, + "relativeCreated": 13415.012836456299, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89236,8 +89183,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,600", - "created": 1610361441.600837, + "asctime": "2021-01-14 00:26:04,186", + "created": 1610580364.186811, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89247,14 +89194,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 600.836992263794, + "msecs": 186.81097030639648, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.24704360962, - "thread": 140378271356672, + "relativeCreated": 13415.30990600586, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89263,8 +89210,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,600", - "created": 1610361441.600944, + "asctime": "2021-01-14 00:26:04,187", + "created": 1610580364.187005, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89274,14 +89221,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 600.9440422058105, + "msecs": 187.00504302978516, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.354093551636, - "thread": 140378271356672, + "relativeCreated": 13415.503978729248, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89289,8 +89236,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601053, + "asctime": "2021-01-14 00:26:04,187", + "created": 1610580364.18718, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89300,14 +89247,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 601.05299949646, + "msecs": 187.1800422668457, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.463050842285, - "thread": 140378271356672, + "relativeCreated": 13415.678977966309, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89316,8 +89263,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601132, + "asctime": "2021-01-14 00:26:04,187", + "created": 1610580364.187305, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89327,14 +89274,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 601.1319160461426, + "msecs": 187.30497360229492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.541967391968, - "thread": 140378271356672, + "relativeCreated": 13415.803909301758, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89342,8 +89289,8 @@ "comm-server:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601255, + "asctime": "2021-01-14 00:26:04,187", + "created": 1610580364.18751, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89353,14 +89300,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 601.254940032959, + "msecs": 187.51001358032227, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.664991378784, - "thread": 140378271356672, + "relativeCreated": 13416.008949279785, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89368,8 +89315,8 @@ "comm-client:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601366, + "asctime": "2021-01-14 00:26:04,187", + "created": 1610580364.187664, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89379,14 +89326,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 601.3660430908203, + "msecs": 187.66403198242188, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.776094436646, - "thread": 140378271356672, + "relativeCreated": 13416.162967681885, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89394,8 +89341,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601446, + "asctime": "2021-01-14 00:26:04,187", + "created": 1610580364.187793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89405,14 +89352,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 601.4459133148193, + "msecs": 187.79301643371582, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.855964660645, - "thread": 140378271356672, + "relativeCreated": 13416.291952133179, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89421,8 +89368,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601525, + "asctime": "2021-01-14 00:26:04,187", + "created": 1610580364.187939, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89432,14 +89379,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 601.525068283081, + "msecs": 187.93892860412598, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13256.935119628906, - "thread": 140378271356672, + "relativeCreated": 13416.437864303589, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89447,8 +89394,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601662, + "asctime": "2021-01-14 00:26:04,188", + "created": 1610580364.188201, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89458,14 +89405,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", "module": "stp", - "msecs": 601.6619205474854, + "msecs": 188.2009506225586, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13257.07197189331, - "thread": 140378271356672, + "relativeCreated": 13416.699886322021, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -89476,71 +89423,71 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601786, + "asctime": "2021-01-14 00:26:04,188", + "created": 1610580364.188524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 601.7858982086182, + "msecs": 188.5240077972412, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13257.195949554443, - "thread": 140378271356672, + "relativeCreated": 13417.022943496704, + "thread": 140018634954496, "threadName": "Thread-20" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:21,601", - "created": 1610361441.601876, + "asctime": "2021-01-14 00:26:04,188", + "created": 1610580364.188681, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 601.8760204315186, + "msecs": 188.68088722229004, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13257.286071777344, - "thread": 140378271356672, + "relativeCreated": 13417.179822921753, + "thread": 140018634954496, "threadName": "Thread-20" } ], - "msecs": 766.2789821624756, + "msecs": 323.81200790405273, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13421.6890335083, - "thread": 140379336402752, + "relativeCreated": 13552.310943603516, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.16440296173095703 + "time_consumption": 0.1351311206817627 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,767", - "created": 1610361441.767771, + "asctime": "2021-01-14 00:26:04,324", + "created": 1610580364.324957, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89557,8 +89504,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,767", - "created": 1610361441.767018, + "asctime": "2021-01-14 00:26:04,324", + "created": 1610580364.324391, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89568,14 +89515,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 767.0180797576904, + "msecs": 324.3908882141113, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13422.428131103516, - "thread": 140379336402752, + "relativeCreated": 13552.889823913574, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -89584,8 +89531,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,767", - "created": 1610361441.767303, + "asctime": "2021-01-14 00:26:04,324", + "created": 1610580364.324659, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89595,35 +89542,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 767.3029899597168, + "msecs": 324.6591091156006, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13422.713041305542, - "thread": 140379336402752, + "relativeCreated": 13553.158044815063, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 767.7710056304932, + "msecs": 324.95689392089844, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13423.181056976318, - "thread": 140379336402752, + "relativeCreated": 13553.455829620361, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0004680156707763672 + "time_consumption": 0.00029778480529785156 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,768", - "created": 1610361441.76853, + "asctime": "2021-01-14 00:26:04,325", + "created": 1610580364.32594, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89640,8 +89587,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,768", - "created": 1610361441.768164, + "asctime": "2021-01-14 00:26:04,325", + "created": 1610580364.325427, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89651,14 +89598,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 768.1639194488525, + "msecs": 325.4270553588867, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13423.573970794678, - "thread": 140379336402752, + "relativeCreated": 13553.92599105835, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -89667,8 +89614,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,768", - "created": 1610361441.76835, + "asctime": "2021-01-14 00:26:04,325", + "created": 1610580364.325695, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89678,32 +89625,32 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 768.3498859405518, + "msecs": 325.6950378417969, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13423.759937286377, - "thread": 140379336402752, + "relativeCreated": 13554.19397354126, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 768.5298919677734, + "msecs": 325.9398937225342, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13423.939943313599, - "thread": 140379336402752, + "relativeCreated": 13554.438829421997, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 + "time_consumption": 0.0002448558807373047 }, { "args": [], - "asctime": "2021-01-11 11:37:21,769", - "created": 1610361441.76928, + "asctime": "2021-01-14 00:26:04,326", + "created": 1610580364.326939, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -89722,8 +89669,8 @@ "0", "'__callback_error__'" ], - "asctime": "2021-01-11 11:37:21,768", - "created": 1610361441.768933, + "asctime": "2021-01-14 00:26:04,326", + "created": 1610580364.326502, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89733,32 +89680,32 @@ "lineno": 168, "message": "prot-server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", "module": "__init__", - "msecs": 768.9330577850342, + "msecs": 326.50208473205566, "msg": "%s Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13424.34310913086, - "thread": 140379336402752, + "relativeCreated": 13555.001020431519, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 769.279956817627, + "msecs": 326.9391059875488, "msg": "Overwriting existing Callback using one with faulty (too many) return values", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13424.690008163452, - "thread": 140379336402752, + "relativeCreated": 13555.438041687012, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00034689903259277344 + "time_consumption": 0.00043702125549316406 }, { "args": [], - "asctime": "2021-01-11 11:37:21,971", - "created": 1610361441.971718, + "asctime": "2021-01-14 00:26:04,528", + "created": 1610580364.528394, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -89777,25 +89724,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:21,770", - "created": 1610361441.770128, + "asctime": "2021-01-14 00:26:04,327", + "created": 1610580364.32739, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 770.1280117034912, + "msecs": 327.3899555206299, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13425.538063049316, - "thread": 140379336402752, + "relativeCreated": 13555.888891220093, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -89803,8 +89750,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:21,796", - "created": 1610361441.796141, + "asctime": "2021-01-14 00:26:04,353", + "created": 1610580364.353502, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89814,14 +89761,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 796.1409091949463, + "msecs": 353.5020351409912, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13451.550960540771, - "thread": 140378279749376, + "relativeCreated": 13582.000970840454, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89829,8 +89776,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:21,796", - "created": 1610361441.796592, + "asctime": "2021-01-14 00:26:04,353", + "created": 1610580364.353931, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89840,14 +89787,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 796.5919971466064, + "msecs": 353.9309501647949, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13452.002048492432, - "thread": 140378279749376, + "relativeCreated": 13582.429885864258, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89855,8 +89802,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,796", - "created": 1610361441.79684, + "asctime": "2021-01-14 00:26:04,354", + "created": 1610580364.354111, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89866,14 +89813,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 796.8399524688721, + "msecs": 354.1109561920166, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13452.250003814697, - "thread": 140378279749376, + "relativeCreated": 13582.60989189148, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89882,8 +89829,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:21,797", - "created": 1610361441.797024, + "asctime": "2021-01-14 00:26:04,354", + "created": 1610580364.354256, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89893,14 +89840,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 797.0240116119385, + "msecs": 354.25591468811035, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13452.434062957764, - "thread": 140378279749376, + "relativeCreated": 13582.754850387573, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89908,8 +89855,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,797", - "created": 1610361441.797221, + "asctime": "2021-01-14 00:26:04,354", + "created": 1610580364.354523, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89919,14 +89866,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 797.2209453582764, + "msecs": 354.5229434967041, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13452.630996704102, - "thread": 140378279749376, + "relativeCreated": 13583.021879196167, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89935,8 +89882,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,797", - "created": 1610361441.797375, + "asctime": "2021-01-14 00:26:04,354", + "created": 1610580364.354784, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89946,14 +89893,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 797.374963760376, + "msecs": 354.7840118408203, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13452.785015106201, - "thread": 140378279749376, + "relativeCreated": 13583.282947540283, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89961,8 +89908,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,797", - "created": 1610361441.79757, + "asctime": "2021-01-14 00:26:04,355", + "created": 1610580364.355082, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89972,14 +89919,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 797.569990158081, + "msecs": 355.08203506469727, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13452.980041503906, - "thread": 140378279749376, + "relativeCreated": 13583.58097076416, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -89988,8 +89935,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,797", - "created": 1610361441.79771, + "asctime": "2021-01-14 00:26:04,355", + "created": 1610580364.355271, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -89999,14 +89946,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 797.7099418640137, + "msecs": 355.2711009979248, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13453.119993209839, - "thread": 140378279749376, + "relativeCreated": 13583.770036697388, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90014,8 +89961,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,797", - "created": 1610361441.797894, + "asctime": "2021-01-14 00:26:04,355", + "created": 1610580364.355536, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90025,14 +89972,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 797.8940010070801, + "msecs": 355.53598403930664, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13453.304052352905, - "thread": 140378279749376, + "relativeCreated": 13584.03491973877, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90041,8 +89988,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,798", - "created": 1610361441.798031, + "asctime": "2021-01-14 00:26:04,355", + "created": 1610580364.355722, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90052,14 +89999,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 798.0310916900635, + "msecs": 355.72195053100586, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13453.441143035889, - "thread": 140378279749376, + "relativeCreated": 13584.220886230469, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90067,8 +90014,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,798", - "created": 1610361441.798215, + "asctime": "2021-01-14 00:26:04,355", + "created": 1610580364.355992, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90078,14 +90025,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 798.2149124145508, + "msecs": 355.99207878112793, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13453.624963760376, - "thread": 140378279749376, + "relativeCreated": 13584.49101448059, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90094,8 +90041,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,798", - "created": 1610361441.79835, + "asctime": "2021-01-14 00:26:04,356", + "created": 1610580364.356161, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90105,14 +90052,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 798.3500957489014, + "msecs": 356.16111755371094, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13453.760147094727, - "thread": 140378279749376, + "relativeCreated": 13584.660053253174, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90120,8 +90067,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:21,798", - "created": 1610361441.798577, + "asctime": "2021-01-14 00:26:04,356", + "created": 1610580364.356477, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -90131,14 +90078,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 798.577070236206, + "msecs": 356.4770221710205, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13453.987121582031, - "thread": 140378279749376, + "relativeCreated": 13584.975957870483, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90146,8 +90093,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:21,798", - "created": 1610361441.798744, + "asctime": "2021-01-14 00:26:04,356", + "created": 1610580364.356703, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -90157,14 +90104,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 798.7439632415771, + "msecs": 356.7030429840088, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13454.154014587402, - "thread": 140378279749376, + "relativeCreated": 13585.201978683472, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90172,8 +90119,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,799", - "created": 1610361441.799039, + "asctime": "2021-01-14 00:26:04,356", + "created": 1610580364.356907, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90183,14 +90130,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 799.0388870239258, + "msecs": 356.9068908691406, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13454.448938369751, - "thread": 140378279749376, + "relativeCreated": 13585.405826568604, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90199,8 +90146,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:21,799", - "created": 1610361441.799506, + "asctime": "2021-01-14 00:26:04,357", + "created": 1610580364.35709, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90210,14 +90157,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 799.5059490203857, + "msecs": 357.0899963378906, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13454.916000366211, - "thread": 140378279749376, + "relativeCreated": 13585.588932037354, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90225,8 +90172,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:21,799", - "created": 1610361441.8, + "asctime": "2021-01-14 00:26:04,357", + "created": 1610580364.357511, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90236,14 +90183,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 799.9999523162842, + "msecs": 357.511043548584, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13455.41000366211, - "thread": 140378279749376, + "relativeCreated": 13586.009979248047, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90254,25 +90201,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:21,800", - "created": 1610361441.800523, + "asctime": "2021-01-14 00:26:04,357", + "created": 1610580364.357967, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 800.523042678833, + "msecs": 357.9668998718262, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13455.933094024658, - "thread": 140378279749376, + "relativeCreated": 13586.465835571289, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90280,48 +90227,48 @@ "prot-server:", "__callback_error__" ], - "asctime": "2021-01-11 11:37:21,800", - "created": 1610361441.800856, + "asctime": "2021-01-14 00:26:04,358", + "created": 1610580364.358229, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback_error__ to process received data", "module": "__init__", - "msecs": 800.8561134338379, + "msecs": 358.2289218902588, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13456.266164779663, - "thread": 140378279749376, + "relativeCreated": 13586.727857589722, + "thread": 140018643347200, "threadName": "Thread-19" }, { "args": [], - "asctime": "2021-01-11 11:37:21,801", - "created": 1610361441.801228, + "asctime": "2021-01-14 00:26:04,358", + "created": 1610580364.358655, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 482, + "lineno": 494, "message": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack\" and it's return values for service: read data request, data_id: 0", "module": "__init__", - "msecs": 801.2280464172363, + "msecs": 358.6549758911133, "msg": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack\" and it's return values for service: read data request, data_id: 0", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13456.638097763062, - "thread": 140378279749376, + "relativeCreated": 13587.153911590576, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90332,25 +90279,25 @@ "status: callback error", "None" ], - "asctime": "2021-01-11 11:37:21,801", - "created": 1610361441.801577, + "asctime": "2021-01-14 00:26:04,359", + "created": 1610580364.359108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 801.577091217041, + "msecs": 359.10797119140625, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13456.987142562866, - "thread": 140378279749376, + "relativeCreated": 13587.60690689087, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -90358,8 +90305,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" ], - "asctime": "2021-01-11 11:37:21,802", - "created": 1610361441.802889, + "asctime": "2021-01-14 00:26:04,389", + "created": 1610580364.389514, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -90369,14 +90316,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", "module": "__init__", - "msecs": 802.8891086578369, + "msecs": 389.5139694213867, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13458.299160003662, - "thread": 140378271356672, + "relativeCreated": 13618.01290512085, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90384,8 +90331,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" ], - "asctime": "2021-01-11 11:37:21,803", - "created": 1610361441.803498, + "asctime": "2021-01-14 00:26:04,390", + "created": 1610580364.390046, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -90395,14 +90342,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", "module": "__init__", - "msecs": 803.4980297088623, + "msecs": 390.0458812713623, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13458.908081054688, - "thread": 140378271356672, + "relativeCreated": 13618.544816970825, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90410,8 +90357,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,803", - "created": 1610361441.803759, + "asctime": "2021-01-14 00:26:04,390", + "created": 1610580364.390258, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90421,14 +90368,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 803.7590980529785, + "msecs": 390.2580738067627, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13459.169149398804, - "thread": 140378271356672, + "relativeCreated": 13618.757009506226, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90437,8 +90384,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:21,804", - "created": 1610361441.804007, + "asctime": "2021-01-14 00:26:04,390", + "created": 1610580364.390437, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90448,14 +90395,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 804.0070533752441, + "msecs": 390.43688774108887, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13459.41710472107, - "thread": 140378271356672, + "relativeCreated": 13618.935823440552, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90463,8 +90410,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,804", - "created": 1610361441.804626, + "asctime": "2021-01-14 00:26:04,390", + "created": 1610580364.390652, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90474,14 +90421,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 804.6259880065918, + "msecs": 390.6519412994385, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13460.036039352417, - "thread": 140378271356672, + "relativeCreated": 13619.150876998901, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90490,8 +90437,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,804", - "created": 1610361441.804894, + "asctime": "2021-01-14 00:26:04,390", + "created": 1610580364.390846, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90501,14 +90448,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 804.893970489502, + "msecs": 390.84601402282715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13460.304021835327, - "thread": 140378271356672, + "relativeCreated": 13619.34494972229, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90516,8 +90463,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,805", - "created": 1610361441.805211, + "asctime": "2021-01-14 00:26:04,391", + "created": 1610580364.391212, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90527,14 +90474,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.211067199707, + "msecs": 391.21198654174805, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13460.621118545532, - "thread": 140378271356672, + "relativeCreated": 13619.710922241211, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90543,8 +90490,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,805", - "created": 1610361441.805449, + "asctime": "2021-01-14 00:26:04,391", + "created": 1610580364.391679, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90554,14 +90501,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.4490089416504, + "msecs": 391.679048538208, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13460.859060287476, - "thread": 140378271356672, + "relativeCreated": 13620.17798423767, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90569,8 +90516,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,805", - "created": 1610361441.805716, + "asctime": "2021-01-14 00:26:04,391", + "created": 1610580364.39195, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90580,14 +90527,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.7160377502441, + "msecs": 391.9498920440674, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13461.12608909607, - "thread": 140378271356672, + "relativeCreated": 13620.44882774353, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90596,8 +90543,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,805", - "created": 1610361441.805945, + "asctime": "2021-01-14 00:26:04,392", + "created": 1610580364.392202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90607,14 +90554,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.9449195861816, + "msecs": 392.20190048217773, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13461.354970932007, - "thread": 140378271356672, + "relativeCreated": 13620.70083618164, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90622,8 +90569,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,806", - "created": 1610361441.806228, + "asctime": "2021-01-14 00:26:04,392", + "created": 1610580364.392426, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90633,14 +90580,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 806.2279224395752, + "msecs": 392.4260139465332, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13461.6379737854, - "thread": 140378271356672, + "relativeCreated": 13620.924949645996, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90649,8 +90596,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:21,806", - "created": 1610361441.806423, + "asctime": "2021-01-14 00:26:04,392", + "created": 1610580364.392586, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90660,14 +90607,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 806.4229488372803, + "msecs": 392.58599281311035, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13461.833000183105, - "thread": 140378271356672, + "relativeCreated": 13621.084928512573, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90675,8 +90622,8 @@ "comm-server:", "(7): 7d 3f 8f 7d 86 3a 3e" ], - "asctime": "2021-01-11 11:37:21,806", - "created": 1610361441.806732, + "asctime": "2021-01-14 00:26:04,392", + "created": 1610580364.392841, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -90686,14 +90633,14 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d 3f 8f 7d 86 3a 3e", "module": "__init__", - "msecs": 806.7319393157959, + "msecs": 392.841100692749, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13462.141990661621, - "thread": 140378271356672, + "relativeCreated": 13621.340036392212, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90701,8 +90648,8 @@ "comm-client:", "(7): 7d 3f 8f 7d 86 3a 3e" ], - "asctime": "2021-01-11 11:37:21,806", - "created": 1610361441.806898, + "asctime": "2021-01-14 00:26:04,393", + "created": 1610580364.393192, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -90712,14 +90659,14 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d 3f 8f 7d 86 3a 3e", "module": "__init__", - "msecs": 806.8981170654297, + "msecs": 393.1920528411865, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13462.308168411255, - "thread": 140378271356672, + "relativeCreated": 13621.69098854065, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90727,8 +90674,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:21,807", - "created": 1610361441.807012, + "asctime": "2021-01-14 00:26:04,393", + "created": 1610580364.393487, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90738,14 +90685,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 807.0120811462402, + "msecs": 393.48697662353516, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13462.422132492065, - "thread": 140378271356672, + "relativeCreated": 13621.985912322998, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90754,8 +90701,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:21,807", - "created": 1610361441.807094, + "asctime": "2021-01-14 00:26:04,393", + "created": 1610580364.393723, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90765,14 +90712,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 807.0940971374512, + "msecs": 393.7230110168457, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13462.504148483276, - "thread": 140378271356672, + "relativeCreated": 13622.221946716309, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90780,8 +90727,8 @@ "STP:", "(63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86" ], - "asctime": "2021-01-11 11:37:21,807", - "created": 1610361441.80725, + "asctime": "2021-01-14 00:26:04,394", + "created": 1610580364.394223, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -90791,14 +90738,14 @@ "lineno": 148, "message": "STP: message identified - (63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86", "module": "stp", - "msecs": 807.2500228881836, + "msecs": 394.2229747772217, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13462.660074234009, - "thread": 140378271356672, + "relativeCreated": 13622.721910476685, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -90809,71 +90756,71 @@ "status: callback error", "None" ], - "asctime": "2021-01-11 11:37:21,807", - "created": 1610361441.80739, + "asctime": "2021-01-14 00:26:04,394", + "created": 1610580364.394741, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 807.3899745941162, + "msecs": 394.7410583496094, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13462.800025939941, - "thread": 140378271356672, + "relativeCreated": 13623.239994049072, + "thread": 140018634954496, "threadName": "Thread-20" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:21,807", - "created": 1610361441.807496, + "asctime": "2021-01-14 00:26:04,395", + "created": 1610580364.395054, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 807.4960708618164, + "msecs": 395.0541019439697, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13462.906122207642, - "thread": 140378271356672, + "relativeCreated": 13623.553037643433, + "thread": 140018634954496, "threadName": "Thread-20" } ], - "msecs": 971.7180728912354, + "msecs": 528.3939838409424, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13627.12812423706, - "thread": 140379336402752, + "relativeCreated": 13756.892919540405, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.16422200202941895 + "time_consumption": 0.13333988189697266 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,973", - "created": 1610361441.973507, + "asctime": "2021-01-14 00:26:04,529", + "created": 1610580364.529659, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -90890,8 +90837,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,972", - "created": 1610361441.972725, + "asctime": "2021-01-14 00:26:04,529", + "created": 1610580364.529073, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -90901,14 +90848,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 972.7249145507812, + "msecs": 529.0729999542236, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13628.134965896606, - "thread": 140379336402752, + "relativeCreated": 13757.571935653687, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -90917,8 +90864,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,973", - "created": 1610361441.973239, + "asctime": "2021-01-14 00:26:04,529", + "created": 1610580364.529429, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -90928,35 +90875,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 973.2389450073242, + "msecs": 529.4289588928223, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13628.64899635315, - "thread": 140379336402752, + "relativeCreated": 13757.927894592285, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 973.5069274902344, + "msecs": 529.6590328216553, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13628.91697883606, - "thread": 140379336402752, + "relativeCreated": 13758.157968521118, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00026798248291015625 + "time_consumption": 0.0002300739288330078 }, { "args": [ "{u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,974", - "created": 1610361441.974769, + "asctime": "2021-01-14 00:26:04,531", + "created": 1610580364.531033, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -90973,8 +90920,8 @@ "{u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,974", - "created": 1610361441.97425, + "asctime": "2021-01-14 00:26:04,530", + "created": 1610580364.530317, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -90984,14 +90931,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0} ()", "module": "test", - "msecs": 974.250078201294, + "msecs": 530.3170680999756, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13629.66012954712, - "thread": 140379336402752, + "relativeCreated": 13758.816003799438, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -91000,8 +90947,8 @@ "{'status': 2, 'service_id': 11, 'data': None, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:21,974", - "created": 1610361441.974508, + "asctime": "2021-01-14 00:26:04,530", + "created": 1610580364.530694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91011,32 +90958,32 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 2, 'service_id': 11, 'data': None, 'data_id': 0} ()", "module": "test", - "msecs": 974.5080471038818, + "msecs": 530.6940078735352, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13629.918098449707, - "thread": 140379336402752, + "relativeCreated": 13759.192943572998, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 974.769115447998, + "msecs": 531.0330390930176, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13630.179166793823, - "thread": 140379336402752, + "relativeCreated": 13759.53197479248, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00026106834411621094 + "time_consumption": 0.0003390312194824219 }, { "args": [], - "asctime": "2021-01-11 11:37:21,975", - "created": 1610361441.9756, + "asctime": "2021-01-14 00:26:04,532", + "created": 1610580364.532015, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -91054,8 +91001,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:21,975", - "created": 1610361441.97534, + "asctime": "2021-01-14 00:26:04,531", + "created": 1610580364.531816, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91065,32 +91012,32 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 975.3398895263672, + "msecs": 531.8160057067871, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13630.749940872192, - "thread": 140379336402752, + "relativeCreated": 13760.31494140625, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 975.600004196167, + "msecs": 532.0150852203369, "msg": "Removing the registered Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13631.010055541992, - "thread": 140379336402752, + "relativeCreated": 13760.5140209198, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002601146697998047 + "time_consumption": 0.0001990795135498047 }, { "args": [], - "asctime": "2021-01-11 11:37:22,177", - "created": 1610361442.177538, + "asctime": "2021-01-14 00:26:04,733", + "created": 1610580364.733674, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -91109,25 +91056,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:21,976", - "created": 1610361441.97622, + "asctime": "2021-01-14 00:26:04,532", + "created": 1610580364.532465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 976.219892501831, + "msecs": 532.4649810791016, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13631.629943847656, - "thread": 140379336402752, + "relativeCreated": 13760.963916778564, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -91135,8 +91082,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:22,003", - "created": 1610361442.003261, + "asctime": "2021-01-14 00:26:04,560", + "created": 1610580364.560814, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91146,14 +91093,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 3.261089324951172, + "msecs": 560.8139038085938, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13658.671140670776, - "thread": 140378279749376, + "relativeCreated": 13789.312839508057, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91161,8 +91108,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:22,003", - "created": 1610361442.003743, + "asctime": "2021-01-14 00:26:04,561", + "created": 1610580364.561371, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91172,14 +91119,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 3.7429332733154297, + "msecs": 561.3710880279541, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13659.15298461914, - "thread": 140378279749376, + "relativeCreated": 13789.870023727417, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91187,8 +91134,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,004", - "created": 1610361442.004088, + "asctime": "2021-01-14 00:26:04,561", + "created": 1610580364.561646, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91198,14 +91145,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 4.087924957275391, + "msecs": 561.6459846496582, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13659.4979763031, - "thread": 140378279749376, + "relativeCreated": 13790.144920349121, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91214,8 +91161,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,004", - "created": 1610361442.004293, + "asctime": "2021-01-14 00:26:04,561", + "created": 1610580364.561908, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91225,14 +91172,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.292964935302734, + "msecs": 561.9080066680908, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13659.703016281128, - "thread": 140378279749376, + "relativeCreated": 13790.406942367554, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91240,8 +91187,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,004", - "created": 1610361442.004477, + "asctime": "2021-01-14 00:26:04,562", + "created": 1610580364.562217, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91251,14 +91198,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 4.477024078369141, + "msecs": 562.2169971466064, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13659.887075424194, - "thread": 140378279749376, + "relativeCreated": 13790.71593284607, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91267,8 +91214,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,004", - "created": 1610361442.004611, + "asctime": "2021-01-14 00:26:04,562", + "created": 1610580364.562462, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91278,14 +91225,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.611015319824219, + "msecs": 562.4620914459229, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13660.02106666565, - "thread": 140378279749376, + "relativeCreated": 13790.961027145386, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91293,8 +91240,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,004", - "created": 1610361442.004826, + "asctime": "2021-01-14 00:26:04,562", + "created": 1610580364.562795, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91304,14 +91251,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 4.826068878173828, + "msecs": 562.7949237823486, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13660.236120223999, - "thread": 140378279749376, + "relativeCreated": 13791.293859481812, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91320,8 +91267,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,004", - "created": 1610361442.00496, + "asctime": "2021-01-14 00:26:04,563", + "created": 1610580364.56302, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91331,14 +91278,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 4.960060119628906, + "msecs": 563.0199909210205, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13660.370111465454, - "thread": 140378279749376, + "relativeCreated": 13791.518926620483, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91346,8 +91293,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,005", - "created": 1610361442.00512, + "asctime": "2021-01-14 00:26:04,563", + "created": 1610580364.563399, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91357,14 +91304,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 5.120038986206055, + "msecs": 563.399076461792, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13660.530090332031, - "thread": 140378279749376, + "relativeCreated": 13791.898012161255, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91373,8 +91320,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,005", - "created": 1610361442.005259, + "asctime": "2021-01-14 00:26:04,563", + "created": 1610580364.563655, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91384,14 +91331,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 5.259037017822266, + "msecs": 563.654899597168, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13660.669088363647, - "thread": 140378279749376, + "relativeCreated": 13792.15383529663, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91399,8 +91346,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,005", - "created": 1610361442.005422, + "asctime": "2021-01-14 00:26:04,564", + "created": 1610580364.564066, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91410,14 +91357,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 5.422115325927734, + "msecs": 564.0659332275391, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13660.832166671753, - "thread": 140378279749376, + "relativeCreated": 13792.564868927002, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91426,8 +91373,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,005", - "created": 1610361442.005544, + "asctime": "2021-01-14 00:26:04,564", + "created": 1610580364.564268, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91437,14 +91384,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 5.543947219848633, + "msecs": 564.2681121826172, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13660.953998565674, - "thread": 140378279749376, + "relativeCreated": 13792.76704788208, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91452,8 +91399,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:22,005", - "created": 1610361442.00574, + "asctime": "2021-01-14 00:26:04,564", + "created": 1610580364.564586, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91463,14 +91410,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 5.739927291870117, + "msecs": 564.5859241485596, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13661.149978637695, - "thread": 140378279749376, + "relativeCreated": 13793.084859848022, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91478,8 +91425,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:22,005", - "created": 1610361442.005899, + "asctime": "2021-01-14 00:26:04,564", + "created": 1610580364.564858, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91489,14 +91436,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 5.898952484130859, + "msecs": 564.8579597473145, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13661.309003829956, - "thread": 140378279749376, + "relativeCreated": 13793.356895446777, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91504,8 +91451,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,006", - "created": 1610361442.006037, + "asctime": "2021-01-14 00:26:04,565", + "created": 1610580364.565036, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91515,14 +91462,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 6.036996841430664, + "msecs": 565.0360584259033, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13661.447048187256, - "thread": 140378279749376, + "relativeCreated": 13793.534994125366, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91531,8 +91478,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,006", - "created": 1610361442.006224, + "asctime": "2021-01-14 00:26:04,565", + "created": 1610580364.565247, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91542,14 +91489,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 6.223917007446289, + "msecs": 565.2470588684082, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13661.633968353271, - "thread": 140378279749376, + "relativeCreated": 13793.745994567871, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91557,8 +91504,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:22,006", - "created": 1610361442.00651, + "asctime": "2021-01-14 00:26:04,565", + "created": 1610580364.565583, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91568,14 +91515,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 6.510019302368164, + "msecs": 565.5829906463623, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13661.920070648193, - "thread": 140378279749376, + "relativeCreated": 13794.081926345825, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91586,50 +91533,50 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:22,006", - "created": 1610361442.006814, + "asctime": "2021-01-14 00:26:04,566", + "created": 1610580364.566019, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 6.814002990722656, + "msecs": 566.0190582275391, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13662.224054336548, - "thread": 140378279749376, + "relativeCreated": 13794.517993927002, + "thread": 140018643347200, "threadName": "Thread-19" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:22,006", - "created": 1610361442.006985, + "asctime": "2021-01-14 00:26:04,566", + "created": 1610580364.566246, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 474, + "lineno": 486, "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 6.984949111938477, + "msecs": 566.2460327148438, "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13662.395000457764, - "thread": 140378279749376, + "relativeCreated": 13794.744968414307, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91640,25 +91587,25 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:22,007", - "created": 1610361442.007211, + "asctime": "2021-01-14 00:26:04,566", + "created": 1610580364.566378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 7.210969924926758, + "msecs": 566.378116607666, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13662.621021270752, - "thread": 140378279749376, + "relativeCreated": 13794.877052307129, + "thread": 140018643347200, "threadName": "Thread-19" }, { @@ -91666,8 +91613,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" ], - "asctime": "2021-01-11 11:37:22,008", - "created": 1610361442.008587, + "asctime": "2021-01-14 00:26:04,596", + "created": 1610580364.596236, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91677,14 +91624,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", "module": "__init__", - "msecs": 8.586883544921875, + "msecs": 596.235990524292, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13663.996934890747, - "thread": 140378271356672, + "relativeCreated": 13824.734926223755, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91692,8 +91639,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" ], - "asctime": "2021-01-11 11:37:22,008", - "created": 1610361442.008919, + "asctime": "2021-01-14 00:26:04,596", + "created": 1610580364.59683, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91703,14 +91650,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", "module": "__init__", - "msecs": 8.919000625610352, + "msecs": 596.829891204834, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13664.329051971436, - "thread": 140378271356672, + "relativeCreated": 13825.328826904297, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91718,8 +91665,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,009", - "created": 1610361442.009074, + "asctime": "2021-01-14 00:26:04,597", + "created": 1610580364.597413, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91729,14 +91676,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 9.073972702026367, + "msecs": 597.4130630493164, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13664.484024047852, - "thread": 140378271356672, + "relativeCreated": 13825.91199874878, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91745,8 +91692,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:22,009", - "created": 1610361442.009231, + "asctime": "2021-01-14 00:26:04,597", + "created": 1610580364.597653, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91756,14 +91703,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 9.231090545654297, + "msecs": 597.6529121398926, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13664.64114189148, - "thread": 140378271356672, + "relativeCreated": 13826.151847839355, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91771,8 +91718,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,009", - "created": 1610361442.009407, + "asctime": "2021-01-14 00:26:04,597", + "created": 1610580364.597903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91782,14 +91729,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 9.40704345703125, + "msecs": 597.9030132293701, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13664.817094802856, - "thread": 140378271356672, + "relativeCreated": 13826.401948928833, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91798,8 +91745,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,009", - "created": 1610361442.009631, + "asctime": "2021-01-14 00:26:04,598", + "created": 1610580364.59811, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91809,14 +91756,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 9.630918502807617, + "msecs": 598.1099605560303, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13665.040969848633, - "thread": 140378271356672, + "relativeCreated": 13826.608896255493, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91824,8 +91771,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,009", - "created": 1610361442.009857, + "asctime": "2021-01-14 00:26:04,598", + "created": 1610580364.598369, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91835,14 +91782,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 9.856939315795898, + "msecs": 598.3688831329346, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13665.266990661621, - "thread": 140378271356672, + "relativeCreated": 13826.867818832397, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91851,8 +91798,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,010", - "created": 1610361442.010023, + "asctime": "2021-01-14 00:26:04,598", + "created": 1610580364.598544, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91862,14 +91809,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 10.023117065429688, + "msecs": 598.5438823699951, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13665.433168411255, - "thread": 140378271356672, + "relativeCreated": 13827.042818069458, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91877,8 +91824,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,010", - "created": 1610361442.010222, + "asctime": "2021-01-14 00:26:04,598", + "created": 1610580364.598774, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91888,14 +91835,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 10.22195816040039, + "msecs": 598.7739562988281, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13665.632009506226, - "thread": 140378271356672, + "relativeCreated": 13827.272891998291, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91904,8 +91851,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,010", - "created": 1610361442.010476, + "asctime": "2021-01-14 00:26:04,598", + "created": 1610580364.598948, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91915,14 +91862,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 10.476112365722656, + "msecs": 598.9480018615723, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13665.886163711548, - "thread": 140378271356672, + "relativeCreated": 13827.446937561035, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91930,8 +91877,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,010", - "created": 1610361442.010668, + "asctime": "2021-01-14 00:26:04,599", + "created": 1610580364.599208, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91941,14 +91888,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 10.668039321899414, + "msecs": 599.2081165313721, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13666.078090667725, - "thread": 140378271356672, + "relativeCreated": 13827.707052230835, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91957,8 +91904,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:22,010", - "created": 1610361442.010895, + "asctime": "2021-01-14 00:26:04,599", + "created": 1610580364.59959, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -91968,14 +91915,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 10.895013809204102, + "msecs": 599.5900630950928, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13666.30506515503, - "thread": 140378271356672, + "relativeCreated": 13828.088998794556, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -91983,8 +91930,8 @@ "comm-server:", "(7): 7d 79 5d 48 e2 3a 3e" ], - "asctime": "2021-01-11 11:37:22,011", - "created": 1610361442.0111, + "asctime": "2021-01-14 00:26:04,600", + "created": 1610580364.600002, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -91994,14 +91941,14 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d 79 5d 48 e2 3a 3e", "module": "__init__", - "msecs": 11.100053787231445, + "msecs": 600.0020503997803, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13666.510105133057, - "thread": 140378271356672, + "relativeCreated": 13828.500986099243, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -92009,8 +91956,8 @@ "comm-client:", "(7): 7d 79 5d 48 e2 3a 3e" ], - "asctime": "2021-01-11 11:37:22,011", - "created": 1610361442.011269, + "asctime": "2021-01-14 00:26:04,600", + "created": 1610580364.600289, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92020,14 +91967,14 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d 79 5d 48 e2 3a 3e", "module": "__init__", - "msecs": 11.269092559814453, + "msecs": 600.2891063690186, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13666.67914390564, - "thread": 140378271356672, + "relativeCreated": 13828.788042068481, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -92035,8 +91982,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:22,011", - "created": 1610361442.011409, + "asctime": "2021-01-14 00:26:04,600", + "created": 1610580364.600505, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -92046,14 +91993,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 11.40904426574707, + "msecs": 600.5051136016846, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13666.819095611572, - "thread": 140378271356672, + "relativeCreated": 13829.004049301147, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -92062,8 +92009,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:22,011", - "created": 1610361442.011515, + "asctime": "2021-01-14 00:26:04,600", + "created": 1610580364.600678, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -92073,14 +92020,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 11.514902114868164, + "msecs": 600.6779670715332, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13666.924953460693, - "thread": 140378271356672, + "relativeCreated": 13829.176902770996, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -92088,8 +92035,8 @@ "STP:", "(63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2" ], - "asctime": "2021-01-11 11:37:22,011", - "created": 1610361442.011789, + "asctime": "2021-01-14 00:26:04,601", + "created": 1610580364.601076, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -92099,14 +92046,14 @@ "lineno": 148, "message": "STP: message identified - (63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2", "module": "stp", - "msecs": 11.789083480834961, + "msecs": 601.0758876800537, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13667.19913482666, - "thread": 140378271356672, + "relativeCreated": 13829.574823379517, + "thread": 140018634954496, "threadName": "Thread-20" }, { @@ -92117,71 +92064,71 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:22,012", - "created": 1610361442.012055, + "asctime": "2021-01-14 00:26:04,601", + "created": 1610580364.601605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 12.054920196533203, + "msecs": 601.6049385070801, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13667.464971542358, - "thread": 140378271356672, + "relativeCreated": 13830.103874206543, + "thread": 140018634954496, "threadName": "Thread-20" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:22,012", - "created": 1610361442.012243, + "asctime": "2021-01-14 00:26:04,601", + "created": 1610580364.601951, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 12.243032455444336, + "msecs": 601.9508838653564, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13667.65308380127, - "thread": 140378271356672, + "relativeCreated": 13830.44981956482, + "thread": 140018634954496, "threadName": "Thread-20" } ], - "msecs": 177.5379180908203, + "msecs": 733.6740493774414, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13832.947969436646, - "thread": 140379336402752, + "relativeCreated": 13962.172985076904, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.16529488563537598 + "time_consumption": 0.13172316551208496 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:22,178", - "created": 1610361442.178811, + "asctime": "2021-01-14 00:26:04,734", + "created": 1610580364.734444, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92198,8 +92145,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:22,178", - "created": 1610361442.17819, + "asctime": "2021-01-14 00:26:04,734", + "created": 1610580364.734112, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92209,14 +92156,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): None ()", "module": "test", - "msecs": 178.1899929046631, + "msecs": 734.112024307251, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13833.600044250488, - "thread": 140379336402752, + "relativeCreated": 13962.610960006714, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92225,8 +92172,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:22,178", - "created": 1610361442.178614, + "asctime": "2021-01-14 00:26:04,734", + "created": 1610580364.734277, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92236,35 +92183,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = None ()", "module": "test", - "msecs": 178.61390113830566, + "msecs": 734.2770099639893, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13834.02395248413, - "thread": 140379336402752, + "relativeCreated": 13962.775945663452, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 178.81107330322266, + "msecs": 734.4439029693604, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13834.221124649048, - "thread": 140379336402752, + "relativeCreated": 13962.942838668823, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0001971721649169922 + "time_consumption": 0.00016689300537109375 }, { "args": [ "{u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,179", - "created": 1610361442.1796, + "asctime": "2021-01-14 00:26:04,735", + "created": 1610580364.735026, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92281,8 +92228,8 @@ "{u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,179", - "created": 1610361442.179165, + "asctime": "2021-01-14 00:26:04,734", + "created": 1610580364.734708, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92292,14 +92239,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0} ()", "module": "test", - "msecs": 179.16488647460938, + "msecs": 734.7080707550049, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13834.574937820435, - "thread": 140379336402752, + "relativeCreated": 13963.207006454468, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92308,8 +92255,8 @@ "{'status': 1, 'service_id': 11, 'data': None, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:22,179", - "created": 1610361442.179391, + "asctime": "2021-01-14 00:26:04,734", + "created": 1610580364.734857, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92319,39 +92266,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 1, 'service_id': 11, 'data': None, 'data_id': 0} ()", "module": "test", - "msecs": 179.39090728759766, + "msecs": 734.8570823669434, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13834.800958633423, - "thread": 140379336402752, + "relativeCreated": 13963.356018066406, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 179.60000038146973, + "msecs": 735.0258827209473, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 13835.010051727295, - "thread": 140379336402752, + "relativeCreated": 13963.52481842041, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002090930938720703 + "time_consumption": 0.00016880035400390625 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.9685330390930176, - "time_finished": "2021-01-11 11:37:22,179", - "time_start": "2021-01-11 11:37:21,211" + "time_consumption": 0.9655499458312988, + "time_finished": "2021-01-14 00:26:04,735", + "time_start": "2021-01-14 00:26:03,769" }, "_tb5akE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:23,854", - "created": 1610361443.854289, + "asctime": "2021-01-14 00:26:06,414", + "created": 1610580366.414211, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92362,18 +92309,18 @@ "message": "_tb5akE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 854.2890548706055, + "msecs": 414.2110347747803, "msg": "_tb5akE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15509.69910621643, + "relativeCreated": 15642.709970474243, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.86171, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.424063, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -92388,8 +92335,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:23,855", - "created": 1610361443.855417, + "asctime": "2021-01-14 00:26:06,415", + "created": 1610580366.415349, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92399,22 +92346,22 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 855.417013168335, + "msecs": 415.34900665283203, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15510.82706451416, - "thread": 140379336402752, + "relativeCreated": 15643.847942352295, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,856", - "created": 1610361443.856657, + "asctime": "2021-01-14 00:26:06,416", + "created": 1610580366.416489, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92424,22 +92371,22 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 856.6570281982422, + "msecs": 416.4888858795166, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15512.067079544067, - "thread": 140379336402752, + "relativeCreated": 15644.98782157898, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,856", - "created": 1610361443.856974, + "asctime": "2021-01-14 00:26:06,416", + "created": 1610580366.416795, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92449,39 +92396,39 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 856.9738864898682, + "msecs": 416.795015335083, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15512.383937835693, - "thread": 140379336402752, + "relativeCreated": 15645.293951034546, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:23,857", - "created": 1610361443.857446, + "asctime": "2021-01-14 00:26:06,417", + "created": 1610580366.417675, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 857.4459552764893, + "msecs": 417.6750183105469, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15512.856006622314, - "thread": 140379336402752, + "relativeCreated": 15646.17395401001, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92490,25 +92437,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:23,857", - "created": 1610361443.857663, + "asctime": "2021-01-14 00:26:06,417", + "created": 1610580366.417912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 857.6629161834717, + "msecs": 417.9120063781738, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15513.072967529297, - "thread": 140379336402752, + "relativeCreated": 15646.410942077637, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92516,25 +92463,25 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,857", - "created": 1610361443.857959, + "asctime": "2021-01-14 00:26:06,418", + "created": 1610580366.418182, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 857.9590320587158, + "msecs": 418.1818962097168, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15513.369083404541, - "thread": 140379336402752, + "relativeCreated": 15646.68083190918, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92542,25 +92489,25 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,858", - "created": 1610361443.858189, + "asctime": "2021-01-14 00:26:06,418", + "created": 1610580366.418364, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 858.1891059875488, + "msecs": 418.3640480041504, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15513.599157333374, - "thread": 140379336402752, + "relativeCreated": 15646.862983703613, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92568,25 +92515,25 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:23,858", - "created": 1610361443.858395, + "asctime": "2021-01-14 00:26:06,418", + "created": 1610580366.418555, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 858.3950996398926, + "msecs": 418.55502128601074, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15513.805150985718, - "thread": 140379336402752, + "relativeCreated": 15647.053956985474, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92594,25 +92541,25 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:23,858", - "created": 1610361443.858596, + "asctime": "2021-01-14 00:26:06,418", + "created": 1610580366.418761, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 858.5960865020752, + "msecs": 418.7610149383545, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.0061378479, - "thread": 140379336402752, + "relativeCreated": 15647.259950637817, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92622,8 +92569,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:23,858", - "created": 1610361443.858912, + "asctime": "2021-01-14 00:26:06,419", + "created": 1610580366.419016, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92633,14 +92580,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 858.9119911193848, + "msecs": 419.01588439941406, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.32204246521, - "thread": 140379336402752, + "relativeCreated": 15647.514820098877, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92650,8 +92597,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859115, + "asctime": "2021-01-14 00:26:06,419", + "created": 1610580366.419252, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92661,14 +92608,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 859.1148853302002, + "msecs": 419.2519187927246, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.524936676025, - "thread": 140379336402752, + "relativeCreated": 15647.750854492188, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92678,8 +92625,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859297, + "asctime": "2021-01-14 00:26:06,419", + "created": 1610580366.419484, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92689,14 +92636,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 859.2970371246338, + "msecs": 419.48390007019043, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.707088470459, - "thread": 140379336402752, + "relativeCreated": 15647.982835769653, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92706,8 +92653,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859352, + "asctime": "2021-01-14 00:26:06,419", + "created": 1610580366.419711, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92717,39 +92664,39 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 859.3521118164062, + "msecs": 419.7111129760742, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.762163162231, - "thread": 140379336402752, + "relativeCreated": 15648.210048675537, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859404, + "asctime": "2021-01-14 00:26:06,419", + "created": 1610580366.419918, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 859.4040870666504, + "msecs": 419.9180603027344, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.814138412476, - "thread": 140379336402752, + "relativeCreated": 15648.416996002197, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92758,25 +92705,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859465, + "asctime": "2021-01-14 00:26:06,420", + "created": 1610580366.420159, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 859.4648838043213, + "msecs": 420.15910148620605, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.874935150146, - "thread": 140379336402752, + "relativeCreated": 15648.658037185669, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92784,25 +92731,25 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859528, + "asctime": "2021-01-14 00:26:06,420", + "created": 1610580366.420387, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 859.5280647277832, + "msecs": 420.38702964782715, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.938116073608, - "thread": 140379336402752, + "relativeCreated": 15648.88596534729, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92810,25 +92757,25 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859579, + "asctime": "2021-01-14 00:26:06,420", + "created": 1610580366.420602, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 859.5790863037109, + "msecs": 420.60208320617676, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15514.989137649536, - "thread": 140379336402752, + "relativeCreated": 15649.10101890564, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92838,8 +92785,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.859638, + "asctime": "2021-01-14 00:26:06,420", + "created": 1610580366.42082, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92849,14 +92796,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 859.637975692749, + "msecs": 420.8199977874756, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.048027038574, - "thread": 140379336402752, + "relativeCreated": 15649.318933486938, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92866,8 +92813,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:23,859", - "created": 1610361443.85974, + "asctime": "2021-01-14 00:26:06,421", + "created": 1610580366.421066, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -92877,14 +92824,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 859.7400188446045, + "msecs": 421.0660457611084, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.15007019043, - "thread": 140379336402752, + "relativeCreated": 15649.564981460571, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92893,25 +92840,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.86002, + "asctime": "2021-01-14 00:26:06,421", + "created": 1610580366.421867, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 860.0199222564697, + "msecs": 421.86689376831055, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.429973602295, - "thread": 140379336402752, + "relativeCreated": 15650.365829467773, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92920,25 +92867,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860099, + "asctime": "2021-01-14 00:26:06,422", + "created": 1610580366.422117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 860.0990772247314, + "msecs": 422.1169948577881, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.509128570557, - "thread": 140379336402752, + "relativeCreated": 15650.615930557251, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -92947,75 +92894,75 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860167, + "asctime": "2021-01-14 00:26:06,422", + "created": 1610580366.422344, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 860.1670265197754, + "msecs": 422.3439693450928, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.5770778656, - "thread": 140379336402752, + "relativeCreated": 15650.842905044556, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860235, + "asctime": "2021-01-14 00:26:06,422", + "created": 1610580366.422565, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 860.2349758148193, + "msecs": 422.5649833679199, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.645027160645, - "thread": 140379336402752, + "relativeCreated": 15651.063919067383, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860404, + "asctime": "2021-01-14 00:26:06,422", + "created": 1610580366.422952, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 860.4040145874023, + "msecs": 422.95193672180176, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.814065933228, - "thread": 140379336402752, + "relativeCreated": 15651.450872421265, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93024,25 +92971,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860482, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423017, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 860.4819774627686, + "msecs": 423.0170249938965, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.892028808594, - "thread": 140379336402752, + "relativeCreated": 15651.51596069336, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93050,25 +92997,25 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860555, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423099, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 860.5549335479736, + "msecs": 423.0990409851074, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15515.964984893799, - "thread": 140379336402752, + "relativeCreated": 15651.59797668457, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93076,25 +93023,25 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860615, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423158, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 860.6150150299072, + "msecs": 423.1579303741455, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.025066375732, - "thread": 140379336402752, + "relativeCreated": 15651.656866073608, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93102,25 +93049,25 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860674, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.42321, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 860.6739044189453, + "msecs": 423.20990562438965, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.08395576477, - "thread": 140379336402752, + "relativeCreated": 15651.708841323853, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93128,25 +93075,25 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860724, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.42326, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 860.7239723205566, + "msecs": 423.259973526001, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.134023666382, - "thread": 140379336402752, + "relativeCreated": 15651.758909225464, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93156,8 +93103,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860788, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423314, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93167,14 +93114,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 860.788106918335, + "msecs": 423.31409454345703, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.19815826416, - "thread": 140379336402752, + "relativeCreated": 15651.81303024292, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93184,8 +93131,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860851, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423369, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93195,14 +93142,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 860.8510494232178, + "msecs": 423.3689308166504, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.261100769043, - "thread": 140379336402752, + "relativeCreated": 15651.867866516113, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93212,8 +93159,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860918, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423427, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93223,14 +93170,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 860.9180450439453, + "msecs": 423.4271049499512, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.32809638977, - "thread": 140379336402752, + "relativeCreated": 15651.926040649414, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93240,8 +93187,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:23,860", - "created": 1610361443.860996, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423481, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93251,39 +93198,39 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 860.9960079193115, + "msecs": 423.4809875488281, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.406059265137, - "thread": 140379336402752, + "relativeCreated": 15651.979923248291, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861066, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.42353, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 861.0661029815674, + "msecs": 423.53010177612305, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.476154327393, - "thread": 140379336402752, + "relativeCreated": 15652.029037475586, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93292,25 +93239,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861136, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423592, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 861.1359596252441, + "msecs": 423.59209060668945, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.54601097107, - "thread": 140379336402752, + "relativeCreated": 15652.091026306152, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93318,25 +93265,25 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861203, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423648, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 861.2029552459717, + "msecs": 423.6481189727783, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.613006591797, - "thread": 140379336402752, + "relativeCreated": 15652.147054672241, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93344,25 +93291,25 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861269, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423698, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 861.2689971923828, + "msecs": 423.69794845581055, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.679048538208, - "thread": 140379336402752, + "relativeCreated": 15652.196884155273, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93372,8 +93319,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861336, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.42375, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93383,14 +93330,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 861.3359928131104, + "msecs": 423.7499237060547, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.746044158936, - "thread": 140379336402752, + "relativeCreated": 15652.248859405518, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93400,8 +93347,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.8614, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.42381, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93411,14 +93358,14 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 861.3998889923096, + "msecs": 423.8100051879883, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.809940338135, - "thread": 140379336402752, + "relativeCreated": 15652.308940887451, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93427,25 +93374,25 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861467, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423862, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 861.4668846130371, + "msecs": 423.8619804382324, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.876935958862, - "thread": 140379336402752, + "relativeCreated": 15652.360916137695, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93454,25 +93401,25 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861527, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.423911, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 861.5269660949707, + "msecs": 423.91109466552734, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.937017440796, - "thread": 140379336402752, + "relativeCreated": 15652.41003036499, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93481,68 +93428,68 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861587, + "asctime": "2021-01-14 00:26:06,423", + "created": 1610580366.42396, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 861.5870475769043, + "msecs": 423.95997047424316, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15516.99709892273, - "thread": 140379336402752, + "relativeCreated": 15652.458906173706, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861648, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.424009, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 861.6480827331543, + "msecs": 424.0090847015381, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.05813407898, - "thread": 140379336402752, + "relativeCreated": 15652.508020401001, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 861.7100715637207, + "msecs": 424.06296730041504, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.120122909546, - "thread": 140379336402752, + "relativeCreated": 15652.561902999878, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 6.198883056640625e-05 + "time_consumption": 5.3882598876953125e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:24,205", - "created": 1610361444.205478, + "asctime": "2021-01-14 00:26:06,767", + "created": 1610580366.767839, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -93557,8 +93504,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861841, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.42417, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93568,22 +93515,22 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 861.8409633636475, + "msecs": 424.17001724243164, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.251014709473, - "thread": 140379336402752, + "relativeCreated": 15652.668952941895, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:23,861", - "created": 1610361443.861953, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.424226, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93593,39 +93540,39 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 861.9530200958252, + "msecs": 424.2260456085205, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.36307144165, - "thread": 140379336402752, + "relativeCreated": 15652.724981307983, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:23,862", - "created": 1610361443.862004, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.42428, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 862.0040416717529, + "msecs": 424.27992820739746, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.414093017578, - "thread": 140379336402752, + "relativeCreated": 15652.77886390686, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93636,33 +93583,33 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,862", - "created": 1610361443.862082, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.424381, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 862.0820045471191, + "msecs": 424.3810176849365, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.492055892944, - "thread": 140379336402752, + "relativeCreated": 15652.8799533844, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,862", - "created": 1610361443.862229, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.424542, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93672,22 +93619,22 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 862.2291088104248, + "msecs": 424.5419502258301, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.63916015625, - "thread": 140379336402752, + "relativeCreated": 15653.040885925293, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:23,862", - "created": 1610361443.862285, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.424596, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93697,39 +93644,39 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 862.2848987579346, + "msecs": 424.59607124328613, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.69495010376, - "thread": 140379336402752, + "relativeCreated": 15653.095006942749, + "thread": 140019705194304, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:23,862", - "created": 1610361443.862332, + "asctime": "2021-01-14 00:26:06,424", + "created": 1610580366.424644, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 862.3321056365967, + "msecs": 424.64399337768555, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15517.742156982422, - "thread": 140379336402752, + "relativeCreated": 15653.142929077148, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -93737,8 +93684,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,862", - "created": 1610361443.862835, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427063, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93748,14 +93695,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 862.8349304199219, + "msecs": 427.06298828125, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.244981765747, - "thread": 140377734485760, + "relativeCreated": 15655.561923980713, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93763,8 +93710,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,862", - "created": 1610361443.86294, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427211, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -93774,14 +93721,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 862.9400730133057, + "msecs": 427.21104621887207, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.35012435913, - "thread": 140377734485760, + "relativeCreated": 15655.709981918335, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93789,8 +93736,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863007, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427277, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93800,14 +93747,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 863.0070686340332, + "msecs": 427.2770881652832, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.417119979858, - "thread": 140377734485760, + "relativeCreated": 15655.776023864746, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93816,8 +93763,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863068, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427332, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93827,14 +93774,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.0681037902832, + "msecs": 427.33192443847656, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.478155136108, - "thread": 140377734485760, + "relativeCreated": 15655.83086013794, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93842,8 +93789,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863147, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427402, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93853,14 +93800,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.1470203399658, + "msecs": 427.4020195007324, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.557071685791, - "thread": 140377734485760, + "relativeCreated": 15655.900955200195, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93869,8 +93816,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.8632, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427458, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93880,14 +93827,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.1999492645264, + "msecs": 427.4580478668213, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.610000610352, - "thread": 140377734485760, + "relativeCreated": 15655.956983566284, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93895,8 +93842,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863266, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427526, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93906,14 +93853,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.2659912109375, + "msecs": 427.52599716186523, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.676042556763, - "thread": 140377734485760, + "relativeCreated": 15656.024932861328, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93922,8 +93869,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863312, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427574, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93933,14 +93880,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.3120059967041, + "msecs": 427.57391929626465, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.72205734253, - "thread": 140377734485760, + "relativeCreated": 15656.072854995728, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93948,8 +93895,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863369, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427634, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93959,14 +93906,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.3689880371094, + "msecs": 427.63400077819824, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.779039382935, - "thread": 140377734485760, + "relativeCreated": 15656.132936477661, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -93975,8 +93922,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863417, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427688, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -93986,14 +93933,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.4169101715088, + "msecs": 427.6878833770752, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.826961517334, - "thread": 140377734485760, + "relativeCreated": 15656.186819076538, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94001,8 +93948,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863481, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427755, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94012,14 +93959,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.4810447692871, + "msecs": 427.75511741638184, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.891096115112, - "thread": 140377734485760, + "relativeCreated": 15656.254053115845, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94028,8 +93975,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863536, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427803, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94039,14 +93986,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 863.5358810424805, + "msecs": 427.80303955078125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15518.945932388306, - "thread": 140377734485760, + "relativeCreated": 15656.301975250244, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94054,8 +94001,8 @@ "comm-client:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863632, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427875, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94065,14 +94012,14 @@ "lineno": 284, "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 863.6319637298584, + "msecs": 427.8750419616699, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.042015075684, - "thread": 140377734485760, + "relativeCreated": 15656.373977661133, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94080,8 +94027,8 @@ "comm-server:", "(6): 28 3b d3 54 3a 3e" ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863714, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.427936, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94091,14 +94038,14 @@ "lineno": 414, "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", "module": "__init__", - "msecs": 863.7139797210693, + "msecs": 427.9360771179199, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.124031066895, - "thread": 140377734485760, + "relativeCreated": 15656.435012817383, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94106,8 +94053,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863791, + "asctime": "2021-01-14 00:26:06,427", + "created": 1610580366.42799, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94117,14 +94064,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 863.7909889221191, + "msecs": 427.9899597167969, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.201040267944, - "thread": 140377734485760, + "relativeCreated": 15656.48889541626, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94133,8 +94080,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863865, + "asctime": "2021-01-14 00:26:06,428", + "created": 1610580366.428039, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94144,14 +94091,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 863.8648986816406, + "msecs": 428.0390739440918, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.274950027466, - "thread": 140377734485760, + "relativeCreated": 15656.538009643555, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94159,8 +94106,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" ], - "asctime": "2021-01-11 11:37:23,863", - "created": 1610361443.863962, + "asctime": "2021-01-14 00:26:06,428", + "created": 1610580366.428139, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94170,14 +94117,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", "module": "stp", - "msecs": 863.961935043335, + "msecs": 428.13897132873535, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.37198638916, - "thread": 140377734485760, + "relativeCreated": 15656.637907028198, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94188,25 +94135,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,864", - "created": 1610361443.864078, + "asctime": "2021-01-14 00:26:06,428", + "created": 1610580366.428264, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 864.0780448913574, + "msecs": 428.26390266418457, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.488096237183, - "thread": 140377734485760, + "relativeCreated": 15656.762838363647, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94214,25 +94161,25 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:23,864", - "created": 1610361443.864132, + "asctime": "2021-01-14 00:26:06,428", + "created": 1610580366.428333, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 864.1319274902344, + "msecs": 428.333044052124, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.54197883606, - "thread": 140377734485760, + "relativeCreated": 15656.831979751587, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94243,25 +94190,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,864", - "created": 1610361443.864201, + "asctime": "2021-01-14 00:26:06,428", + "created": 1610580366.428416, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 864.2010688781738, + "msecs": 428.41601371765137, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15519.611120223999, - "thread": 140377734485760, + "relativeCreated": 15656.914949417114, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94269,8 +94216,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865218, + "asctime": "2021-01-14 00:26:06,435", + "created": 1610580366.43531, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94280,14 +94227,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 865.217924118042, + "msecs": 435.30988693237305, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15520.627975463867, - "thread": 140377247971072, + "relativeCreated": 15663.808822631836, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94295,8 +94242,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865392, + "asctime": "2021-01-14 00:26:06,435", + "created": 1610580366.435715, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94306,14 +94253,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", "module": "__init__", - "msecs": 865.3919696807861, + "msecs": 435.7149600982666, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15520.802021026611, - "thread": 140377247971072, + "relativeCreated": 15664.21389579773, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94321,8 +94268,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865483, + "asctime": "2021-01-14 00:26:06,435", + "created": 1610580366.435939, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94332,14 +94279,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 865.4830455780029, + "msecs": 435.93907356262207, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15520.893096923828, - "thread": 140377247971072, + "relativeCreated": 15664.438009262085, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94348,8 +94295,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865541, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436098, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94359,14 +94306,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 865.5409812927246, + "msecs": 436.0980987548828, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15520.95103263855, - "thread": 140377247971072, + "relativeCreated": 15664.597034454346, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94374,8 +94321,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.86561, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436245, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94385,14 +94332,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 865.609884262085, + "msecs": 436.2449645996094, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.01993560791, - "thread": 140377247971072, + "relativeCreated": 15664.743900299072, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94401,8 +94348,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.86566, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436377, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94412,14 +94359,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 865.6599521636963, + "msecs": 436.37704849243164, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.070003509521, - "thread": 140377247971072, + "relativeCreated": 15664.875984191895, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94427,8 +94374,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865729, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.43649, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94438,14 +94385,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 865.7290935516357, + "msecs": 436.4900588989258, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.139144897461, - "thread": 140377247971072, + "relativeCreated": 15664.988994598389, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94454,8 +94401,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865777, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436571, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94465,14 +94412,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 865.7770156860352, + "msecs": 436.5708827972412, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.18706703186, - "thread": 140377247971072, + "relativeCreated": 15665.069818496704, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94480,8 +94427,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865839, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436675, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94491,14 +94438,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 865.8390045166016, + "msecs": 436.6750717163086, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.249055862427, - "thread": 140377247971072, + "relativeCreated": 15665.174007415771, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94507,8 +94454,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,865", - "created": 1610361443.865897, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436759, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94518,14 +94465,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 865.8969402313232, + "msecs": 436.75899505615234, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.306991577148, - "thread": 140377247971072, + "relativeCreated": 15665.257930755615, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94533,8 +94480,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.866023, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436867, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94544,14 +94491,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 866.023063659668, + "msecs": 436.86699867248535, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.433115005493, - "thread": 140377247971072, + "relativeCreated": 15665.365934371948, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94560,8 +94507,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.86607, + "asctime": "2021-01-14 00:26:06,436", + "created": 1610580366.436944, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94571,14 +94518,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 866.070032119751, + "msecs": 436.94400787353516, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.480083465576, - "thread": 140377247971072, + "relativeCreated": 15665.442943572998, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94586,8 +94533,8 @@ "comm-server:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.86614, + "asctime": "2021-01-14 00:26:06,437", + "created": 1610580366.437071, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94597,14 +94544,14 @@ "lineno": 284, "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 866.1398887634277, + "msecs": 437.0710849761963, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.549940109253, - "thread": 140377247971072, + "relativeCreated": 15665.57002067566, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94612,8 +94559,8 @@ "comm-client:", "(6): 14 5b 30 5c 3a 3e" ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.866194, + "asctime": "2021-01-14 00:26:06,437", + "created": 1610580366.437181, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94623,14 +94570,14 @@ "lineno": 414, "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", "module": "__init__", - "msecs": 866.1940097808838, + "msecs": 437.1809959411621, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.604061126709, - "thread": 140377247971072, + "relativeCreated": 15665.679931640625, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94638,8 +94585,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.866245, + "asctime": "2021-01-14 00:26:06,437", + "created": 1610580366.437269, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94649,14 +94596,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 866.2450313568115, + "msecs": 437.2689723968506, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.655082702637, - "thread": 140377247971072, + "relativeCreated": 15665.767908096313, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94665,8 +94612,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.866292, + "asctime": "2021-01-14 00:26:06,437", + "created": 1610580366.437355, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94676,14 +94623,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 866.2919998168945, + "msecs": 437.35504150390625, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.70205116272, - "thread": 140377247971072, + "relativeCreated": 15665.85397720337, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94691,8 +94638,8 @@ "STP:", "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.866384, + "asctime": "2021-01-14 00:26:06,437", + "created": 1610580366.437516, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -94702,14 +94649,14 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", "module": "stp", - "msecs": 866.3840293884277, + "msecs": 437.5159740447998, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.794080734253, - "thread": 140377247971072, + "relativeCreated": 15666.014909744263, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94720,25 +94667,25 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.866489, + "asctime": "2021-01-14 00:26:06,437", + "created": 1610580366.437741, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 866.4889335632324, + "msecs": 437.7410411834717, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.898984909058, - "thread": 140377247971072, + "relativeCreated": 15666.239976882935, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -94746,43 +94693,43 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:23,866", - "created": 1610361443.866549, + "asctime": "2021-01-14 00:26:06,437", + "created": 1610580366.437854, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 866.549015045166, + "msecs": 437.8540515899658, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15521.959066390991, - "thread": 140377247971072, + "relativeCreated": 15666.352987289429, + "thread": 140017611568896, "threadName": "Thread-28" } ], - "msecs": 205.47795295715332, + "msecs": 767.8389549255371, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15860.888004302979, - "thread": 140379336402752, + "relativeCreated": 15996.337890625, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.3389289379119873 + "time_consumption": 0.3299849033355713 }, { "args": [], - "asctime": "2021-01-11 11:37:24,207", - "created": 1610361444.207149, + "asctime": "2021-01-14 00:26:06,769", + "created": 1610580366.769922, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -94800,8 +94747,8 @@ "None", "None" ], - "asctime": "2021-01-11 11:37:24,206", - "created": 1610361444.206104, + "asctime": "2021-01-14 00:26:06,768", + "created": 1610580366.768454, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94811,14 +94758,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback3__' for SID=None and DID=None", "module": "__init__", - "msecs": 206.10404014587402, + "msecs": 768.4540748596191, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15861.5140914917, - "thread": 140379336402752, + "relativeCreated": 15996.953010559082, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -94828,8 +94775,8 @@ "None", "0" ], - "asctime": "2021-01-11 11:37:24,206", - "created": 1610361444.206394, + "asctime": "2021-01-14 00:26:06,768", + "created": 1610580366.768793, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94839,14 +94786,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback2__' for SID=None and DID=0", "module": "__init__", - "msecs": 206.39395713806152, + "msecs": 768.7931060791016, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15861.804008483887, - "thread": 140379336402752, + "relativeCreated": 15997.292041778564, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -94856,8 +94803,8 @@ "10", "None" ], - "asctime": "2021-01-11 11:37:24,206", - "created": 1610361444.206656, + "asctime": "2021-01-14 00:26:06,769", + "created": 1610580366.769364, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94867,14 +94814,14 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback1__' for SID=10 and DID=None", "module": "__init__", - "msecs": 206.65597915649414, + "msecs": 769.3641185760498, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15862.06603050232, - "thread": 140379336402752, + "relativeCreated": 15997.863054275513, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -94884,8 +94831,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:24,206", - "created": 1610361444.206939, + "asctime": "2021-01-14 00:26:06,769", + "created": 1610580366.769723, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94895,32 +94842,32 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 206.9389820098877, + "msecs": 769.7229385375977, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15862.349033355713, - "thread": 140379336402752, + "relativeCreated": 15998.22187423706, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 207.14902877807617, + "msecs": 769.9220180511475, "msg": "Registering all kind of Callbacks", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15862.559080123901, - "thread": 140379336402752, + "relativeCreated": 15998.42095375061, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00021004676818847656 + "time_consumption": 0.0001990795135498047 }, { "args": [], - "asctime": "2021-01-11 11:37:24,408", - "created": 1610361444.408824, + "asctime": "2021-01-14 00:26:06,971", + "created": 1610580366.971716, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -94939,25 +94886,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,207", - "created": 1610361444.207759, + "asctime": "2021-01-14 00:26:06,770", + "created": 1610580366.770413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 207.75890350341797, + "msecs": 770.4129219055176, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15863.168954849243, - "thread": 140379336402752, + "relativeCreated": 15998.91185760498, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -94965,8 +94912,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,229", - "created": 1610361444.229831, + "asctime": "2021-01-14 00:26:06,793", + "created": 1610580366.793943, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -94976,14 +94923,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 229.83098030090332, + "msecs": 793.942928314209, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15885.241031646729, - "thread": 140377734485760, + "relativeCreated": 16022.441864013672, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -94991,8 +94938,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,230", - "created": 1610361444.230406, + "asctime": "2021-01-14 00:26:06,794", + "created": 1610580366.794624, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -95002,14 +94949,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 230.4060459136963, + "msecs": 794.6240901947021, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15885.816097259521, - "thread": 140377734485760, + "relativeCreated": 16023.123025894165, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95017,8 +94964,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,230", - "created": 1610361444.230692, + "asctime": "2021-01-14 00:26:06,794", + "created": 1610580366.794926, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95028,14 +94975,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 230.69190979003906, + "msecs": 794.9259281158447, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15886.101961135864, - "thread": 140377734485760, + "relativeCreated": 16023.424863815308, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95044,8 +94991,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,230", - "created": 1610361444.23093, + "asctime": "2021-01-14 00:26:06,795", + "created": 1610580366.795168, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95055,14 +95002,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 230.93008995056152, + "msecs": 795.1679229736328, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15886.340141296387, - "thread": 140377734485760, + "relativeCreated": 16023.666858673096, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95070,8 +95017,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,231", - "created": 1610361444.231214, + "asctime": "2021-01-14 00:26:06,795", + "created": 1610580366.795497, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95081,14 +95028,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 231.21404647827148, + "msecs": 795.496940612793, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15886.624097824097, - "thread": 140377734485760, + "relativeCreated": 16023.995876312256, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95097,8 +95044,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,231", - "created": 1610361444.231429, + "asctime": "2021-01-14 00:26:06,795", + "created": 1610580366.795736, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95108,14 +95055,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 231.4291000366211, + "msecs": 795.7360744476318, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15886.839151382446, - "thread": 140377734485760, + "relativeCreated": 16024.235010147095, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95123,8 +95070,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,231", - "created": 1610361444.231942, + "asctime": "2021-01-14 00:26:06,796", + "created": 1610580366.796242, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95134,14 +95081,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 231.94193840026855, + "msecs": 796.2419986724854, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15887.351989746094, - "thread": 140377734485760, + "relativeCreated": 16024.740934371948, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95150,8 +95097,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,232", - "created": 1610361444.232207, + "asctime": "2021-01-14 00:26:06,796", + "created": 1610580366.796477, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95161,14 +95108,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 232.2070598602295, + "msecs": 796.4770793914795, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15887.617111206055, - "thread": 140377734485760, + "relativeCreated": 16024.976015090942, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95176,8 +95123,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,232", - "created": 1610361444.232423, + "asctime": "2021-01-14 00:26:06,796", + "created": 1610580366.796807, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95187,14 +95134,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 232.4230670928955, + "msecs": 796.807050704956, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15887.83311843872, - "thread": 140377734485760, + "relativeCreated": 16025.305986404419, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95203,8 +95150,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,232", - "created": 1610361444.232568, + "asctime": "2021-01-14 00:26:06,797", + "created": 1610580366.797034, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95214,14 +95161,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 232.56802558898926, + "msecs": 797.0340251922607, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15887.978076934814, - "thread": 140377734485760, + "relativeCreated": 16025.532960891724, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95229,8 +95176,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,232", - "created": 1610361444.232806, + "asctime": "2021-01-14 00:26:06,797", + "created": 1610580366.797272, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95240,14 +95187,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 232.80596733093262, + "msecs": 797.2719669342041, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15888.216018676758, - "thread": 140377734485760, + "relativeCreated": 16025.770902633667, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95256,8 +95203,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,232", - "created": 1610361444.232959, + "asctime": "2021-01-14 00:26:06,797", + "created": 1610580366.797379, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95267,14 +95214,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 232.95903205871582, + "msecs": 797.3790168762207, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15888.369083404541, - "thread": 140377734485760, + "relativeCreated": 16025.877952575684, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95282,8 +95229,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,233", - "created": 1610361444.233259, + "asctime": "2021-01-14 00:26:06,797", + "created": 1610580366.797561, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -95293,14 +95240,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 233.2589626312256, + "msecs": 797.5609302520752, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15888.66901397705, - "thread": 140377734485760, + "relativeCreated": 16026.059865951538, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95308,8 +95255,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,233", - "created": 1610361444.233486, + "asctime": "2021-01-14 00:26:06,797", + "created": 1610580366.797833, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -95319,14 +95266,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 233.48593711853027, + "msecs": 797.8329658508301, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15888.895988464355, - "thread": 140377734485760, + "relativeCreated": 16026.331901550293, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95334,8 +95281,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,233", - "created": 1610361444.233676, + "asctime": "2021-01-14 00:26:06,798", + "created": 1610580366.798014, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95345,14 +95292,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 233.67595672607422, + "msecs": 798.0139255523682, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15889.0860080719, - "thread": 140377734485760, + "relativeCreated": 16026.512861251831, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95361,8 +95308,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,233", - "created": 1610361444.23383, + "asctime": "2021-01-14 00:26:06,798", + "created": 1610580366.798147, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95372,14 +95319,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 233.82997512817383, + "msecs": 798.1469631195068, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15889.240026473999, - "thread": 140377734485760, + "relativeCreated": 16026.64589881897, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95387,8 +95334,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:24,234", - "created": 1610361444.23413, + "asctime": "2021-01-14 00:26:06,798", + "created": 1610580366.798358, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95398,14 +95345,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 234.1299057006836, + "msecs": 798.3579635620117, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15889.539957046509, - "thread": 140377734485760, + "relativeCreated": 16026.856899261475, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95416,25 +95363,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,234", - "created": 1610361444.234489, + "asctime": "2021-01-14 00:26:06,798", + "created": 1610580366.798604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 234.48896408081055, + "msecs": 798.6040115356445, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15889.899015426636, - "thread": 140377734485760, + "relativeCreated": 16027.102947235107, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95442,25 +95389,25 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:24,234", - "created": 1610361444.234667, + "asctime": "2021-01-14 00:26:06,798", + "created": 1610580366.798739, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 234.6670627593994, + "msecs": 798.738956451416, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15890.077114105225, - "thread": 140377734485760, + "relativeCreated": 16027.237892150879, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95471,25 +95418,25 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:24,234", - "created": 1610361444.234864, + "asctime": "2021-01-14 00:26:06,798", + "created": 1610580366.798924, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 234.8639965057373, + "msecs": 798.9239692687988, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15890.274047851562, - "thread": 140377734485760, + "relativeCreated": 16027.422904968262, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -95497,8 +95444,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:24,267", - "created": 1610361444.267963, + "asctime": "2021-01-14 00:26:06,803", + "created": 1610580366.803537, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -95508,14 +95455,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 267.9629325866699, + "msecs": 803.5368919372559, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15923.372983932495, - "thread": 140377247971072, + "relativeCreated": 16032.035827636719, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95523,8 +95470,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" ], - "asctime": "2021-01-11 11:37:24,268", - "created": 1610361444.268818, + "asctime": "2021-01-14 00:26:06,803", + "created": 1610580366.803785, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -95534,14 +95481,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", "module": "__init__", - "msecs": 268.8179016113281, + "msecs": 803.7850856781006, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15924.227952957153, - "thread": 140377247971072, + "relativeCreated": 16032.284021377563, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95549,8 +95496,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,269", - "created": 1610361444.269119, + "asctime": "2021-01-14 00:26:06,803", + "created": 1610580366.803885, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95560,14 +95507,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 269.1190242767334, + "msecs": 803.8849830627441, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15924.529075622559, - "thread": 140377247971072, + "relativeCreated": 16032.383918762207, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95576,8 +95523,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,269", - "created": 1610361444.269377, + "asctime": "2021-01-14 00:26:06,803", + "created": 1610580366.80399, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95587,14 +95534,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 269.3769931793213, + "msecs": 803.9898872375488, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15924.787044525146, - "thread": 140377247971072, + "relativeCreated": 16032.488822937012, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95602,8 +95549,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,269", - "created": 1610361444.269693, + "asctime": "2021-01-14 00:26:06,804", + "created": 1610580366.804152, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95613,14 +95560,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 269.69289779663086, + "msecs": 804.1520118713379, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15925.102949142456, - "thread": 140377247971072, + "relativeCreated": 16032.6509475708, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95629,8 +95576,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,269", - "created": 1610361444.269936, + "asctime": "2021-01-14 00:26:06,804", + "created": 1610580366.804271, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95640,14 +95587,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 269.93608474731445, + "msecs": 804.2709827423096, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15925.34613609314, - "thread": 140377247971072, + "relativeCreated": 16032.769918441772, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95655,8 +95602,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,270", - "created": 1610361444.270297, + "asctime": "2021-01-14 00:26:06,804", + "created": 1610580366.804446, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95666,14 +95613,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 270.2970504760742, + "msecs": 804.4459819793701, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15925.7071018219, - "thread": 140377247971072, + "relativeCreated": 16032.944917678833, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95682,8 +95629,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,270", - "created": 1610361444.270649, + "asctime": "2021-01-14 00:26:06,804", + "created": 1610580366.804571, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95693,14 +95640,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 270.6489562988281, + "msecs": 804.5709133148193, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15926.059007644653, - "thread": 140377247971072, + "relativeCreated": 16033.069849014282, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95708,8 +95655,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,270", - "created": 1610361444.270857, + "asctime": "2021-01-14 00:26:06,804", + "created": 1610580366.804761, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95719,14 +95666,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 270.8570957183838, + "msecs": 804.7609329223633, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15926.267147064209, - "thread": 140377247971072, + "relativeCreated": 16033.259868621826, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95735,8 +95682,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,271", - "created": 1610361444.271011, + "asctime": "2021-01-14 00:26:06,804", + "created": 1610580366.804844, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95746,14 +95693,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 271.0111141204834, + "msecs": 804.8439025878906, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15926.421165466309, - "thread": 140377247971072, + "relativeCreated": 16033.342838287354, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95761,8 +95708,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,271", - "created": 1610361444.271279, + "asctime": "2021-01-14 00:26:06,804", + "created": 1610580366.804968, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95772,14 +95719,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 271.27909660339355, + "msecs": 804.9681186676025, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15926.689147949219, - "thread": 140377247971072, + "relativeCreated": 16033.467054367065, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95788,8 +95735,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,271", - "created": 1610361444.271471, + "asctime": "2021-01-14 00:26:06,805", + "created": 1610580366.805078, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95799,14 +95746,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 271.4710235595703, + "msecs": 805.0780296325684, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15926.881074905396, - "thread": 140377247971072, + "relativeCreated": 16033.576965332031, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95814,8 +95761,8 @@ "comm-server:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:24,271", - "created": 1610361444.271827, + "asctime": "2021-01-14 00:26:06,805", + "created": 1610580366.805272, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -95825,14 +95772,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 271.82698249816895, + "msecs": 805.272102355957, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15927.237033843994, - "thread": 140377247971072, + "relativeCreated": 16033.77103805542, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95840,8 +95787,8 @@ "comm-client:", "(5): 02 24 68 3a 3e" ], - "asctime": "2021-01-11 11:37:24,272", - "created": 1610361444.272116, + "asctime": "2021-01-14 00:26:06,805", + "created": 1610580366.8054, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -95851,14 +95798,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 02 24 68 3a 3e", "module": "__init__", - "msecs": 272.11594581604004, + "msecs": 805.3998947143555, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15927.525997161865, - "thread": 140377247971072, + "relativeCreated": 16033.898830413818, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95866,8 +95813,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,272", - "created": 1610361444.272429, + "asctime": "2021-01-14 00:26:06,805", + "created": 1610580366.805509, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95877,14 +95824,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 272.4289894104004, + "msecs": 805.509090423584, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15927.839040756226, - "thread": 140377247971072, + "relativeCreated": 16034.008026123047, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95893,8 +95840,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,272", - "created": 1610361444.272627, + "asctime": "2021-01-14 00:26:06,805", + "created": 1610580366.805608, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95904,14 +95851,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 272.6271152496338, + "msecs": 805.6080341339111, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15928.037166595459, - "thread": 140377247971072, + "relativeCreated": 16034.106969833374, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95919,8 +95866,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" ], - "asctime": "2021-01-11 11:37:24,273", - "created": 1610361444.273078, + "asctime": "2021-01-14 00:26:06,805", + "created": 1610580366.805809, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -95930,14 +95877,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", "module": "stp", - "msecs": 273.07796478271484, + "msecs": 805.8090209960938, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15928.48801612854, - "thread": 140377247971072, + "relativeCreated": 16034.307956695557, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -95948,71 +95895,71 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:24,273", - "created": 1610361444.273335, + "asctime": "2021-01-14 00:26:06,806", + "created": 1610580366.806036, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 273.3349800109863, + "msecs": 806.0359954833984, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15928.745031356812, - "thread": 140377247971072, + "relativeCreated": 16034.534931182861, + "thread": 140017611568896, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:24,273", - "created": 1610361444.273421, + "asctime": "2021-01-14 00:26:06,806", + "created": 1610580366.806198, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 273.421049118042, + "msecs": 806.1978816986084, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 15928.831100463867, - "thread": 140377247971072, + "relativeCreated": 16034.696817398071, + "thread": 140017611568896, "threadName": "Thread-28" } ], - "msecs": 408.82396697998047, + "msecs": 971.7159271240234, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16064.234018325806, - "thread": 140379336402752, + "relativeCreated": 16200.214862823486, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.13540291786193848 + "time_consumption": 0.16551804542541504 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,410", - "created": 1610361444.41029, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972331, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -96029,8 +95976,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,409", - "created": 1610361444.409638, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972076, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -96040,14 +95987,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 409.6379280090332, + "msecs": 972.0759391784668, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16065.047979354858, - "thread": 140379336402752, + "relativeCreated": 16200.57487487793, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -96056,8 +96003,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,410", - "created": 1610361444.41, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972206, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -96067,35 +96014,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 410.0000858306885, + "msecs": 972.2061157226562, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16065.410137176514, - "thread": 140379336402752, + "relativeCreated": 16200.70505142212, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 410.290002822876, + "msecs": 972.3310470581055, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16065.700054168701, - "thread": 140379336402752, + "relativeCreated": 16200.829982757568, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002899169921875 + "time_consumption": 0.00012493133544921875 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,411", - "created": 1610361444.41114, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972703, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -96112,8 +96059,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,410", - "created": 1610361444.410754, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972501, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -96123,14 +96070,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 410.7539653778076, + "msecs": 972.5010395050049, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16066.164016723633, - "thread": 140379336402752, + "relativeCreated": 16200.999975204468, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -96139,8 +96086,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,410", - "created": 1610361444.410946, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972602, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -96150,32 +96097,32 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 410.9458923339844, + "msecs": 972.6018905639648, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16066.35594367981, - "thread": 140379336402752, + "relativeCreated": 16201.100826263428, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 411.13996505737305, + "msecs": 972.7029800415039, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16066.550016403198, - "thread": 140379336402752, + "relativeCreated": 16201.201915740967, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00019407272338867188 + "time_consumption": 0.0001010894775390625 }, { "args": [], - "asctime": "2021-01-11 11:37:24,411", - "created": 1610361444.411694, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972995, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -96193,8 +96140,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:24,411", - "created": 1610361444.411474, + "asctime": "2021-01-14 00:26:06,972", + "created": 1610580366.972889, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -96204,32 +96151,32 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 411.47398948669434, + "msecs": 972.8889465332031, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16066.88404083252, - "thread": 140379336402752, + "relativeCreated": 16201.387882232666, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 411.6940498352051, + "msecs": 972.9950428009033, "msg": "Removing Callback for a specific Data- and Service-ID", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16067.10410118103, - "thread": 140379336402752, + "relativeCreated": 16201.493978500366, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002200603485107422 + "time_consumption": 0.00010609626770019531 }, { "args": [], - "asctime": "2021-01-11 11:37:24,613", - "created": 1610361444.613275, + "asctime": "2021-01-14 00:26:07,174", + "created": 1610580367.174662, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -96248,25 +96195,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,412", - "created": 1610361444.41213, + "asctime": "2021-01-14 00:26:06,973", + "created": 1610580366.973341, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 412.13011741638184, + "msecs": 973.3409881591797, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16067.540168762207, - "thread": 140379336402752, + "relativeCreated": 16201.839923858643, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -96274,8 +96221,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,436", - "created": 1610361444.436242, + "asctime": "2021-01-14 00:26:07,000", + "created": 1610580367.000575, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -96285,14 +96232,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 436.24210357666016, + "msecs": 0.5750656127929688, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16091.652154922485, - "thread": 140377734485760, + "relativeCreated": 16229.074001312256, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96300,8 +96247,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,436", - "created": 1610361444.436889, + "asctime": "2021-01-14 00:26:07,001", + "created": 1610580367.001255, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -96311,14 +96258,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 436.8889331817627, + "msecs": 1.255035400390625, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16092.298984527588, - "thread": 140377734485760, + "relativeCreated": 16229.753971099854, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96326,8 +96273,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,437", - "created": 1610361444.437257, + "asctime": "2021-01-14 00:26:07,001", + "created": 1610580367.001522, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96337,14 +96284,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 437.2570514678955, + "msecs": 1.522064208984375, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16092.66710281372, - "thread": 140377734485760, + "relativeCreated": 16230.020999908447, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96353,8 +96300,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,437", - "created": 1610361444.437462, + "asctime": "2021-01-14 00:26:07,001", + "created": 1610580367.001749, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96364,14 +96311,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 437.46209144592285, + "msecs": 1.7490386962890625, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16092.872142791748, - "thread": 140377734485760, + "relativeCreated": 16230.247974395752, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96379,8 +96326,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,437", - "created": 1610361444.437753, + "asctime": "2021-01-14 00:26:07,002", + "created": 1610580367.002026, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96390,14 +96337,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 437.75296211242676, + "msecs": 2.026081085205078, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16093.163013458252, - "thread": 140377734485760, + "relativeCreated": 16230.525016784668, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96406,8 +96353,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,437", - "created": 1610361444.437944, + "asctime": "2021-01-14 00:26:07,002", + "created": 1610580367.002232, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96417,14 +96364,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 437.9439353942871, + "msecs": 2.232074737548828, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16093.353986740112, - "thread": 140377734485760, + "relativeCreated": 16230.731010437012, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96432,8 +96379,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,438", - "created": 1610361444.438197, + "asctime": "2021-01-14 00:26:07,002", + "created": 1610580367.002521, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96443,14 +96390,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 438.19689750671387, + "msecs": 2.521038055419922, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16093.606948852539, - "thread": 140377734485760, + "relativeCreated": 16231.019973754883, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96459,8 +96406,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,438", - "created": 1610361444.438373, + "asctime": "2021-01-14 00:26:07,002", + "created": 1610580367.002772, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96470,14 +96417,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 438.3730888366699, + "msecs": 2.772092819213867, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16093.783140182495, - "thread": 140377734485760, + "relativeCreated": 16231.271028518677, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96485,8 +96432,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,438", - "created": 1610361444.438613, + "asctime": "2021-01-14 00:26:07,003", + "created": 1610580367.003073, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96496,14 +96443,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 438.6129379272461, + "msecs": 3.072977066040039, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16094.022989273071, - "thread": 140377734485760, + "relativeCreated": 16231.571912765503, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96512,8 +96459,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,438", - "created": 1610361444.438787, + "asctime": "2021-01-14 00:26:07,003", + "created": 1610580367.003579, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96523,14 +96470,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 438.78698348999023, + "msecs": 3.5789012908935547, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16094.197034835815, - "thread": 140377734485760, + "relativeCreated": 16232.077836990356, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96538,8 +96485,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,439", - "created": 1610361444.439022, + "asctime": "2021-01-14 00:26:07,003", + "created": 1610580367.00393, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96549,14 +96496,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 439.0220642089844, + "msecs": 3.9300918579101562, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16094.43211555481, - "thread": 140377734485760, + "relativeCreated": 16232.429027557373, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96565,8 +96512,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,439", - "created": 1610361444.439201, + "asctime": "2021-01-14 00:26:07,004", + "created": 1610580367.004207, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96576,14 +96523,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 439.20111656188965, + "msecs": 4.20689582824707, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16094.611167907715, - "thread": 140377734485760, + "relativeCreated": 16232.70583152771, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96591,8 +96538,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,439", - "created": 1610361444.439531, + "asctime": "2021-01-14 00:26:07,004", + "created": 1610580367.004509, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -96602,14 +96549,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 439.5310878753662, + "msecs": 4.50897216796875, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16094.941139221191, - "thread": 140377734485760, + "relativeCreated": 16233.007907867432, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96617,8 +96564,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,439", - "created": 1610361444.439804, + "asctime": "2021-01-14 00:26:07,004", + "created": 1610580367.004712, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -96628,14 +96575,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 439.8040771484375, + "msecs": 4.712104797363281, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16095.214128494263, - "thread": 140377734485760, + "relativeCreated": 16233.211040496826, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96643,8 +96590,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,440", - "created": 1610361444.440066, + "asctime": "2021-01-14 00:26:07,004", + "created": 1610580367.004894, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96654,14 +96601,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 440.0660991668701, + "msecs": 4.894018173217773, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16095.476150512695, - "thread": 140377734485760, + "relativeCreated": 16233.39295387268, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96670,8 +96617,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,440", - "created": 1610361444.440296, + "asctime": "2021-01-14 00:26:07,005", + "created": 1610580367.005058, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96681,14 +96628,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 440.295934677124, + "msecs": 5.058050155639648, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16095.70598602295, - "thread": 140377734485760, + "relativeCreated": 16233.556985855103, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96696,8 +96643,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:24,440", - "created": 1610361444.440813, + "asctime": "2021-01-14 00:26:07,005", + "created": 1610580367.005417, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96707,14 +96654,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 440.8130645751953, + "msecs": 5.417108535766602, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16096.22311592102, - "thread": 140377734485760, + "relativeCreated": 16233.91604423523, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96725,25 +96672,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,441", - "created": 1610361444.441332, + "asctime": "2021-01-14 00:26:07,005", + "created": 1610580367.005898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 441.3321018218994, + "msecs": 5.897998809814453, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16096.742153167725, - "thread": 140377734485760, + "relativeCreated": 16234.396934509277, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96751,25 +96698,25 @@ "prot-server:", "__callback1__" ], - "asctime": "2021-01-11 11:37:24,441", - "created": 1610361444.441612, + "asctime": "2021-01-14 00:26:07,006", + "created": 1610580367.006176, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback1__ to process received data", "module": "__init__", - "msecs": 441.61200523376465, + "msecs": 6.175994873046875, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16097.02205657959, - "thread": 140377734485760, + "relativeCreated": 16234.67493057251, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96780,25 +96727,25 @@ "status: operation not permitted", "34" ], - "asctime": "2021-01-11 11:37:24,442", - "created": 1610361444.442037, + "asctime": "2021-01-14 00:26:07,006", + "created": 1610580367.006685, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 442.03710556030273, + "msecs": 6.685018539428711, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16097.447156906128, - "thread": 140377734485760, + "relativeCreated": 16235.183954238892, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -96806,8 +96753,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46" ], - "asctime": "2021-01-11 11:37:24,474", - "created": 1610361444.474254, + "asctime": "2021-01-14 00:26:07,007", + "created": 1610580367.007716, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -96817,14 +96764,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46", "module": "__init__", - "msecs": 474.25389289855957, + "msecs": 7.715940475463867, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16129.663944244385, - "thread": 140377247971072, + "relativeCreated": 16236.214876174927, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -96832,8 +96779,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46" ], - "asctime": "2021-01-11 11:37:24,474", - "created": 1610361444.47489, + "asctime": "2021-01-14 00:26:07,007", + "created": 1610580367.007984, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -96843,14 +96790,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46", "module": "__init__", - "msecs": 474.88999366760254, + "msecs": 7.983922958374023, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16130.300045013428, - "thread": 140377247971072, + "relativeCreated": 16236.482858657837, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -96858,8 +96805,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,475", - "created": 1610361444.475107, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008108, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96869,14 +96816,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 475.10695457458496, + "msecs": 8.107900619506836, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16130.51700592041, - "thread": 140377247971072, + "relativeCreated": 16236.60683631897, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -96885,8 +96832,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,475", - "created": 1610361444.475265, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008218, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96896,14 +96843,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 475.2650260925293, + "msecs": 8.218050003051758, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16130.675077438354, - "thread": 140377247971072, + "relativeCreated": 16236.716985702515, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -96911,8 +96858,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,475", - "created": 1610361444.475439, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008318, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96922,14 +96869,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 475.43907165527344, + "msecs": 8.317947387695312, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16130.849123001099, - "thread": 140377247971072, + "relativeCreated": 16236.816883087158, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -96938,8 +96885,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,475", - "created": 1610361444.475589, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008401, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96949,14 +96896,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 475.5890369415283, + "msecs": 8.400917053222656, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16130.999088287354, - "thread": 140377247971072, + "relativeCreated": 16236.899852752686, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -96964,8 +96911,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,475", - "created": 1610361444.475804, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008503, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -96975,14 +96922,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 475.80409049987793, + "msecs": 8.502960205078125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16131.214141845703, - "thread": 140377247971072, + "relativeCreated": 16237.001895904541, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -96991,8 +96938,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,476", - "created": 1610361444.476011, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008592, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97002,14 +96949,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 476.0110378265381, + "msecs": 8.591890335083008, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16131.421089172363, - "thread": 140377247971072, + "relativeCreated": 16237.090826034546, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97017,8 +96964,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,476", - "created": 1610361444.47618, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008711, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97028,14 +96975,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 476.1800765991211, + "msecs": 8.711099624633789, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16131.590127944946, - "thread": 140377247971072, + "relativeCreated": 16237.210035324097, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97044,8 +96991,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,476", - "created": 1610361444.476326, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.00881, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97055,14 +97002,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 476.32598876953125, + "msecs": 8.810043334960938, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16131.736040115356, - "thread": 140377247971072, + "relativeCreated": 16237.308979034424, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97070,8 +97017,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,476", - "created": 1610361444.476493, + "asctime": "2021-01-14 00:26:07,008", + "created": 1610580367.008934, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97081,14 +97028,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 476.49288177490234, + "msecs": 8.93402099609375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16131.902933120728, - "thread": 140377247971072, + "relativeCreated": 16237.432956695557, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97097,8 +97044,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,476", - "created": 1610361444.476615, + "asctime": "2021-01-14 00:26:07,009", + "created": 1610580367.009024, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97108,14 +97055,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 476.61495208740234, + "msecs": 9.023904800415039, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16132.025003433228, - "thread": 140377247971072, + "relativeCreated": 16237.522840499878, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97123,8 +97070,8 @@ "comm-server:", "(5): 3f 83 36 3a 3e" ], - "asctime": "2021-01-11 11:37:24,476", - "created": 1610361444.476864, + "asctime": "2021-01-14 00:26:07,009", + "created": 1610580367.009187, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -97134,14 +97081,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 3f 83 36 3a 3e", "module": "__init__", - "msecs": 476.8640995025635, + "msecs": 9.186983108520508, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16132.274150848389, - "thread": 140377247971072, + "relativeCreated": 16237.685918807983, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97149,8 +97096,8 @@ "comm-client:", "(5): 3f 83 36 3a 3e" ], - "asctime": "2021-01-11 11:37:24,477", - "created": 1610361444.477037, + "asctime": "2021-01-14 00:26:07,009", + "created": 1610580367.009315, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -97160,14 +97107,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 3f 83 36 3a 3e", "module": "__init__", - "msecs": 477.0369529724121, + "msecs": 9.315013885498047, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16132.447004318237, - "thread": 140377247971072, + "relativeCreated": 16237.813949584961, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97175,8 +97122,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,477", - "created": 1610361444.477246, + "asctime": "2021-01-14 00:26:07,009", + "created": 1610580367.009429, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97186,14 +97133,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 477.2460460662842, + "msecs": 9.428977966308594, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16132.65609741211, - "thread": 140377247971072, + "relativeCreated": 16237.927913665771, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97202,8 +97149,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,477", - "created": 1610361444.477419, + "asctime": "2021-01-14 00:26:07,009", + "created": 1610580367.009533, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97213,14 +97160,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 477.4188995361328, + "msecs": 9.532928466796875, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16132.828950881958, - "thread": 140377247971072, + "relativeCreated": 16238.03186416626, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97228,8 +97175,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36" ], - "asctime": "2021-01-11 11:37:24,477", - "created": 1610361444.477782, + "asctime": "2021-01-14 00:26:07,009", + "created": 1610580367.009733, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97239,14 +97186,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36", "module": "stp", - "msecs": 477.7820110321045, + "msecs": 9.732961654663086, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16133.19206237793, - "thread": 140377247971072, + "relativeCreated": 16238.231897354126, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -97257,71 +97204,71 @@ "status: operation not permitted", "34" ], - "asctime": "2021-01-11 11:37:24,478", - "created": 1610361444.478137, + "asctime": "2021-01-14 00:26:07,009", + "created": 1610580367.009932, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 478.1370162963867, + "msecs": 9.93204116821289, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16133.547067642212, - "thread": 140377247971072, + "relativeCreated": 16238.430976867676, + "thread": 140017611568896, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:24,478", - "created": 1610361444.478403, + "asctime": "2021-01-14 00:26:07,010", + "created": 1610580367.010072, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 478.40309143066406, + "msecs": 10.071992874145508, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16133.81314277649, - "thread": 140377247971072, + "relativeCreated": 16238.570928573608, + "thread": 140017611568896, "threadName": "Thread-28" } ], - "msecs": 613.2750511169434, + "msecs": 174.66211318969727, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16268.685102462769, - "thread": 140379336402752, + "relativeCreated": 16403.16104888916, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.1348719596862793 + "time_consumption": 0.16459012031555176 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,614", - "created": 1610361444.614549, + "asctime": "2021-01-14 00:26:07,176", + "created": 1610580367.176082, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -97338,8 +97285,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,613", - "created": 1610361444.613855, + "asctime": "2021-01-14 00:26:07,175", + "created": 1610580367.175516, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -97349,14 +97296,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 613.8548851013184, + "msecs": 175.51589012145996, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16269.264936447144, - "thread": 140379336402752, + "relativeCreated": 16404.014825820923, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -97365,8 +97312,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,614", - "created": 1610361444.61418, + "asctime": "2021-01-14 00:26:07,175", + "created": 1610580367.175809, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -97376,35 +97323,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 614.1800880432129, + "msecs": 175.80890655517578, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16269.590139389038, - "thread": 140379336402752, + "relativeCreated": 16404.30784225464, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 614.548921585083, + "msecs": 176.08189582824707, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16269.958972930908, - "thread": 140379336402752, + "relativeCreated": 16404.58083152771, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003688335418701172 + "time_consumption": 0.00027298927307128906 }, { "args": [ "{u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,615", - "created": 1610361444.615981, + "asctime": "2021-01-14 00:26:07,177", + "created": 1610580367.177791, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -97421,8 +97368,8 @@ "{u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,615", - "created": 1610361444.6151, + "asctime": "2021-01-14 00:26:07,177", + "created": 1610580367.177157, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -97432,14 +97379,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0} ()", "module": "test", - "msecs": 615.0999069213867, + "msecs": 177.15692520141602, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16270.509958267212, - "thread": 140379336402752, + "relativeCreated": 16405.65586090088, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -97448,8 +97395,8 @@ "{'status': 6, 'service_id': 11, 'data': 34, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,615", - "created": 1610361444.615378, + "asctime": "2021-01-14 00:26:07,177", + "created": 1610580367.177493, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -97459,32 +97406,32 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 6, 'service_id': 11, 'data': 34, 'data_id': 0} ()", "module": "test", - "msecs": 615.3779029846191, + "msecs": 177.49309539794922, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16270.787954330444, - "thread": 140379336402752, + "relativeCreated": 16405.992031097412, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 615.9811019897461, + "msecs": 177.79111862182617, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16271.391153335571, - "thread": 140379336402752, + "relativeCreated": 16406.29005432129, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0006031990051269531 + "time_consumption": 0.0002980232238769531 }, { "args": [], - "asctime": "2021-01-11 11:37:24,617", - "created": 1610361444.617011, + "asctime": "2021-01-14 00:26:07,178", + "created": 1610580367.178503, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -97502,8 +97449,8 @@ "10", "None" ], - "asctime": "2021-01-11 11:37:24,616", - "created": 1610361444.616709, + "asctime": "2021-01-14 00:26:07,178", + "created": 1610580367.178242, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -97513,32 +97460,32 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", "module": "__init__", - "msecs": 616.7089939117432, + "msecs": 178.24196815490723, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16272.119045257568, - "thread": 140379336402752, + "relativeCreated": 16406.74090385437, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 617.0110702514648, + "msecs": 178.50303649902344, "msg": "Removing Callback for a specific Service-ID and all Data-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16272.42112159729, - "thread": 140379336402752, + "relativeCreated": 16407.001972198486, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003020763397216797 + "time_consumption": 0.00026106834411621094 }, { "args": [], - "asctime": "2021-01-11 11:37:24,818", - "created": 1610361444.818849, + "asctime": "2021-01-14 00:26:07,380", + "created": 1610580367.38045, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -97557,25 +97504,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,617", - "created": 1610361444.617539, + "asctime": "2021-01-14 00:26:07,179", + "created": 1610580367.179299, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 617.5389289855957, + "msecs": 179.29911613464355, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16272.94898033142, - "thread": 140379336402752, + "relativeCreated": 16407.798051834106, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -97583,8 +97530,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,643", - "created": 1610361444.643281, + "asctime": "2021-01-14 00:26:07,208", + "created": 1610580367.208359, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -97594,14 +97541,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 643.2809829711914, + "msecs": 208.3590030670166, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16298.691034317017, - "thread": 140377734485760, + "relativeCreated": 16436.85793876648, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97609,8 +97556,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,643", - "created": 1610361444.643775, + "asctime": "2021-01-14 00:26:07,208", + "created": 1610580367.208968, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -97620,14 +97567,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 643.7749862670898, + "msecs": 208.967924118042, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16299.185037612915, - "thread": 140377734485760, + "relativeCreated": 16437.466859817505, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97635,8 +97582,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,644", - "created": 1610361444.644009, + "asctime": "2021-01-14 00:26:07,209", + "created": 1610580367.209276, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97646,14 +97593,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 644.0091133117676, + "msecs": 209.2759609222412, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16299.419164657593, - "thread": 140377734485760, + "relativeCreated": 16437.774896621704, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97662,8 +97609,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,644", - "created": 1610361444.644188, + "asctime": "2021-01-14 00:26:07,209", + "created": 1610580367.209472, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97673,14 +97620,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 644.1879272460938, + "msecs": 209.4719409942627, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16299.597978591919, - "thread": 140377734485760, + "relativeCreated": 16437.970876693726, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97688,8 +97635,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,644", - "created": 1610361444.6444, + "asctime": "2021-01-14 00:26:07,209", + "created": 1610580367.209695, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97699,14 +97646,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 644.399881362915, + "msecs": 209.69510078430176, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16299.80993270874, - "thread": 140377734485760, + "relativeCreated": 16438.194036483765, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97715,8 +97662,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,644", - "created": 1610361444.644561, + "asctime": "2021-01-14 00:26:07,209", + "created": 1610580367.209864, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97726,14 +97673,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 644.5610523223877, + "msecs": 209.86390113830566, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16299.971103668213, - "thread": 140377734485760, + "relativeCreated": 16438.36283683777, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97741,8 +97688,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,644", - "created": 1610361444.644807, + "asctime": "2021-01-14 00:26:07,210", + "created": 1610580367.210089, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97752,14 +97699,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 644.8071002960205, + "msecs": 210.08896827697754, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16300.217151641846, - "thread": 140377734485760, + "relativeCreated": 16438.58790397644, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97768,8 +97715,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,644", - "created": 1610361444.644982, + "asctime": "2021-01-14 00:26:07,210", + "created": 1610580367.210267, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97779,14 +97726,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 644.982099533081, + "msecs": 210.2670669555664, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16300.392150878906, - "thread": 140377734485760, + "relativeCreated": 16438.76600265503, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97794,8 +97741,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,645", - "created": 1610361444.645181, + "asctime": "2021-01-14 00:26:07,210", + "created": 1610580367.210491, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97805,14 +97752,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 645.1809406280518, + "msecs": 210.49094200134277, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16300.590991973877, - "thread": 140377734485760, + "relativeCreated": 16438.989877700806, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97821,8 +97768,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,645", - "created": 1610361444.645346, + "asctime": "2021-01-14 00:26:07,210", + "created": 1610580367.210663, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97832,14 +97779,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 645.34592628479, + "msecs": 210.6630802154541, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16300.755977630615, - "thread": 140377734485760, + "relativeCreated": 16439.162015914917, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97847,8 +97794,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,645", - "created": 1610361444.645553, + "asctime": "2021-01-14 00:26:07,211", + "created": 1610580367.21136, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97858,14 +97805,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 645.5531120300293, + "msecs": 211.35997772216797, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16300.963163375854, - "thread": 140377734485760, + "relativeCreated": 16439.85891342163, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97874,8 +97821,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,645", - "created": 1610361444.645707, + "asctime": "2021-01-14 00:26:07,211", + "created": 1610580367.21158, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97885,14 +97832,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 645.7068920135498, + "msecs": 211.5800380706787, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16301.116943359375, - "thread": 140377734485760, + "relativeCreated": 16440.07897377014, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97900,8 +97847,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,645", - "created": 1610361444.645975, + "asctime": "2021-01-14 00:26:07,211", + "created": 1610580367.211908, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -97911,14 +97858,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 645.9751129150391, + "msecs": 211.90810203552246, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16301.385164260864, - "thread": 140377734485760, + "relativeCreated": 16440.407037734985, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97926,8 +97873,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,646", - "created": 1610361444.646162, + "asctime": "2021-01-14 00:26:07,212", + "created": 1610580367.212174, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -97937,14 +97884,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 646.1620330810547, + "msecs": 212.1739387512207, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16301.57208442688, - "thread": 140377734485760, + "relativeCreated": 16440.672874450684, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97952,8 +97899,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,646", - "created": 1610361444.646334, + "asctime": "2021-01-14 00:26:07,212", + "created": 1610580367.212397, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97963,14 +97910,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 646.3339328765869, + "msecs": 212.39709854125977, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16301.743984222412, - "thread": 140377734485760, + "relativeCreated": 16440.896034240723, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -97979,8 +97926,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,646", - "created": 1610361444.646658, + "asctime": "2021-01-14 00:26:07,212", + "created": 1610580367.212592, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -97990,14 +97937,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 646.6579437255859, + "msecs": 212.59188652038574, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16302.067995071411, - "thread": 140377734485760, + "relativeCreated": 16441.09082221985, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98005,8 +97952,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:24,647", - "created": 1610361444.647134, + "asctime": "2021-01-14 00:26:07,212", + "created": 1610580367.212977, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98016,14 +97963,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 647.1340656280518, + "msecs": 212.97693252563477, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16302.544116973877, - "thread": 140377734485760, + "relativeCreated": 16441.475868225098, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98034,25 +97981,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,647", - "created": 1610361444.64753, + "asctime": "2021-01-14 00:26:07,213", + "created": 1610580367.213384, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 647.5300788879395, + "msecs": 213.38391304016113, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16302.940130233765, - "thread": 140377734485760, + "relativeCreated": 16441.882848739624, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98060,25 +98007,25 @@ "prot-server:", "__callback2__" ], - "asctime": "2021-01-11 11:37:24,647", - "created": 1610361444.647747, + "asctime": "2021-01-14 00:26:07,213", + "created": 1610580367.213545, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback2__ to process received data", "module": "__init__", - "msecs": 647.7470397949219, + "msecs": 213.5450839996338, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16303.157091140747, - "thread": 140377734485760, + "relativeCreated": 16442.044019699097, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98089,25 +98036,25 @@ "status: operation not permitted", "35" ], - "asctime": "2021-01-11 11:37:24,648", - "created": 1610361444.64811, + "asctime": "2021-01-14 00:26:07,213", + "created": 1610580367.213735, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 648.1099128723145, + "msecs": 213.73510360717773, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16303.51996421814, - "thread": 140377734485760, + "relativeCreated": 16442.23403930664, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98115,8 +98062,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8" ], - "asctime": "2021-01-11 11:37:24,679", - "created": 1610361444.67959, + "asctime": "2021-01-14 00:26:07,215", + "created": 1610580367.215396, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -98126,14 +98073,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8", "module": "__init__", - "msecs": 679.5899868011475, + "msecs": 215.39592742919922, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16335.000038146973, - "thread": 140377247971072, + "relativeCreated": 16443.894863128662, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98141,8 +98088,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8" ], - "asctime": "2021-01-11 11:37:24,680", - "created": 1610361444.68004, + "asctime": "2021-01-14 00:26:07,215", + "created": 1610580367.215704, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -98152,14 +98099,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8", "module": "__init__", - "msecs": 680.0398826599121, + "msecs": 215.70396423339844, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16335.449934005737, - "thread": 140377247971072, + "relativeCreated": 16444.20289993286, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98167,8 +98114,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,680", - "created": 1610361444.680226, + "asctime": "2021-01-14 00:26:07,215", + "created": 1610580367.215868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98178,14 +98125,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 680.2260875701904, + "msecs": 215.8679962158203, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16335.636138916016, - "thread": 140377247971072, + "relativeCreated": 16444.366931915283, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98194,8 +98141,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,680", - "created": 1610361444.680413, + "asctime": "2021-01-14 00:26:07,215", + "created": 1610580367.215979, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98205,14 +98152,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 680.413007736206, + "msecs": 215.97909927368164, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16335.823059082031, - "thread": 140377247971072, + "relativeCreated": 16444.478034973145, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98220,8 +98167,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,680", - "created": 1610361444.680725, + "asctime": "2021-01-14 00:26:07,216", + "created": 1610580367.216106, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98231,14 +98178,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 680.72509765625, + "msecs": 216.10593795776367, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16336.135149002075, - "thread": 140377247971072, + "relativeCreated": 16444.604873657227, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98247,8 +98194,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,680", - "created": 1610361444.680928, + "asctime": "2021-01-14 00:26:07,216", + "created": 1610580367.216202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98258,14 +98205,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 680.9279918670654, + "msecs": 216.2020206451416, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16336.33804321289, - "thread": 140377247971072, + "relativeCreated": 16444.700956344604, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98273,8 +98220,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,681", - "created": 1610361444.681137, + "asctime": "2021-01-14 00:26:07,216", + "created": 1610580367.216358, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98284,14 +98231,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 681.1370849609375, + "msecs": 216.35794639587402, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16336.547136306763, - "thread": 140377247971072, + "relativeCreated": 16444.856882095337, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98300,8 +98247,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,681", - "created": 1610361444.681278, + "asctime": "2021-01-14 00:26:07,216", + "created": 1610580367.216473, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98311,14 +98258,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 681.2779903411865, + "msecs": 216.47310256958008, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16336.688041687012, - "thread": 140377247971072, + "relativeCreated": 16444.972038269043, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98326,8 +98273,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,681", - "created": 1610361444.681459, + "asctime": "2021-01-14 00:26:07,216", + "created": 1610580367.216618, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98337,14 +98284,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 681.4589500427246, + "msecs": 216.61806106567383, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16336.86900138855, - "thread": 140377247971072, + "relativeCreated": 16445.116996765137, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98353,8 +98300,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,681", - "created": 1610361444.68169, + "asctime": "2021-01-14 00:26:07,216", + "created": 1610580367.216736, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98364,14 +98311,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 681.689977645874, + "msecs": 216.7360782623291, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16337.1000289917, - "thread": 140377247971072, + "relativeCreated": 16445.235013961792, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98379,8 +98326,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,681", - "created": 1610361444.681904, + "asctime": "2021-01-14 00:26:07,216", + "created": 1610580367.216887, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98390,14 +98337,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 681.9040775299072, + "msecs": 216.8869972229004, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16337.314128875732, - "thread": 140377247971072, + "relativeCreated": 16445.385932922363, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98406,8 +98353,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,682", - "created": 1610361444.682072, + "asctime": "2021-01-14 00:26:07,217", + "created": 1610580367.217, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98417,14 +98364,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 682.0719242095947, + "msecs": 217.00000762939453, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16337.48197555542, - "thread": 140377247971072, + "relativeCreated": 16445.498943328857, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98432,8 +98379,8 @@ "comm-server:", "(5): 57 12 a7 3a 3e" ], - "asctime": "2021-01-11 11:37:24,682", - "created": 1610361444.682244, + "asctime": "2021-01-14 00:26:07,217", + "created": 1610580367.217206, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -98443,14 +98390,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 57 12 a7 3a 3e", "module": "__init__", - "msecs": 682.244062423706, + "msecs": 217.20600128173828, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16337.654113769531, - "thread": 140377247971072, + "relativeCreated": 16445.7049369812, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98458,8 +98405,8 @@ "comm-client:", "(5): 57 12 a7 3a 3e" ], - "asctime": "2021-01-11 11:37:24,682", - "created": 1610361444.682447, + "asctime": "2021-01-14 00:26:07,217", + "created": 1610580367.217355, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -98469,14 +98416,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 57 12 a7 3a 3e", "module": "__init__", - "msecs": 682.4469566345215, + "msecs": 217.35501289367676, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16337.857007980347, - "thread": 140377247971072, + "relativeCreated": 16445.85394859314, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98484,8 +98431,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,682", - "created": 1610361444.682614, + "asctime": "2021-01-14 00:26:07,217", + "created": 1610580367.217457, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98495,14 +98442,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 682.6140880584717, + "msecs": 217.45705604553223, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16338.024139404297, - "thread": 140377247971072, + "relativeCreated": 16445.955991744995, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98511,8 +98458,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,682", - "created": 1610361444.682765, + "asctime": "2021-01-14 00:26:07,217", + "created": 1610580367.217549, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98522,14 +98469,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 682.765007019043, + "msecs": 217.54908561706543, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16338.175058364868, - "thread": 140377247971072, + "relativeCreated": 16446.04802131653, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98537,8 +98484,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7" ], - "asctime": "2021-01-11 11:37:24,683", - "created": 1610361444.683077, + "asctime": "2021-01-14 00:26:07,217", + "created": 1610580367.217734, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98548,14 +98495,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7", "module": "stp", - "msecs": 683.0770969390869, + "msecs": 217.73409843444824, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16338.487148284912, - "thread": 140377247971072, + "relativeCreated": 16446.23303413391, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -98566,71 +98513,71 @@ "status: operation not permitted", "35" ], - "asctime": "2021-01-11 11:37:24,683", - "created": 1610361444.683444, + "asctime": "2021-01-14 00:26:07,217", + "created": 1610580367.21796, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 683.4440231323242, + "msecs": 217.95988082885742, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16338.85407447815, - "thread": 140377247971072, + "relativeCreated": 16446.45881652832, + "thread": 140017611568896, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:24,683", - "created": 1610361444.683622, + "asctime": "2021-01-14 00:26:07,218", + "created": 1610580367.218126, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 683.621883392334, + "msecs": 218.1260585784912, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16339.03193473816, - "thread": 140377247971072, + "relativeCreated": 16446.624994277954, + "thread": 140017611568896, "threadName": "Thread-28" } ], - "msecs": 818.8490867614746, + "msecs": 380.4500102996826, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16474.2591381073, - "thread": 140379336402752, + "relativeCreated": 16608.948945999146, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.13522720336914062 + "time_consumption": 0.1623239517211914 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,819", - "created": 1610361444.819868, + "asctime": "2021-01-14 00:26:07,381", + "created": 1610580367.381992, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -98647,8 +98594,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,819", - "created": 1610361444.819407, + "asctime": "2021-01-14 00:26:07,381", + "created": 1610580367.381342, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -98658,14 +98605,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 819.4069862365723, + "msecs": 381.34193420410156, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16474.817037582397, - "thread": 140379336402752, + "relativeCreated": 16609.840869903564, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -98674,8 +98621,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,819", - "created": 1610361444.819629, + "asctime": "2021-01-14 00:26:07,381", + "created": 1610580367.381643, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -98685,35 +98632,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 819.6289539337158, + "msecs": 381.64305686950684, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16475.03900527954, - "thread": 140379336402752, + "relativeCreated": 16610.14199256897, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 819.8680877685547, + "msecs": 381.9921016693115, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16475.27813911438, - "thread": 140379336402752, + "relativeCreated": 16610.491037368774, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002391338348388672 + "time_consumption": 0.0003490447998046875 }, { "args": [ "{u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,821", - "created": 1610361444.821602, + "asctime": "2021-01-14 00:26:07,382", + "created": 1610580367.382787, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -98730,8 +98677,8 @@ "{u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,820", - "created": 1610361444.8205, + "asctime": "2021-01-14 00:26:07,382", + "created": 1610580367.382298, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -98741,14 +98688,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0} ()", "module": "test", - "msecs": 820.4998970031738, + "msecs": 382.2979927062988, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16475.909948349, - "thread": 140379336402752, + "relativeCreated": 16610.79692840576, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -98757,8 +98704,8 @@ "{'status': 6, 'service_id': 11, 'data': 35, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:24,821", - "created": 1610361444.82131, + "asctime": "2021-01-14 00:26:07,382", + "created": 1610580367.382521, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -98768,32 +98715,32 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 6, 'service_id': 11, 'data': 35, 'data_id': 0} ()", "module": "test", - "msecs": 821.3100433349609, + "msecs": 382.5209140777588, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16476.720094680786, - "thread": 140379336402752, + "relativeCreated": 16611.01984977722, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 821.6021060943604, + "msecs": 382.78698921203613, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16477.012157440186, - "thread": 140379336402752, + "relativeCreated": 16611.2859249115, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.00029206275939941406 + "time_consumption": 0.00026607513427734375 }, { "args": [], - "asctime": "2021-01-11 11:37:24,822", - "created": 1610361444.822331, + "asctime": "2021-01-14 00:26:07,383", + "created": 1610580367.38349, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -98811,8 +98758,8 @@ "None", "0" ], - "asctime": "2021-01-11 11:37:24,822", - "created": 1610361444.822043, + "asctime": "2021-01-14 00:26:07,383", + "created": 1610580367.38325, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -98822,32 +98769,32 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", "module": "__init__", - "msecs": 822.0429420471191, + "msecs": 383.24999809265137, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16477.452993392944, - "thread": 140379336402752, + "relativeCreated": 16611.748933792114, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 822.3309516906738, + "msecs": 383.49008560180664, "msg": "Removing Callback for a specific Data-ID and all Serice-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16477.7410030365, - "thread": 140379336402752, + "relativeCreated": 16611.98902130127, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002880096435546875 + "time_consumption": 0.00024008750915527344 }, { "args": [], - "asctime": "2021-01-11 11:37:25,024", - "created": 1610361445.024689, + "asctime": "2021-01-14 00:26:07,585", + "created": 1610580367.585436, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -98866,25 +98813,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,822", - "created": 1610361444.822825, + "asctime": "2021-01-14 00:26:07,384", + "created": 1610580367.384086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 822.8249549865723, + "msecs": 384.08589363098145, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16478.235006332397, - "thread": 140379336402752, + "relativeCreated": 16612.584829330444, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -98892,8 +98839,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,849", - "created": 1610361444.8497, + "asctime": "2021-01-14 00:26:07,415", + "created": 1610580367.415074, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -98903,14 +98850,14 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 849.6999740600586, + "msecs": 415.07411003112793, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16505.110025405884, - "thread": 140377734485760, + "relativeCreated": 16643.57304573059, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98918,8 +98865,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" ], - "asctime": "2021-01-11 11:37:24,850", - "created": 1610361444.850196, + "asctime": "2021-01-14 00:26:07,415", + "created": 1610580367.41549, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -98929,14 +98876,14 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", "module": "__init__", - "msecs": 850.1958847045898, + "msecs": 415.48991203308105, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16505.605936050415, - "thread": 140377734485760, + "relativeCreated": 16643.988847732544, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98944,8 +98891,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,850", - "created": 1610361444.850408, + "asctime": "2021-01-14 00:26:07,415", + "created": 1610580367.415661, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98955,14 +98902,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 850.4080772399902, + "msecs": 415.661096572876, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16505.818128585815, - "thread": 140377734485760, + "relativeCreated": 16644.16003227234, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98971,8 +98918,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,850", - "created": 1610361444.850587, + "asctime": "2021-01-14 00:26:07,415", + "created": 1610580367.415808, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -98982,14 +98929,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 850.5868911743164, + "msecs": 415.80796241760254, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16505.99694252014, - "thread": 140377734485760, + "relativeCreated": 16644.306898117065, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -98997,8 +98944,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,850", - "created": 1610361444.850801, + "asctime": "2021-01-14 00:26:07,415", + "created": 1610580367.41598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99008,14 +98955,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 850.8009910583496, + "msecs": 415.98010063171387, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16506.211042404175, - "thread": 140377734485760, + "relativeCreated": 16644.479036331177, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99024,8 +98971,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,850", - "created": 1610361444.850987, + "asctime": "2021-01-14 00:26:07,416", + "created": 1610580367.416129, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99035,14 +98982,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 850.9869575500488, + "msecs": 416.12911224365234, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16506.397008895874, - "thread": 140377734485760, + "relativeCreated": 16644.628047943115, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99050,8 +98997,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,851", - "created": 1610361444.851208, + "asctime": "2021-01-14 00:26:07,416", + "created": 1610580367.416305, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99061,14 +99008,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 851.207971572876, + "msecs": 416.3050651550293, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16506.6180229187, - "thread": 140377734485760, + "relativeCreated": 16644.804000854492, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99077,8 +99024,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,851", - "created": 1610361444.851367, + "asctime": "2021-01-14 00:26:07,416", + "created": 1610580367.416434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99088,14 +99035,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 851.3669967651367, + "msecs": 416.43404960632324, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16506.777048110962, - "thread": 140377734485760, + "relativeCreated": 16644.932985305786, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99103,8 +99050,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,851", - "created": 1610361444.851576, + "asctime": "2021-01-14 00:26:07,416", + "created": 1610580367.416601, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99114,14 +99061,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 851.5760898590088, + "msecs": 416.60094261169434, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16506.986141204834, - "thread": 140377734485760, + "relativeCreated": 16645.099878311157, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99130,8 +99077,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,851", - "created": 1610361444.851744, + "asctime": "2021-01-14 00:26:07,416", + "created": 1610580367.416725, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99141,14 +99088,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 851.7439365386963, + "msecs": 416.72492027282715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16507.15398788452, - "thread": 140377734485760, + "relativeCreated": 16645.22385597229, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99156,8 +99103,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,852", - "created": 1610361444.852118, + "asctime": "2021-01-14 00:26:07,416", + "created": 1610580367.416927, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99167,14 +99114,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 852.1180152893066, + "msecs": 416.9270992279053, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16507.528066635132, - "thread": 140377734485760, + "relativeCreated": 16645.426034927368, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99183,8 +99130,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,852", - "created": 1610361444.852277, + "asctime": "2021-01-14 00:26:07,417", + "created": 1610580367.417247, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99194,14 +99141,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 852.2770404815674, + "msecs": 417.24705696105957, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16507.687091827393, - "thread": 140377734485760, + "relativeCreated": 16645.745992660522, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99209,8 +99156,8 @@ "comm-client:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,852", - "created": 1610361444.852519, + "asctime": "2021-01-14 00:26:07,417", + "created": 1610580367.417644, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -99220,14 +99167,14 @@ "lineno": 284, "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 852.5190353393555, + "msecs": 417.6440238952637, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16507.92908668518, - "thread": 140377734485760, + "relativeCreated": 16646.142959594727, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99235,8 +99182,8 @@ "comm-server:", "(5): 17 fc 16 3a 3e" ], - "asctime": "2021-01-11 11:37:24,852", - "created": 1610361444.852717, + "asctime": "2021-01-14 00:26:07,417", + "created": 1610580367.417961, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -99246,14 +99193,14 @@ "lineno": 414, "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", "module": "__init__", - "msecs": 852.7169227600098, + "msecs": 417.96088218688965, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16508.126974105835, - "thread": 140377734485760, + "relativeCreated": 16646.459817886353, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99261,8 +99208,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,852", - "created": 1610361444.852934, + "asctime": "2021-01-14 00:26:07,418", + "created": 1610580367.418165, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99272,14 +99219,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 852.9338836669922, + "msecs": 418.1649684906006, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16508.343935012817, - "thread": 140377734485760, + "relativeCreated": 16646.663904190063, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99288,8 +99235,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,853", - "created": 1610361444.85309, + "asctime": "2021-01-14 00:26:07,418", + "created": 1610580367.418326, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99299,14 +99246,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 853.0900478363037, + "msecs": 418.32590103149414, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16508.50009918213, - "thread": 140377734485760, + "relativeCreated": 16646.824836730957, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99314,8 +99261,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" ], - "asctime": "2021-01-11 11:37:24,853", - "created": 1610361444.853412, + "asctime": "2021-01-14 00:26:07,418", + "created": 1610580367.418709, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99325,14 +99272,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", "module": "stp", - "msecs": 853.4119129180908, + "msecs": 418.70903968811035, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16508.821964263916, - "thread": 140377734485760, + "relativeCreated": 16647.207975387573, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99343,25 +99290,25 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:24,853", - "created": 1610361444.853796, + "asctime": "2021-01-14 00:26:07,419", + "created": 1610580367.419157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 853.7960052490234, + "msecs": 419.1570281982422, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16509.20605659485, - "thread": 140377734485760, + "relativeCreated": 16647.655963897705, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99369,25 +99316,25 @@ "prot-server:", "__callback3__" ], - "asctime": "2021-01-11 11:37:24,854", - "created": 1610361444.854126, + "asctime": "2021-01-14 00:26:07,419", + "created": 1610580367.41943, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback3__ to process received data", "module": "__init__", - "msecs": 854.1259765625, + "msecs": 419.4300174713135, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16509.536027908325, - "thread": 140377734485760, + "relativeCreated": 16647.928953170776, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99398,25 +99345,25 @@ "status: okay", "36" ], - "asctime": "2021-01-11 11:37:24,854", - "created": 1610361444.85453, + "asctime": "2021-01-14 00:26:07,419", + "created": 1610580367.419732, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 854.5300960540771, + "msecs": 419.73209381103516, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16509.940147399902, - "thread": 140377734485760, + "relativeCreated": 16648.231029510498, + "thread": 140018098083584, "threadName": "Thread-27" }, { @@ -99424,8 +99371,8 @@ "comm-server:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a" ], - "asctime": "2021-01-11 11:37:24,884", - "created": 1610361444.884537, + "asctime": "2021-01-14 00:26:07,421", + "created": 1610580367.421278, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -99435,14 +99382,14 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a", "module": "__init__", - "msecs": 884.5369815826416, + "msecs": 421.2779998779297, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16539.947032928467, - "thread": 140377247971072, + "relativeCreated": 16649.776935577393, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99450,8 +99397,8 @@ "comm-client:", "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a" ], - "asctime": "2021-01-11 11:37:24,885", - "created": 1610361444.885317, + "asctime": "2021-01-14 00:26:07,421", + "created": 1610580367.421507, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -99461,14 +99408,14 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a", "module": "__init__", - "msecs": 885.3170871734619, + "msecs": 421.5068817138672, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16540.727138519287, - "thread": 140377247971072, + "relativeCreated": 16650.00581741333, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99476,8 +99423,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,885", - "created": 1610361444.885602, + "asctime": "2021-01-14 00:26:07,421", + "created": 1610580367.421611, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99487,14 +99434,14 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 885.6019973754883, + "msecs": 421.61107063293457, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16541.012048721313, - "thread": 140377247971072, + "relativeCreated": 16650.110006332397, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99503,8 +99450,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:24,885", - "created": 1610361444.885827, + "asctime": "2021-01-14 00:26:07,421", + "created": 1610580367.421715, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99514,14 +99461,14 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 885.8270645141602, + "msecs": 421.71502113342285, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16541.237115859985, - "thread": 140377247971072, + "relativeCreated": 16650.213956832886, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99529,8 +99476,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,886", - "created": 1610361444.886083, + "asctime": "2021-01-14 00:26:07,421", + "created": 1610580367.421828, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99540,14 +99487,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 886.0828876495361, + "msecs": 421.828031539917, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16541.49293899536, - "thread": 140377247971072, + "relativeCreated": 16650.32696723938, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99556,8 +99503,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,886", - "created": 1610361444.886998, + "asctime": "2021-01-14 00:26:07,421", + "created": 1610580367.421921, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99567,14 +99514,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 886.9979381561279, + "msecs": 421.9210147857666, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16542.407989501953, - "thread": 140377247971072, + "relativeCreated": 16650.41995048523, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99582,8 +99529,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,887", - "created": 1610361444.887446, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422039, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99593,14 +99540,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 887.4459266662598, + "msecs": 422.0390319824219, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16542.855978012085, - "thread": 140377247971072, + "relativeCreated": 16650.537967681885, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99609,8 +99556,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,887", - "created": 1610361444.887758, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422127, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99620,14 +99567,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 887.7580165863037, + "msecs": 422.12700843811035, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16543.16806793213, - "thread": 140377247971072, + "relativeCreated": 16650.625944137573, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99635,8 +99582,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,888", - "created": 1610361444.888074, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422233, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99646,14 +99593,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 888.0739212036133, + "msecs": 422.23310470581055, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16543.48397254944, - "thread": 140377247971072, + "relativeCreated": 16650.732040405273, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99662,8 +99609,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,888", - "created": 1610361444.888311, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.4223, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99673,14 +99620,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 888.3109092712402, + "msecs": 422.3001003265381, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16543.720960617065, - "thread": 140377247971072, + "relativeCreated": 16650.799036026, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99688,8 +99635,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,888", - "created": 1610361444.888619, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422387, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99699,14 +99646,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 888.6189460754395, + "msecs": 422.38688468933105, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16544.028997421265, - "thread": 140377247971072, + "relativeCreated": 16650.885820388794, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99715,8 +99662,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:24,888", - "created": 1610361444.888863, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422457, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99726,14 +99673,14 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 888.8630867004395, + "msecs": 422.4569797515869, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16544.273138046265, - "thread": 140377247971072, + "relativeCreated": 16650.95591545105, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99741,8 +99688,8 @@ "comm-server:", "(5): 5b f9 7e 3a 3e" ], - "asctime": "2021-01-11 11:37:24,889", - "created": 1610361444.889545, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.42256, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -99752,14 +99699,14 @@ "lineno": 284, "message": "comm-server: TX -> (5): 5b f9 7e 3a 3e", "module": "__init__", - "msecs": 889.5449638366699, + "msecs": 422.5599765777588, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16544.955015182495, - "thread": 140377247971072, + "relativeCreated": 16651.05891227722, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99767,8 +99714,8 @@ "comm-client:", "(5): 5b f9 7e 3a 3e" ], - "asctime": "2021-01-11 11:37:24,889", - "created": 1610361444.889733, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422638, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -99778,14 +99725,14 @@ "lineno": 414, "message": "comm-client: RX <- (5): 5b f9 7e 3a 3e", "module": "__init__", - "msecs": 889.733076095581, + "msecs": 422.637939453125, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16545.143127441406, - "thread": 140377247971072, + "relativeCreated": 16651.136875152588, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99793,8 +99740,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:24,889", - "created": 1610361444.889913, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422711, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99804,14 +99751,14 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 889.9130821228027, + "msecs": 422.7108955383301, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16545.323133468628, - "thread": 140377247971072, + "relativeCreated": 16651.209831237793, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99820,8 +99767,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:24,890", - "created": 1610361444.890062, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422778, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99831,14 +99778,14 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 890.0620937347412, + "msecs": 422.7778911590576, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16545.472145080566, - "thread": 140377247971072, + "relativeCreated": 16651.27682685852, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99846,8 +99793,8 @@ "STP:", "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e" ], - "asctime": "2021-01-11 11:37:24,890", - "created": 1610361444.890416, + "asctime": "2021-01-14 00:26:07,422", + "created": 1610580367.422918, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -99857,14 +99804,14 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e", "module": "stp", - "msecs": 890.4159069061279, + "msecs": 422.91808128356934, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16545.825958251953, - "thread": 140377247971072, + "relativeCreated": 16651.417016983032, + "thread": 140017611568896, "threadName": "Thread-28" }, { @@ -99875,71 +99822,71 @@ "status: okay", "36" ], - "asctime": "2021-01-11 11:37:24,890", - "created": 1610361444.890868, + "asctime": "2021-01-14 00:26:07,423", + "created": 1610580367.423069, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, + "lineno": 457, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 890.8679485321045, + "msecs": 423.0690002441406, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16546.27799987793, - "thread": 140377247971072, + "relativeCreated": 16651.567935943604, + "thread": 140017611568896, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:24,891", - "created": 1610361444.891165, + "asctime": "2021-01-14 00:26:07,423", + "created": 1610580367.42317, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 891.165018081665, + "msecs": 423.1700897216797, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16546.57506942749, - "thread": 140377247971072, + "relativeCreated": 16651.669025421143, + "thread": 140017611568896, "threadName": "Thread-28" } ], - "msecs": 24.6889591217041, + "msecs": 585.4361057281494, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16680.09901046753, - "thread": 140379336402752, + "relativeCreated": 16813.935041427612, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.13352394104003906 + "time_consumption": 0.16226601600646973 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:25,026", - "created": 1610361445.026688, + "asctime": "2021-01-14 00:26:07,586", + "created": 1610580367.586726, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -99956,8 +99903,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:25,025", - "created": 1610361445.025949, + "asctime": "2021-01-14 00:26:07,586", + "created": 1610580367.586175, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -99967,14 +99914,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 25.94900131225586, + "msecs": 586.1749649047852, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16681.35905265808, - "thread": 140379336402752, + "relativeCreated": 16814.673900604248, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -99983,8 +99930,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:25,026", - "created": 1610361445.026371, + "asctime": "2021-01-14 00:26:07,586", + "created": 1610580367.586453, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -99994,35 +99941,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 26.371002197265625, + "msecs": 586.4529609680176, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16681.78105354309, - "thread": 140379336402752, + "relativeCreated": 16814.95189666748, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 26.688098907470703, + "msecs": 586.7259502410889, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16682.098150253296, - "thread": 140379336402752, + "relativeCreated": 16815.22488594055, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0003170967102050781 + "time_consumption": 0.00027298927307128906 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:25,027", - "created": 1610361445.027776, + "asctime": "2021-01-14 00:26:07,587", + "created": 1610580367.5877, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100039,8 +99986,8 @@ "{u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:25,027", - "created": 1610361445.027212, + "asctime": "2021-01-14 00:26:07,587", + "created": 1610580367.587177, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100050,14 +99997,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0} ()", "module": "test", - "msecs": 27.211904525756836, + "msecs": 587.177038192749, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16682.621955871582, - "thread": 140379336402752, + "relativeCreated": 16815.675973892212, + "thread": 140019705194304, "threadName": "MainThread" }, { @@ -100066,8 +100013,8 @@ "{'status': 0, 'service_id': 11, 'data': 36, 'data_id': 0}", "" ], - "asctime": "2021-01-11 11:37:25,027", - "created": 1610361445.027514, + "asctime": "2021-01-14 00:26:07,587", + "created": 1610580367.587462, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100077,38 +100024,38 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 36, 'data_id': 0} ()", "module": "test", - "msecs": 27.513980865478516, + "msecs": 587.4619483947754, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16682.924032211304, - "thread": 140379336402752, + "relativeCreated": 16815.96088409424, + "thread": 140019705194304, "threadName": "MainThread" } ], - "msecs": 27.776002883911133, + "msecs": 587.6998901367188, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36164, + "process": 5213, "processName": "MainProcess", - "relativeCreated": 16683.186054229736, - "thread": 140379336402752, + "relativeCreated": 16816.19882583618, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 0.0002620220184326172 + "time_consumption": 0.00023794174194335938 } ], - "thread": 140379336402752, + "thread": 140019705194304, "threadName": "MainThread", - "time_consumption": 1.1734869480133057, - "time_finished": "2021-01-11 11:37:25,027", - "time_start": "2021-01-11 11:37:23,854" + "time_consumption": 1.1734888553619385, + "time_finished": "2021-01-14 00:26:07,587", + "time_start": "2021-01-14 00:26:06,414" } }, "testrun_id": "p2", - "time_consumption": 19.273849964141846, + "time_consumption": 19.39237666130066, "uid_list_sorted": [ "_XzMFcHYZEem_kd-7nxt1sg", "_7izDUEzYEeuiHtQbLi1mZg", @@ -100180,8 +100127,8 @@ "testcases": { "_-UtxUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5516422, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1229694, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100192,21 +100139,21 @@ "message": "_-UtxUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 551.6421794891357, + "msecs": 122.96938896179199, "msg": "_-UtxUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.36955833435059, + "relativeCreated": 115.46111106872559, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5517068, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1230326, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -100217,15 +100164,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 551.7067909240723, + "msecs": 123.0325698852539, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.43416976928711, + "relativeCreated": 115.5242919921875, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -100233,8 +100180,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5518312, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1231585, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100251,8 +100198,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.551762, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.123088, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100262,15 +100209,15 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 551.7621040344238, + "msecs": 123.08788299560547, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.48948287963867, + "relativeCreated": 115.57960510253906, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100278,8 +100225,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5517993, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.123123, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100289,36 +100236,36 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 551.7992973327637, + "msecs": 123.1229305267334, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.52667617797852, + "relativeCreated": 115.61465263366699, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 551.8312454223633, + "msecs": 123.15845489501953, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.55862426757812, + "relativeCreated": 115.65017700195312, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.1948089599609375e-05 + "time_consumption": 3.552436828613281e-05 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5518894, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1232169, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -100329,15 +100276,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 551.8894195556641, + "msecs": 123.21686744689941, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.6167984008789, + "relativeCreated": 115.70858955383301, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -100345,8 +100292,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5520144, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1233392, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100363,8 +100310,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5519428, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1232705, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100374,15 +100321,15 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 551.9428253173828, + "msecs": 123.27051162719727, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.67020416259766, + "relativeCreated": 115.76223373413086, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100390,8 +100337,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5519795, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1233072, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100401,37 +100348,37 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 551.9795417785645, + "msecs": 123.3072280883789, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.7069206237793, + "relativeCreated": 115.7989501953125, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 552.0143508911133, + "msecs": 123.33917617797852, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.74172973632812, + "relativeCreated": 115.83089828491211, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.4809112548828125e-05 + "time_consumption": 3.1948089599609375e-05 }, { "args": [ "'DID'", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5521393, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1234667, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100448,8 +100395,8 @@ "'DID'", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.552071, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1233947, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100459,15 +100406,15 @@ "lineno": 22, "message": "Result (Content in message object for data_id): 'DID' ()", "module": "test", - "msecs": 552.0710945129395, + "msecs": 123.39472770690918, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.7984733581543, + "relativeCreated": 115.88644981384277, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100476,8 +100423,8 @@ "'DID'", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5521052, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1234324, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -100487,41 +100434,41 @@ "lineno": 26, "message": "Expectation (Content in message object for data_id): result = 'DID' ()", "module": "test", - "msecs": 552.105188369751, + "msecs": 123.43239784240723, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.83256721496582, + "relativeCreated": 115.92411994934082, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 552.1392822265625, + "msecs": 123.46673011779785, "msg": "Content in message object for data_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.86666107177734, + "relativeCreated": 115.95845222473145, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.409385681152344e-05 + "time_consumption": 3.4332275390625e-05 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0004971027374267578, - "time_finished": "2021-01-11 11:37:29,552", - "time_start": "2021-01-11 11:37:29,551" + "time_consumption": 0.0004973411560058594, + "time_finished": "2021-01-14 00:26:12,123", + "time_start": "2021-01-14 00:26:12,122" }, "_2pi_8EzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.552866, + "asctime": "2021-01-14 00:26:12,124", + "created": 1610580372.1241612, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100532,19 +100479,19 @@ "message": "_2pi_8EzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 552.8659820556641, + "msecs": 124.1612434387207, "msg": "_2pi_8EzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.5933609008789, + "relativeCreated": 116.6529655456543, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5555074, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1268723, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -100559,8 +100506,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:29,553", - "created": 1610361449.553348, + "asctime": "2021-01-14 00:26:12,124", + "created": 1610580372.1246853, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100570,23 +100517,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 553.3480644226074, + "msecs": 124.68528747558594, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.07544326782227, + "relativeCreated": 117.17700958251953, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:29,553", - "created": 1610361449.5536923, + "asctime": "2021-01-14 00:26:12,124", + "created": 1610580372.1249447, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100596,23 +100543,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 553.6923408508301, + "msecs": 124.94468688964844, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.41971969604492, + "relativeCreated": 117.43640899658203, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:29,553", - "created": 1610361449.553762, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1250107, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100622,41 +100569,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 553.7619590759277, + "msecs": 125.01072883605957, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.48933792114258, + "relativeCreated": 117.50245094299316, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:29,553", - "created": 1610361449.5538719, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1251352, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 553.8718700408936, + "msecs": 125.13518333435059, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.5992488861084, + "relativeCreated": 117.62690544128418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100665,26 +100612,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:29,553", - "created": 1610361449.5539293, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.125213, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 553.929328918457, + "msecs": 125.2129077911377, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.65670776367188, + "relativeCreated": 117.70462989807129, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100692,26 +100639,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:29,553", - "created": 1610361449.5539942, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1252818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 553.9941787719727, + "msecs": 125.28181076049805, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.7215576171875, + "relativeCreated": 117.77353286743164, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100719,26 +100666,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.554036, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1253266, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 554.0359020233154, + "msecs": 125.32663345336914, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.76328086853027, + "relativeCreated": 117.81835556030273, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100746,26 +100693,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5540736, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.125366, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 554.0735721588135, + "msecs": 125.3659725189209, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.80095100402832, + "relativeCreated": 117.85769462585449, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100773,26 +100720,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5541122, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1254041, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 554.1121959686279, + "msecs": 125.40411949157715, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.83957481384277, + "relativeCreated": 117.89584159851074, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100802,8 +100749,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5541565, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1254544, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100813,15 +100760,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 554.1565418243408, + "msecs": 125.45442581176758, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.88392066955566, + "relativeCreated": 117.94614791870117, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100831,8 +100778,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5542014, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1255004, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100842,15 +100789,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 554.2013645172119, + "msecs": 125.50044059753418, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.92874336242676, + "relativeCreated": 117.99216270446777, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100860,8 +100807,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.554241, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1255424, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100871,15 +100818,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 554.2409420013428, + "msecs": 125.54240226745605, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 117.96832084655762, + "relativeCreated": 118.03412437438965, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100889,8 +100836,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.55428, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.125584, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -100900,41 +100847,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 554.2800426483154, + "msecs": 125.58388710021973, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.00742149353027, + "relativeCreated": 118.07560920715332, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5543187, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1256244, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 554.3186664581299, + "msecs": 125.62441825866699, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.04604530334473, + "relativeCreated": 118.11614036560059, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100943,26 +100890,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5543582, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.125666, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 554.3582439422607, + "msecs": 125.66590309143066, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.08562278747559, + "relativeCreated": 118.15762519836426, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100970,26 +100917,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5544043, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1257124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 554.4042587280273, + "msecs": 125.71239471435547, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.13163757324219, + "relativeCreated": 118.20411682128906, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -100997,26 +100944,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5544415, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1257508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 554.4414520263672, + "msecs": 125.75078010559082, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.16883087158203, + "relativeCreated": 118.24250221252441, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101026,8 +100973,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5544825, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1257913, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101037,15 +100984,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 554.4824600219727, + "msecs": 125.79131126403809, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.2098388671875, + "relativeCreated": 118.28303337097168, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101055,8 +101002,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5545266, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1258376, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101066,15 +101013,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 554.5265674591064, + "msecs": 125.83756446838379, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.25394630432129, + "relativeCreated": 118.32928657531738, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101083,26 +101030,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.554564, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1258776, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 554.5639991760254, + "msecs": 125.87761878967285, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.29137802124023, + "relativeCreated": 118.36934089660645, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101111,26 +101058,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5545993, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1259143, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 554.5992851257324, + "msecs": 125.91433525085449, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.32666397094727, + "relativeCreated": 118.40605735778809, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101139,78 +101086,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5546336, + "asctime": "2021-01-14 00:26:12,125", + "created": 1610580372.1259508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 554.633617401123, + "msecs": 125.95081329345703, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.36099624633789, + "relativeCreated": 118.44253540039062, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5546782, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1260026, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 554.678201675415, + "msecs": 126.00255012512207, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.40558052062988, + "relativeCreated": 118.49427223205566, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5547512, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1260772, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 554.7511577606201, + "msecs": 126.07717514038086, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.47853660583496, + "relativeCreated": 118.56889724731445, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101219,26 +101166,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.554791, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1261203, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 554.7909736633301, + "msecs": 126.12032890319824, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.51835250854492, + "relativeCreated": 118.61205101013184, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101246,26 +101193,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.554841, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1261728, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 554.8410415649414, + "msecs": 126.17278099060059, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.56842041015625, + "relativeCreated": 118.66450309753418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101273,26 +101220,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.554879, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1262205, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 554.8789501190186, + "msecs": 126.2204647064209, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.6063289642334, + "relativeCreated": 118.71218681335449, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101300,26 +101247,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5549145, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1262577, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 554.9144744873047, + "msecs": 126.25765800476074, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.64185333251953, + "relativeCreated": 118.74938011169434, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101327,26 +101274,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5549495, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.126294, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 554.9495220184326, + "msecs": 126.29389762878418, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.67690086364746, + "relativeCreated": 118.78561973571777, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101356,8 +101303,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:29,554", - "created": 1610361449.5549867, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1263325, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101367,15 +101314,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 554.9867153167725, + "msecs": 126.33252143859863, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.7140941619873, + "relativeCreated": 118.82424354553223, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101385,8 +101332,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5550249, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.126372, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101396,15 +101343,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 555.0248622894287, + "msecs": 126.37209892272949, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.75224113464355, + "relativeCreated": 118.86382102966309, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101414,8 +101361,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5550628, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1264112, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101425,15 +101372,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 555.0627708435059, + "msecs": 126.41119956970215, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.7901496887207, + "relativeCreated": 118.90292167663574, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101443,8 +101390,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5551004, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.12645, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101454,41 +101401,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 555.1004409790039, + "msecs": 126.4500617980957, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.82781982421875, + "relativeCreated": 118.9417839050293, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5551343, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1264844, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 555.1342964172363, + "msecs": 126.48439407348633, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.86167526245117, + "relativeCreated": 118.97611618041992, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101497,26 +101444,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.555181, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.126528, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 555.1810264587402, + "msecs": 126.52802467346191, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.90840530395508, + "relativeCreated": 119.01974678039551, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101524,26 +101471,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5552235, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1265721, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 555.2234649658203, + "msecs": 126.5721321105957, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.95084381103516, + "relativeCreated": 119.0638542175293, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101551,26 +101498,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5552604, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1266146, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 555.260419845581, + "msecs": 126.61457061767578, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 118.9877986907959, + "relativeCreated": 119.10629272460938, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101580,8 +101527,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5552962, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1266534, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101591,15 +101538,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 555.2961826324463, + "msecs": 126.65343284606934, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.02356147766113, + "relativeCreated": 119.14515495300293, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101609,8 +101556,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.555334, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1266925, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101620,15 +101567,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 555.3340911865234, + "msecs": 126.69253349304199, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.06147003173828, + "relativeCreated": 119.18425559997559, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101637,26 +101584,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5553703, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1267304, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 555.3703308105469, + "msecs": 126.73044204711914, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.09770965576172, + "relativeCreated": 119.22216415405273, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101665,26 +101612,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5554051, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1267667, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 555.4051399230957, + "msecs": 126.76668167114258, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.13251876831055, + "relativeCreated": 119.25840377807617, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101693,71 +101640,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5554388, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.126802, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 555.438756942749, + "msecs": 126.80196762084961, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.16613578796387, + "relativeCreated": 119.2936897277832, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5554745, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1268377, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 555.4745197296143, + "msecs": 126.83773040771484, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.2018985748291, + "relativeCreated": 119.32945251464844, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 555.5074214935303, + "msecs": 126.87230110168457, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.23480033874512, + "relativeCreated": 119.36402320861816, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.2901763916015625e-05 + "time_consumption": 3.457069396972656e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:29,899", - "created": 1610361449.8992105, + "asctime": "2021-01-14 00:26:12,470", + "created": 1610580372.4705794, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -101772,8 +101719,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5555835, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.1269548, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101783,23 +101730,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 555.5834770202637, + "msecs": 126.95479393005371, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.31085586547852, + "relativeCreated": 119.4465160369873, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.55562, + "asctime": "2021-01-14 00:26:12,126", + "created": 1610580372.126992, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101809,41 +101756,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 555.6199550628662, + "msecs": 126.99198722839355, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.34733390808105, + "relativeCreated": 119.48370933532715, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.555659, + "asctime": "2021-01-14 00:26:12,127", + "created": 1610580372.1270325, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 555.6590557098389, + "msecs": 127.03251838684082, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.38643455505371, + "relativeCreated": 119.52424049377441, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101854,34 +101801,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5557244, + "asctime": "2021-01-14 00:26:12,127", + "created": 1610580372.1271021, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 555.7243824005127, + "msecs": 127.10213661193848, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.45176124572754, + "relativeCreated": 119.59385871887207, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5559053, + "asctime": "2021-01-14 00:26:12,127", + "created": 1610580372.127291, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101891,23 +101838,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 555.9053421020508, + "msecs": 127.29096412658691, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.63272094726562, + "relativeCreated": 119.78268623352051, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.5559583, + "asctime": "2021-01-14 00:26:12,127", + "created": 1610580372.1273417, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101917,41 +101864,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 555.9582710266113, + "msecs": 127.34174728393555, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.68564987182617, + "relativeCreated": 119.83346939086914, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:29,555", - "created": 1610361449.555996, + "asctime": "2021-01-14 00:26:12,127", + "created": 1610580372.12738, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 555.9959411621094, + "msecs": 127.3798942565918, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.72332000732422, + "relativeCreated": 119.87161636352539, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -101959,8 +101906,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:29,556", - "created": 1610361449.55612, + "asctime": "2021-01-14 00:26:12,127", + "created": 1610580372.1275017, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101970,15 +101917,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 556.1199188232422, + "msecs": 127.5017261505127, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 119.84729766845703, + "relativeCreated": 119.99344825744629, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -101986,8 +101933,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:29,564", - "created": 1610361449.5643775, + "asctime": "2021-01-14 00:26:12,135", + "created": 1610580372.135718, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -101997,15 +101944,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 564.3775463104248, + "msecs": 135.71810722351074, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 128.10492515563965, + "relativeCreated": 128.20982933044434, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102013,8 +101960,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,564", - "created": 1610361449.5648494, + "asctime": "2021-01-14 00:26:12,135", + "created": 1610580372.1359751, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102024,15 +101971,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 564.8493766784668, + "msecs": 135.97512245178223, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 128.57675552368164, + "relativeCreated": 128.46684455871582, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102041,8 +101988,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.565069, + "asctime": "2021-01-14 00:26:12,136", + "created": 1610580372.136194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102052,15 +101999,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 565.0689601898193, + "msecs": 136.19399070739746, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 128.79633903503418, + "relativeCreated": 128.68571281433105, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102068,8 +102015,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.5652092, + "asctime": "2021-01-14 00:26:12,136", + "created": 1610580372.1366408, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102079,15 +102026,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 565.209150314331, + "msecs": 136.6407871246338, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 128.9365291595459, + "relativeCreated": 129.13250923156738, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102096,8 +102043,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.5652592, + "asctime": "2021-01-14 00:26:12,137", + "created": 1610580372.1371903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102107,15 +102054,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 565.2592182159424, + "msecs": 137.1903419494629, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 128.98659706115723, + "relativeCreated": 129.68206405639648, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102123,8 +102070,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.565319, + "asctime": "2021-01-14 00:26:12,137", + "created": 1610580372.137564, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102134,15 +102081,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 565.3190612792969, + "msecs": 137.56394386291504, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 129.04644012451172, + "relativeCreated": 130.05566596984863, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102151,8 +102098,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.5653753, + "asctime": "2021-01-14 00:26:12,137", + "created": 1610580372.137769, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102162,15 +102109,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 565.3753280639648, + "msecs": 137.76898384094238, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 129.1027069091797, + "relativeCreated": 130.26070594787598, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102178,8 +102125,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.5654588, + "asctime": "2021-01-14 00:26:12,137", + "created": 1610580372.137919, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102189,15 +102136,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 565.4587745666504, + "msecs": 137.91894912719727, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 129.18615341186523, + "relativeCreated": 130.41067123413086, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102206,8 +102153,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.5655148, + "asctime": "2021-01-14 00:26:12,137", + "created": 1610580372.1379943, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102217,15 +102164,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 565.5148029327393, + "msecs": 137.99428939819336, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 129.2421817779541, + "relativeCreated": 130.48601150512695, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102233,8 +102180,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.5655699, + "asctime": "2021-01-14 00:26:12,138", + "created": 1610580372.1380935, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102244,15 +102191,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 565.5698776245117, + "msecs": 138.0934715270996, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 129.29725646972656, + "relativeCreated": 130.5851936340332, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102261,8 +102208,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.565606, + "asctime": "2021-01-14 00:26:12,138", + "created": 1610580372.1381636, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102272,15 +102219,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 565.6061172485352, + "msecs": 138.16356658935547, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 129.33349609375, + "relativeCreated": 130.65528869628906, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102288,8 +102235,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:29,565", - "created": 1610361449.5657272, + "asctime": "2021-01-14 00:26:12,138", + "created": 1610580372.1382933, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -102299,15 +102246,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 565.7272338867188, + "msecs": 138.29326629638672, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 129.4546127319336, + "relativeCreated": 130.7849884033203, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102315,8 +102262,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:29,566", - "created": 1610361449.56673, + "asctime": "2021-01-14 00:26:12,139", + "created": 1610580372.1396868, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -102326,15 +102273,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 566.7300224304199, + "msecs": 139.68682289123535, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 130.45740127563477, + "relativeCreated": 132.17854499816895, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102342,8 +102289,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,566", - "created": 1610361449.5668952, + "asctime": "2021-01-14 00:26:12,140", + "created": 1610580372.1402454, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102353,15 +102300,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 566.8952465057373, + "msecs": 140.2454376220703, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 130.62262535095215, + "relativeCreated": 132.7371597290039, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102370,8 +102317,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:29,567", - "created": 1610361449.5670002, + "asctime": "2021-01-14 00:26:12,140", + "created": 1610580372.1405616, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102381,15 +102328,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 567.000150680542, + "msecs": 140.56158065795898, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 130.72752952575684, + "relativeCreated": 133.05330276489258, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102397,8 +102344,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:29,567", - "created": 1610361449.567186, + "asctime": "2021-01-14 00:26:12,140", + "created": 1610580372.1409304, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102408,15 +102355,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 567.1861171722412, + "msecs": 140.9304141998291, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 130.91349601745605, + "relativeCreated": 133.4221363067627, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102427,26 +102374,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:29,567", - "created": 1610361449.567518, + "asctime": "2021-01-14 00:26:12,141", + "created": 1610580372.141882, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 567.5179958343506, + "msecs": 141.88194274902344, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 131.24537467956543, + "relativeCreated": 134.37366485595703, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102454,26 +102401,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:29,567", - "created": 1610361449.5676374, + "asctime": "2021-01-14 00:26:12,142", + "created": 1610580372.1423578, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 567.6374435424805, + "msecs": 142.35782623291016, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 131.3648223876953, + "relativeCreated": 134.84954833984375, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102484,26 +102431,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:29,567", - "created": 1610361449.5677395, + "asctime": "2021-01-14 00:26:12,143", + "created": 1610580372.143146, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 567.7394866943359, + "msecs": 143.14603805541992, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 131.46686553955078, + "relativeCreated": 135.63776016235352, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -102511,8 +102458,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:29,568", - "created": 1610361449.568001, + "asctime": "2021-01-14 00:26:12,143", + "created": 1610580372.143956, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -102522,15 +102469,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 568.0010318756104, + "msecs": 143.95594596862793, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 131.7284107208252, + "relativeCreated": 136.44766807556152, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102538,8 +102485,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.576123, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.152182, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -102549,15 +102496,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 576.1229991912842, + "msecs": 152.18210220336914, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 139.85037803649902, + "relativeCreated": 144.67382431030273, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102565,8 +102512,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5762796, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1523092, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102576,15 +102523,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 576.2796401977539, + "msecs": 152.30917930603027, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.00701904296875, + "relativeCreated": 144.80090141296387, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102593,8 +102540,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5763893, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1523645, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102604,15 +102551,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 576.3893127441406, + "msecs": 152.36449241638184, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.11669158935547, + "relativeCreated": 144.85621452331543, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102620,8 +102567,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5764723, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1524298, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102631,15 +102578,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 576.472282409668, + "msecs": 152.42981910705566, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.1996612548828, + "relativeCreated": 144.92154121398926, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102648,8 +102595,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5765295, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1524756, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102659,15 +102606,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 576.5295028686523, + "msecs": 152.47559547424316, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.2568817138672, + "relativeCreated": 144.96731758117676, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102675,8 +102622,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.576621, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1525552, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102686,15 +102633,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 576.6210556030273, + "msecs": 152.5552272796631, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.3484344482422, + "relativeCreated": 145.04694938659668, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102703,8 +102650,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5766754, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1526036, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102714,15 +102661,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 576.6754150390625, + "msecs": 152.6036262512207, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.40279388427734, + "relativeCreated": 145.0953483581543, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102730,8 +102677,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5767655, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1526613, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102741,15 +102688,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 576.7655372619629, + "msecs": 152.66132354736328, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.49291610717773, + "relativeCreated": 145.15304565429688, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102758,8 +102705,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5768366, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1527042, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102769,15 +102716,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 576.8365859985352, + "msecs": 152.70423889160156, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.56396484375, + "relativeCreated": 145.19596099853516, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102785,8 +102732,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5769043, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1527581, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102796,15 +102743,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 576.904296875, + "msecs": 152.75812149047852, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.63167572021484, + "relativeCreated": 145.2498435974121, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102813,8 +102760,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,576", - "created": 1610361449.5769646, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.1528113, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102824,15 +102771,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 576.9646167755127, + "msecs": 152.81128883361816, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.69199562072754, + "relativeCreated": 145.30301094055176, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102840,8 +102787,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:29,577", - "created": 1610361449.5770738, + "asctime": "2021-01-14 00:26:12,152", + "created": 1610580372.152893, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -102851,15 +102798,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 577.0738124847412, + "msecs": 152.89306640625, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 140.80119132995605, + "relativeCreated": 145.3847885131836, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102867,8 +102814,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:29,577", - "created": 1610361449.5779934, + "asctime": "2021-01-14 00:26:12,153", + "created": 1610580372.1537719, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -102878,15 +102825,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 577.9933929443359, + "msecs": 153.77187728881836, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 141.72077178955078, + "relativeCreated": 146.26359939575195, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102894,8 +102841,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,578", - "created": 1610361449.578106, + "asctime": "2021-01-14 00:26:12,153", + "created": 1610580372.153826, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102905,15 +102852,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 578.1059265136719, + "msecs": 153.8259983062744, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 141.83330535888672, + "relativeCreated": 146.317720413208, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102922,8 +102869,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:29,578", - "created": 1610361449.5781755, + "asctime": "2021-01-14 00:26:12,153", + "created": 1610580372.153868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102933,15 +102880,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 578.1755447387695, + "msecs": 153.8679599761963, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 141.90292358398438, + "relativeCreated": 146.35968208312988, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102949,8 +102896,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:29,578", - "created": 1610361449.5782733, + "asctime": "2021-01-14 00:26:12,153", + "created": 1610580372.1539383, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -102960,15 +102907,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 578.2732963562012, + "msecs": 153.93829345703125, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 142.00067520141602, + "relativeCreated": 146.43001556396484, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -102979,26 +102926,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:29,578", - "created": 1610361449.5784736, + "asctime": "2021-01-14 00:26:12,154", + "created": 1610580372.1540697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 578.4735679626465, + "msecs": 154.0696620941162, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 142.20094680786133, + "relativeCreated": 146.5613842010498, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -103006,45 +102953,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:29,578", - "created": 1610361449.57856, + "asctime": "2021-01-14 00:26:12,154", + "created": 1610580372.1541314, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 578.5601139068604, + "msecs": 154.13141250610352, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 142.2874927520752, + "relativeCreated": 146.6231346130371, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" } ], - "msecs": 899.2104530334473, + "msecs": 470.5793857574463, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 462.9378318786621, + "relativeCreated": 463.0711078643799, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3206503391265869 + "time_consumption": 0.3164479732513428 }, { "args": [], - "asctime": "2021-01-11 11:37:30,100", - "created": 1610361450.10086, + "asctime": "2021-01-14 00:26:12,672", + "created": 1610580372.6724737, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -103063,26 +103010,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:29,899", - "created": 1610361449.8997083, + "asctime": "2021-01-14 00:26:12,471", + "created": 1610580372.4712045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 899.7082710266113, + "msecs": 471.2045192718506, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 463.4356498718262, + "relativeCreated": 463.6962413787842, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -103090,8 +103037,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:29,900", - "created": 1610361449.9004738, + "asctime": "2021-01-14 00:26:12,472", + "created": 1610580372.4721975, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -103101,15 +103048,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 900.4738330841064, + "msecs": 472.1975326538086, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 464.2012119293213, + "relativeCreated": 464.6892547607422, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103117,8 +103064,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:29,908", - "created": 1610361449.9089139, + "asctime": "2021-01-14 00:26:12,480", + "created": 1610580372.4807, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -103128,15 +103075,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 908.9138507843018, + "msecs": 480.7000160217285, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 472.6412296295166, + "relativeCreated": 473.1917381286621, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103144,8 +103091,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,909", - "created": 1610361449.9091544, + "asctime": "2021-01-14 00:26:12,481", + "created": 1610580372.481031, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103155,15 +103102,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 909.1544151306152, + "msecs": 481.0309410095215, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 472.8817939758301, + "relativeCreated": 473.5226631164551, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103172,8 +103119,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:29,909", - "created": 1610361449.9093847, + "asctime": "2021-01-14 00:26:12,481", + "created": 1610580372.4812589, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103183,15 +103130,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 909.3847274780273, + "msecs": 481.2588691711426, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 473.1121063232422, + "relativeCreated": 473.7505912780762, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103199,8 +103146,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,909", - "created": 1610361449.9096103, + "asctime": "2021-01-14 00:26:12,481", + "created": 1610580372.4814765, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103210,15 +103157,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 909.6102714538574, + "msecs": 481.4765453338623, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 473.33765029907227, + "relativeCreated": 473.9682674407959, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103227,8 +103174,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,909", - "created": 1610361449.9097388, + "asctime": "2021-01-14 00:26:12,481", + "created": 1610580372.4816275, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103238,15 +103185,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 909.7387790679932, + "msecs": 481.6274642944336, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 473.466157913208, + "relativeCreated": 474.1191864013672, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103254,8 +103201,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,909", - "created": 1610361449.9099264, + "asctime": "2021-01-14 00:26:12,481", + "created": 1610580372.4818552, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103265,15 +103212,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 909.9264144897461, + "msecs": 481.8551540374756, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 473.65379333496094, + "relativeCreated": 474.3468761444092, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103282,8 +103229,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,910", - "created": 1610361449.9100378, + "asctime": "2021-01-14 00:26:12,482", + "created": 1610580372.482004, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103293,15 +103240,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 910.0377559661865, + "msecs": 482.00392723083496, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 473.76513481140137, + "relativeCreated": 474.49564933776855, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103309,8 +103256,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,910", - "created": 1610361449.9101913, + "asctime": "2021-01-14 00:26:12,482", + "created": 1610580372.482197, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103320,15 +103267,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 910.1912975311279, + "msecs": 482.1970462799072, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 473.9186763763428, + "relativeCreated": 474.6887683868408, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103337,8 +103284,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,910", - "created": 1610361449.9102983, + "asctime": "2021-01-14 00:26:12,482", + "created": 1610580372.4823306, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103348,15 +103295,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 910.2983474731445, + "msecs": 482.3305606842041, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 474.0257263183594, + "relativeCreated": 474.8222827911377, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103364,8 +103311,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,910", - "created": 1610361449.9104373, + "asctime": "2021-01-14 00:26:12,482", + "created": 1610580372.4825013, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103375,15 +103322,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 910.4373455047607, + "msecs": 482.5012683868408, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 474.1647243499756, + "relativeCreated": 474.9929904937744, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103392,8 +103339,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:29,910", - "created": 1610361449.9105432, + "asctime": "2021-01-14 00:26:12,482", + "created": 1610580372.4826329, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103403,15 +103350,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 910.5432033538818, + "msecs": 482.6328754425049, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 474.2705821990967, + "relativeCreated": 475.1245975494385, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103419,8 +103366,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:29,910", - "created": 1610361449.910763, + "asctime": "2021-01-14 00:26:12,482", + "created": 1610580372.4829051, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -103430,15 +103377,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 910.7630252838135, + "msecs": 482.90514945983887, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 474.4904041290283, + "relativeCreated": 475.39687156677246, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103446,8 +103393,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:29,915", - "created": 1610361449.915122, + "asctime": "2021-01-14 00:26:12,487", + "created": 1610580372.4873073, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -103457,15 +103404,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 915.1220321655273, + "msecs": 487.3073101043701, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 478.8494110107422, + "relativeCreated": 479.7990322113037, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103473,8 +103420,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:29,915", - "created": 1610361449.9154801, + "asctime": "2021-01-14 00:26:12,487", + "created": 1610580372.4877179, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103484,15 +103431,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 915.4801368713379, + "msecs": 487.717866897583, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 479.20751571655273, + "relativeCreated": 480.2095890045166, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103501,8 +103448,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:29,915", - "created": 1610361449.9156232, + "asctime": "2021-01-14 00:26:12,487", + "created": 1610580372.487875, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103512,15 +103459,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 915.6231880187988, + "msecs": 487.87498474121094, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 479.3505668640137, + "relativeCreated": 480.36670684814453, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103528,8 +103475,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" ], - "asctime": "2021-01-11 11:37:29,915", - "created": 1610361449.9158583, + "asctime": "2021-01-14 00:26:12,488", + "created": 1610580372.48814, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103539,15 +103486,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", "module": "stp", - "msecs": 915.858268737793, + "msecs": 488.1401062011719, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 479.5856475830078, + "relativeCreated": 480.63182830810547, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { @@ -103558,74 +103505,74 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:29,916", - "created": 1610361449.9161608, + "asctime": "2021-01-14 00:26:12,488", + "created": 1610580372.4885087, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 916.1608219146729, + "msecs": 488.5087013244629, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 479.8882007598877, + "relativeCreated": 481.0004234313965, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:29,916", - "created": 1610361449.9163415, + "asctime": "2021-01-14 00:26:12,488", + "created": 1610580372.4887202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 916.3415431976318, + "msecs": 488.720178604126, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 480.0689220428467, + "relativeCreated": 481.21190071105957, "stack_info": null, - "thread": 139977394222848, + "thread": 140582302897920, "threadName": "Thread-1" } ], - "msecs": 100.8601188659668, + "msecs": 672.473669052124, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 664.5874977111816, + "relativeCreated": 664.9653911590576, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.18451857566833496 + "time_consumption": 0.18375349044799805 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:30,101", - "created": 1610361450.1014369, + "asctime": "2021-01-14 00:26:12,673", + "created": 1610580372.6733632, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -103642,8 +103589,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:30,101", - "created": 1610361450.1011949, + "asctime": "2021-01-14 00:26:12,672", + "created": 1610580372.6729844, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -103653,15 +103600,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 101.19485855102539, + "msecs": 672.9843616485596, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 664.9222373962402, + "relativeCreated": 665.4760837554932, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -103670,8 +103617,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:30,101", - "created": 1610361450.1013243, + "asctime": "2021-01-14 00:26:12,673", + "created": 1610580372.6732006, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -103681,37 +103628,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 101.32431983947754, + "msecs": 673.2006072998047, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 665.0516986846924, + "relativeCreated": 665.6923294067383, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 101.43685340881348, + "msecs": 673.363208770752, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 665.1642322540283, + "relativeCreated": 665.8549308776855, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001125335693359375 + "time_consumption": 0.00016260147094726562 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:30,101", - "created": 1610361450.1018617, + "asctime": "2021-01-14 00:26:12,673", + "created": 1610580372.6739416, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -103728,8 +103675,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:30,101", - "created": 1610361450.101633, + "asctime": "2021-01-14 00:26:12,673", + "created": 1610580372.6736102, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -103739,15 +103686,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 101.63307189941406, + "msecs": 673.6102104187012, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 665.3604507446289, + "relativeCreated": 666.1019325256348, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -103756,8 +103703,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:30,101", - "created": 1610361450.1017532, + "asctime": "2021-01-14 00:26:12,673", + "created": 1610580372.6737669, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -103767,34 +103714,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 101.75323486328125, + "msecs": 673.7668514251709, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 665.4806137084961, + "relativeCreated": 666.2585735321045, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 101.86171531677246, + "msecs": 673.9416122436523, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 665.5890941619873, + "relativeCreated": 666.4333343505859, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00010848045349121094 + "time_consumption": 0.0001747608184814453 }, { "args": [], - "asctime": "2021-01-11 11:37:30,303", - "created": 1610361450.3032367, + "asctime": "2021-01-14 00:26:12,875", + "created": 1610580372.8756225, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -103813,26 +103760,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:30,102", - "created": 1610361450.1021338, + "asctime": "2021-01-14 00:26:12,674", + "created": 1610580372.6743178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 102.13375091552734, + "msecs": 674.3178367614746, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 665.8611297607422, + "relativeCreated": 666.8095588684082, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -103840,8 +103787,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:30,102", - "created": 1610361450.1028013, + "asctime": "2021-01-14 00:26:12,675", + "created": 1610580372.6752255, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -103851,15 +103798,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 102.80132293701172, + "msecs": 675.2254962921143, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 666.5287017822266, + "relativeCreated": 667.7172183990479, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -103867,8 +103814,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:30,111", - "created": 1610361450.111207, + "asctime": "2021-01-14 00:26:12,683", + "created": 1610580372.6836655, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -103878,15 +103825,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 111.2070083618164, + "msecs": 683.6655139923096, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 674.9343872070312, + "relativeCreated": 676.1572360992432, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -103894,8 +103841,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,111", - "created": 1610361450.1114922, + "asctime": "2021-01-14 00:26:12,683", + "created": 1610580372.6839108, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103905,15 +103852,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 111.49215698242188, + "msecs": 683.9108467102051, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 675.2195358276367, + "relativeCreated": 676.4025688171387, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -103922,8 +103869,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:30,111", - "created": 1610361450.1116617, + "asctime": "2021-01-14 00:26:12,684", + "created": 1610580372.684048, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103933,15 +103880,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 111.66167259216309, + "msecs": 684.0479373931885, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 675.3890514373779, + "relativeCreated": 676.5396595001221, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -103949,8 +103896,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,111", - "created": 1610361450.111865, + "asctime": "2021-01-14 00:26:12,684", + "created": 1610580372.6842144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103960,15 +103907,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 111.86504364013672, + "msecs": 684.2143535614014, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 675.5924224853516, + "relativeCreated": 676.706075668335, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -103977,8 +103924,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,112", - "created": 1610361450.1120079, + "asctime": "2021-01-14 00:26:12,684", + "created": 1610580372.6843307, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -103988,15 +103935,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 112.00785636901855, + "msecs": 684.3307018280029, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 675.7352352142334, + "relativeCreated": 676.8224239349365, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104004,8 +103951,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,112", - "created": 1610361450.1122162, + "asctime": "2021-01-14 00:26:12,684", + "created": 1610580372.684498, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104015,15 +103962,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 112.21623420715332, + "msecs": 684.4980716705322, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 675.9436130523682, + "relativeCreated": 676.9897937774658, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104032,8 +103979,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,112", - "created": 1610361450.1123514, + "asctime": "2021-01-14 00:26:12,684", + "created": 1610580372.684608, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104043,15 +103990,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 112.3514175415039, + "msecs": 684.607982635498, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 676.0787963867188, + "relativeCreated": 677.0997047424316, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104059,8 +104006,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,112", - "created": 1610361450.112542, + "asctime": "2021-01-14 00:26:12,684", + "created": 1610580372.6847653, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104070,15 +104017,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 112.54191398620605, + "msecs": 684.7653388977051, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 676.2692928314209, + "relativeCreated": 677.2570610046387, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104087,8 +104034,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,112", - "created": 1610361450.1126752, + "asctime": "2021-01-14 00:26:12,684", + "created": 1610580372.684873, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104098,15 +104045,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 112.67518997192383, + "msecs": 684.873104095459, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 676.4025688171387, + "relativeCreated": 677.3648262023926, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104114,8 +104061,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,112", - "created": 1610361450.1128979, + "asctime": "2021-01-14 00:26:12,685", + "created": 1610580372.685013, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104125,15 +104072,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 112.89787292480469, + "msecs": 685.0130558013916, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 676.6252517700195, + "relativeCreated": 677.5047779083252, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104142,8 +104089,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,113", - "created": 1610361450.1130698, + "asctime": "2021-01-14 00:26:12,685", + "created": 1610580372.6851676, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104153,15 +104100,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 113.06977272033691, + "msecs": 685.1675510406494, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 676.7971515655518, + "relativeCreated": 677.659273147583, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104169,8 +104116,8 @@ "comm-server:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:30,113", - "created": 1610361450.1133413, + "asctime": "2021-01-14 00:26:12,685", + "created": 1610580372.685396, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104180,15 +104127,15 @@ "lineno": 284, "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 113.3413314819336, + "msecs": 685.3959560394287, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 677.0687103271484, + "relativeCreated": 677.8876781463623, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104196,8 +104143,8 @@ "comm-client:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:30,117", - "created": 1610361450.1176946, + "asctime": "2021-01-14 00:26:12,689", + "created": 1610580372.6897225, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104207,15 +104154,15 @@ "lineno": 414, "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 117.69461631774902, + "msecs": 689.7225379943848, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 681.4219951629639, + "relativeCreated": 682.2142601013184, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104223,8 +104170,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,118", - "created": 1610361450.1181123, + "asctime": "2021-01-14 00:26:12,690", + "created": 1610580372.6901617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104234,15 +104181,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 118.11232566833496, + "msecs": 690.1617050170898, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 681.8397045135498, + "relativeCreated": 682.6534271240234, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104251,8 +104198,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:30,118", - "created": 1610361450.1182876, + "asctime": "2021-01-14 00:26:12,690", + "created": 1610580372.6903386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104262,15 +104209,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 118.28756332397461, + "msecs": 690.3386116027832, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 682.0149421691895, + "relativeCreated": 682.8303337097168, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104278,8 +104225,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" ], - "asctime": "2021-01-11 11:37:30,118", - "created": 1610361450.1186037, + "asctime": "2021-01-14 00:26:12,690", + "created": 1610580372.690639, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -104289,15 +104236,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", "module": "stp", - "msecs": 118.60370635986328, + "msecs": 690.6390190124512, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 682.3310852050781, + "relativeCreated": 683.1307411193848, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { @@ -104308,74 +104255,74 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:30,118", - "created": 1610361450.1189919, + "asctime": "2021-01-14 00:26:12,691", + "created": 1610580372.691047, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 118.99185180664062, + "msecs": 691.046953201294, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 682.7192306518555, + "relativeCreated": 683.5386753082275, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:30,119", - "created": 1610361450.1192188, + "asctime": "2021-01-14 00:26:12,691", + "created": 1610580372.6912737, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 119.21882629394531, + "msecs": 691.2736892700195, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 682.9462051391602, + "relativeCreated": 683.7654113769531, "stack_info": null, - "thread": 139977385568000, + "thread": 140582294505216, "threadName": "Thread-2" } ], - "msecs": 303.236722946167, + "msecs": 875.6225109100342, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 866.9641017913818, + "relativeCreated": 868.1142330169678, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.18401789665222168 + "time_consumption": 0.18434882164001465 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:30,304", - "created": 1610361450.3042758, + "asctime": "2021-01-14 00:26:12,876", + "created": 1610580372.8764398, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -104392,8 +104339,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:30,303", - "created": 1610361450.303931, + "asctime": "2021-01-14 00:26:12,876", + "created": 1610580372.8760784, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -104403,15 +104350,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 303.93099784851074, + "msecs": 876.0783672332764, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 867.6583766937256, + "relativeCreated": 868.57008934021, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104420,8 +104367,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:30,304", - "created": 1610361450.3041155, + "asctime": "2021-01-14 00:26:12,876", + "created": 1610580372.8762589, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -104431,37 +104378,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 304.11553382873535, + "msecs": 876.2588500976562, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 867.8429126739502, + "relativeCreated": 868.7505722045898, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 304.2757511138916, + "msecs": 876.4398097991943, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 868.0031299591064, + "relativeCreated": 868.9315319061279, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016021728515625 + "time_consumption": 0.00018095970153808594 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:30,304", - "created": 1610361450.3048937, + "asctime": "2021-01-14 00:26:12,877", + "created": 1610580372.8773663, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -104478,8 +104425,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:30,304", - "created": 1610361450.3045404, + "asctime": "2021-01-14 00:26:12,876", + "created": 1610580372.8769882, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -104489,15 +104436,15 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 304.54039573669434, + "msecs": 876.9881725311279, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 868.2677745819092, + "relativeCreated": 869.4798946380615, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104506,8 +104453,8 @@ "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:30,304", - "created": 1610361450.3046932, + "asctime": "2021-01-14 00:26:12,877", + "created": 1610580372.8771932, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -104517,41 +104464,41 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 304.69322204589844, + "msecs": 877.1932125091553, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 868.4206008911133, + "relativeCreated": 869.6849346160889, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 304.89373207092285, + "msecs": 877.366304397583, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 868.6211109161377, + "relativeCreated": 869.8580265045166, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00020051002502441406 + "time_consumption": 0.00017309188842773438 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.7520277500152588, - "time_finished": "2021-01-11 11:37:30,304", - "time_start": "2021-01-11 11:37:29,552" + "time_consumption": 0.7532050609588623, + "time_finished": "2021-01-14 00:26:12,877", + "time_start": "2021-01-14 00:26:12,124" }, "_4w4SsE1DEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:32,235", - "created": 1610361452.2353706, + "asctime": "2021-01-14 00:26:14,810", + "created": 1610580374.8105404, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104562,19 +104509,19 @@ "message": "_4w4SsE1DEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 235.37063598632812, + "msecs": 810.5404376983643, "msg": "_4w4SsE1DEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2799.098014831543, + "relativeCreated": 2803.032159805298, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2407222, + "asctime": "2021-01-14 00:26:14,822", + "created": 1610580374.8222902, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -104589,8 +104536,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:32,236", - "created": 1610361452.2366586, + "asctime": "2021-01-14 00:26:14,814", + "created": 1610580374.8147807, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104600,23 +104547,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 236.65857315063477, + "msecs": 814.7807121276855, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2800.3859519958496, + "relativeCreated": 2807.272434234619, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2371037, + "asctime": "2021-01-14 00:26:14,815", + "created": 1610580374.8158302, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104626,23 +104573,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 237.10370063781738, + "msecs": 815.8302307128906, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2800.831079483032, + "relativeCreated": 2808.321952819824, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2372139, + "asctime": "2021-01-14 00:26:14,816", + "created": 1610580374.8161247, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104652,41 +104599,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 237.2138500213623, + "msecs": 816.124677658081, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2800.941228866577, + "relativeCreated": 2808.6163997650146, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2373872, + "asctime": "2021-01-14 00:26:14,816", + "created": 1610580374.8164763, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 237.38718032836914, + "msecs": 816.4763450622559, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.114559173584, + "relativeCreated": 2808.9680671691895, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104695,26 +104642,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2374823, + "asctime": "2021-01-14 00:26:14,816", + "created": 1610580374.8166633, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 237.48230934143066, + "msecs": 816.6632652282715, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.2096881866455, + "relativeCreated": 2809.154987335205, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104722,26 +104669,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2375991, + "asctime": "2021-01-14 00:26:14,816", + "created": 1610580374.8168569, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 237.59913444519043, + "msecs": 816.856861114502, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.3265132904053, + "relativeCreated": 2809.3485832214355, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104749,26 +104696,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2376912, + "asctime": "2021-01-14 00:26:14,817", + "created": 1610580374.8172066, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 237.69116401672363, + "msecs": 817.206621170044, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.4185428619385, + "relativeCreated": 2809.6983432769775, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104776,26 +104723,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2377744, + "asctime": "2021-01-14 00:26:14,817", + "created": 1610580374.8174796, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 237.77437210083008, + "msecs": 817.4796104431152, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.501750946045, + "relativeCreated": 2809.971332550049, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104803,26 +104750,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2378485, + "asctime": "2021-01-14 00:26:14,817", + "created": 1610580374.8177006, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 237.84852027893066, + "msecs": 817.7006244659424, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.5758991241455, + "relativeCreated": 2810.192346572876, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104832,8 +104779,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:32,237", - "created": 1610361452.2379327, + "asctime": "2021-01-14 00:26:14,817", + "created": 1610580374.8179412, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104843,15 +104790,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 237.93268203735352, + "msecs": 817.9411888122559, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.6600608825684, + "relativeCreated": 2810.4329109191895, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104861,8 +104808,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2380176, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.8182535, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104872,15 +104819,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 238.01755905151367, + "msecs": 818.2535171508789, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.7449378967285, + "relativeCreated": 2810.7452392578125, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104890,8 +104837,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.238102, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.8184338, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104901,15 +104848,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 238.10195922851562, + "msecs": 818.4337615966797, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.8293380737305, + "relativeCreated": 2810.9254837036133, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104919,8 +104866,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2381823, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.8185256, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -104930,41 +104877,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 238.18230628967285, + "msecs": 818.5255527496338, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.9096851348877, + "relativeCreated": 2811.0172748565674, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2382543, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.8186152, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 238.25430870056152, + "msecs": 818.615198135376, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2801.9816875457764, + "relativeCreated": 2811.1069202423096, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -104973,26 +104920,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2383342, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.8187032, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 238.33417892456055, + "msecs": 818.7031745910645, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.0615577697754, + "relativeCreated": 2811.194896697998, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105000,26 +104947,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2384226, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.818794, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 238.42263221740723, + "msecs": 818.7940120697021, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.150011062622, + "relativeCreated": 2811.2857341766357, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105027,26 +104974,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.238499, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.8188689, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 238.49892616271973, + "msecs": 818.86887550354, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.2263050079346, + "relativeCreated": 2811.3605976104736, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105056,8 +105003,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.238583, + "asctime": "2021-01-14 00:26:14,818", + "created": 1610580374.8189483, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105067,15 +105014,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 238.58308792114258, + "msecs": 818.9482688903809, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.3104667663574, + "relativeCreated": 2811.4399909973145, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105085,8 +105032,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2386656, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8190436, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105096,15 +105043,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 238.66558074951172, + "msecs": 819.0436363220215, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.3929595947266, + "relativeCreated": 2811.535358428955, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105113,26 +105060,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2387433, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8191204, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 238.74330520629883, + "msecs": 819.1204071044922, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.4706840515137, + "relativeCreated": 2811.612129211426, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105141,26 +105088,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2388165, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8191912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 238.816499710083, + "msecs": 819.1912174224854, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.543878555298, + "relativeCreated": 2811.682939529419, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105169,78 +105116,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2388878, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8192654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 238.88778686523438, + "msecs": 819.2653656005859, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.615165710449, + "relativeCreated": 2811.7570877075195, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:32,238", - "created": 1610361452.2389612, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8193405, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 238.96121978759766, + "msecs": 819.3404674530029, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.6885986328125, + "relativeCreated": 2811.8321895599365, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2391124, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8195045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 239.11237716674805, + "msecs": 819.5044994354248, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.839756011963, + "relativeCreated": 2811.9962215423584, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105249,26 +105196,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2391977, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8195884, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 239.1977310180664, + "msecs": 819.5884227752686, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2802.9251098632812, + "relativeCreated": 2812.080144882202, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105276,26 +105223,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2393036, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8197055, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 239.3035888671875, + "msecs": 819.7054862976074, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.0309677124023, + "relativeCreated": 2812.197208404541, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105303,26 +105250,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.239383, + "asctime": "2021-01-14 00:26:14,819", + "created": 1610580374.8197873, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 239.38298225402832, + "msecs": 819.7872638702393, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.110361099243, + "relativeCreated": 2812.278985977173, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105330,26 +105277,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2394803, + "asctime": "2021-01-14 00:26:14,820", + "created": 1610580374.8201113, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 239.48025703430176, + "msecs": 820.1112747192383, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.2076358795166, + "relativeCreated": 2812.602996826172, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105357,26 +105304,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2395568, + "asctime": "2021-01-14 00:26:14,820", + "created": 1610580374.8204262, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 239.55678939819336, + "msecs": 820.4262256622314, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.284168243408, + "relativeCreated": 2812.917947769165, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105386,8 +105333,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.239636, + "asctime": "2021-01-14 00:26:14,820", + "created": 1610580374.820572, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105397,15 +105344,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 239.63594436645508, + "msecs": 820.5718994140625, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.36332321167, + "relativeCreated": 2813.063621520996, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105415,8 +105362,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2397165, + "asctime": "2021-01-14 00:26:14,820", + "created": 1610580374.8206677, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105426,15 +105373,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 239.7165298461914, + "msecs": 820.6677436828613, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.4439086914062, + "relativeCreated": 2813.159465789795, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105444,8 +105391,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2397966, + "asctime": "2021-01-14 00:26:14,820", + "created": 1610580374.8208508, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105455,15 +105402,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 239.79663848876953, + "msecs": 820.8508491516113, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.5240173339844, + "relativeCreated": 2813.342571258545, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105473,8 +105420,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2398758, + "asctime": "2021-01-14 00:26:14,820", + "created": 1610580374.8209915, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105484,41 +105431,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 239.87579345703125, + "msecs": 820.9915161132812, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.603172302246, + "relativeCreated": 2813.483238220215, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:32,239", - "created": 1610361452.2399461, + "asctime": "2021-01-14 00:26:14,821", + "created": 1610580374.8211017, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 239.9461269378662, + "msecs": 821.1016654968262, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.673505783081, + "relativeCreated": 2813.5933876037598, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105527,26 +105474,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2400253, + "asctime": "2021-01-14 00:26:14,821", + "created": 1610580374.821325, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 240.02528190612793, + "msecs": 821.3250637054443, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.752660751343, + "relativeCreated": 2813.816785812378, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105554,26 +105501,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2401109, + "asctime": "2021-01-14 00:26:14,821", + "created": 1610580374.821481, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 240.1108741760254, + "msecs": 821.4809894561768, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.8382530212402, + "relativeCreated": 2813.9727115631104, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105581,26 +105528,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2401884, + "asctime": "2021-01-14 00:26:14,821", + "created": 1610580374.821598, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 240.1883602142334, + "msecs": 821.5980529785156, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.9157390594482, + "relativeCreated": 2814.089775085449, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105610,8 +105557,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2402658, + "asctime": "2021-01-14 00:26:14,821", + "created": 1610580374.821701, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105621,15 +105568,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 240.2658462524414, + "msecs": 821.7010498046875, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2803.9932250976562, + "relativeCreated": 2814.192771911621, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105639,8 +105586,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2403514, + "asctime": "2021-01-14 00:26:14,821", + "created": 1610580374.821832, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105650,15 +105597,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 240.35143852233887, + "msecs": 821.8319416046143, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.0788173675537, + "relativeCreated": 2814.323663711548, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105667,26 +105614,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2404342, + "asctime": "2021-01-14 00:26:14,821", + "created": 1610580374.8219426, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 240.4341697692871, + "msecs": 821.9425678253174, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.161548614502, + "relativeCreated": 2814.434289932251, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105695,26 +105642,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2405074, + "asctime": "2021-01-14 00:26:14,822", + "created": 1610580374.8220308, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 240.5073642730713, + "msecs": 822.030782699585, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.234743118286, + "relativeCreated": 2814.5225048065186, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105723,71 +105670,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2405791, + "asctime": "2021-01-14 00:26:14,822", + "created": 1610580374.8221152, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 240.57912826538086, + "msecs": 822.1151828765869, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.3065071105957, + "relativeCreated": 2814.6069049835205, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2406533, + "asctime": "2021-01-14 00:26:14,822", + "created": 1610580374.8222067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 240.65327644348145, + "msecs": 822.2067356109619, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.3806552886963, + "relativeCreated": 2814.6984577178955, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 240.7221794128418, + "msecs": 822.2901821136475, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.4495582580566, + "relativeCreated": 2814.781904220581, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 6.890296936035156e-05 + "time_consumption": 8.344650268554688e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:32,584", - "created": 1610361452.5848649, + "asctime": "2021-01-14 00:26:15,167", + "created": 1610580375.1674318, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -105802,8 +105749,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.240891, + "asctime": "2021-01-14 00:26:14,822", + "created": 1610580374.822513, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105813,23 +105760,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 240.8909797668457, + "msecs": 822.5131034851074, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.6183586120605, + "relativeCreated": 2815.004825592041, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:32,240", - "created": 1610361452.2409673, + "asctime": "2021-01-14 00:26:14,822", + "created": 1610580374.822651, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105839,41 +105786,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 240.9672737121582, + "msecs": 822.6509094238281, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.694652557373, + "relativeCreated": 2815.1426315307617, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:32,241", - "created": 1610361452.2410414, + "asctime": "2021-01-14 00:26:14,822", + "created": 1610580374.8227854, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 241.0414218902588, + "msecs": 822.7853775024414, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.7688007354736, + "relativeCreated": 2815.277099609375, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105884,34 +105831,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,241", - "created": 1610361452.2411778, + "asctime": "2021-01-14 00:26:14,823", + "created": 1610580374.823051, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 241.17779731750488, + "msecs": 823.0509757995605, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2804.9051761627197, + "relativeCreated": 2815.542697906494, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:32,241", - "created": 1610361452.2414806, + "asctime": "2021-01-14 00:26:14,823", + "created": 1610580374.8236125, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105921,23 +105868,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 241.48058891296387, + "msecs": 823.6124515533447, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2805.2079677581787, + "relativeCreated": 2816.1041736602783, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:32,241", - "created": 1610361452.2415726, + "asctime": "2021-01-14 00:26:14,823", + "created": 1610580374.823819, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -105947,41 +105894,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 241.57261848449707, + "msecs": 823.8189220428467, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2805.299997329712, + "relativeCreated": 2816.3106441497803, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:32,241", - "created": 1610361452.2416503, + "asctime": "2021-01-14 00:26:14,824", + "created": 1610580374.824083, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 241.65034294128418, + "msecs": 824.0830898284912, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2805.377721786499, + "relativeCreated": 2816.574811935425, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -105989,8 +105936,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:32,241", - "created": 1610361452.241897, + "asctime": "2021-01-14 00:26:14,824", + "created": 1610580374.8247523, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106000,15 +105947,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 241.8971061706543, + "msecs": 824.7523307800293, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2805.624485015869, + "relativeCreated": 2817.244052886963, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106016,8 +105963,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2501605, + "asctime": "2021-01-14 00:26:14,833", + "created": 1610580374.8332639, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106027,15 +105974,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 250.16045570373535, + "msecs": 833.2638740539551, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2813.88783454895, + "relativeCreated": 2825.7555961608887, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106043,8 +105990,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2503328, + "asctime": "2021-01-14 00:26:14,833", + "created": 1610580374.8335805, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106054,15 +106001,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 250.33283233642578, + "msecs": 833.580493927002, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.0602111816406, + "relativeCreated": 2826.0722160339355, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106071,8 +106018,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2504241, + "asctime": "2021-01-14 00:26:14,833", + "created": 1610580374.83388, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106082,15 +106029,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.42414665222168, + "msecs": 833.8799476623535, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.1515254974365, + "relativeCreated": 2826.371669769287, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106098,8 +106045,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2505317, + "asctime": "2021-01-14 00:26:14,834", + "created": 1610580374.8342593, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106109,15 +106056,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 250.53167343139648, + "msecs": 834.2592716217041, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.2590522766113, + "relativeCreated": 2826.7509937286377, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106126,8 +106073,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2506068, + "asctime": "2021-01-14 00:26:14,834", + "created": 1610580374.8345997, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106137,15 +106084,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.60677528381348, + "msecs": 834.5997333526611, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.3341541290283, + "relativeCreated": 2827.0914554595947, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106153,8 +106100,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2507162, + "asctime": "2021-01-14 00:26:14,834", + "created": 1610580374.834917, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106164,15 +106111,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 250.7162094116211, + "msecs": 834.9170684814453, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.443588256836, + "relativeCreated": 2827.408790588379, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106181,8 +106128,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.250803, + "asctime": "2021-01-14 00:26:14,835", + "created": 1610580374.8350878, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106192,15 +106139,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.80299377441406, + "msecs": 835.087776184082, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.530372619629, + "relativeCreated": 2827.5794982910156, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106208,8 +106155,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2509015, + "asctime": "2021-01-14 00:26:14,835", + "created": 1610580374.8352914, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106219,15 +106166,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 250.901460647583, + "msecs": 835.2913856506348, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.628839492798, + "relativeCreated": 2827.7831077575684, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106236,8 +106183,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,250", - "created": 1610361452.2509727, + "asctime": "2021-01-14 00:26:14,835", + "created": 1610580374.835465, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106247,15 +106194,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 250.97274780273438, + "msecs": 835.4649543762207, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.700126647949, + "relativeCreated": 2827.9566764831543, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106263,8 +106210,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,251", - "created": 1610361452.2510679, + "asctime": "2021-01-14 00:26:14,835", + "created": 1610580374.8356478, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106274,15 +106221,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 251.0678768157959, + "msecs": 835.6478214263916, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.7952556610107, + "relativeCreated": 2828.139543533325, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106291,8 +106238,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,251", - "created": 1610361452.2511384, + "asctime": "2021-01-14 00:26:14,835", + "created": 1610580374.8358648, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106302,15 +106249,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 251.13844871520996, + "msecs": 835.864782333374, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2814.865827560425, + "relativeCreated": 2828.3565044403076, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106318,8 +106265,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:32,251", - "created": 1610361452.2512834, + "asctime": "2021-01-14 00:26:14,836", + "created": 1610580374.8362463, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106329,15 +106276,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 251.2834072113037, + "msecs": 836.2462520599365, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2815.0107860565186, + "relativeCreated": 2828.73797416687, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106345,8 +106292,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:32,252", - "created": 1610361452.2522883, + "asctime": "2021-01-14 00:26:14,837", + "created": 1610580374.8371952, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106356,15 +106303,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 252.2883415222168, + "msecs": 837.1951580047607, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2816.0157203674316, + "relativeCreated": 2829.6868801116943, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106372,8 +106319,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,252", - "created": 1610361452.2524738, + "asctime": "2021-01-14 00:26:14,837", + "created": 1610580374.8373086, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106383,15 +106330,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 252.4738311767578, + "msecs": 837.3086452484131, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2816.2012100219727, + "relativeCreated": 2829.8003673553467, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106400,8 +106347,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:32,252", - "created": 1610361452.252581, + "asctime": "2021-01-14 00:26:14,837", + "created": 1610580374.837384, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106411,15 +106358,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 252.5808811187744, + "msecs": 837.3839855194092, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2816.3082599639893, + "relativeCreated": 2829.875707626343, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106427,8 +106374,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:32,252", - "created": 1610361452.2527137, + "asctime": "2021-01-14 00:26:14,837", + "created": 1610580374.8374908, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106438,15 +106385,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 252.71368026733398, + "msecs": 837.4907970428467, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2816.441059112549, + "relativeCreated": 2829.9825191497803, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106457,26 +106404,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,252", - "created": 1610361452.2529495, + "asctime": "2021-01-14 00:26:14,837", + "created": 1610580374.8377454, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 252.94947624206543, + "msecs": 837.7454280853271, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2816.6768550872803, + "relativeCreated": 2830.2371501922607, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106484,26 +106431,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:32,253", - "created": 1610361452.2530508, + "asctime": "2021-01-14 00:26:14,837", + "created": 1610580374.8378448, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 253.0508041381836, + "msecs": 837.8448486328125, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2816.7781829833984, + "relativeCreated": 2830.336570739746, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106514,26 +106461,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,253", - "created": 1610361452.2531862, + "asctime": "2021-01-14 00:26:14,837", + "created": 1610580374.837991, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 253.18622589111328, + "msecs": 837.9909992218018, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2816.913604736328, + "relativeCreated": 2830.4827213287354, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -106541,8 +106488,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:32,253", - "created": 1610361452.2536225, + "asctime": "2021-01-14 00:26:14,838", + "created": 1610580374.8385022, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106552,15 +106499,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 253.62253189086914, + "msecs": 838.5021686553955, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2817.349910736084, + "relativeCreated": 2830.993890762329, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106568,8 +106515,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:32,261", - "created": 1610361452.2619257, + "asctime": "2021-01-14 00:26:14,846", + "created": 1610580374.8467228, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106579,15 +106526,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 261.92569732666016, + "msecs": 846.7228412628174, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2825.653076171875, + "relativeCreated": 2839.214563369751, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106595,8 +106542,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,262", - "created": 1610361452.262148, + "asctime": "2021-01-14 00:26:14,846", + "created": 1610580374.8469882, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106606,15 +106553,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 262.1479034423828, + "msecs": 846.9882011413574, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2825.8752822875977, + "relativeCreated": 2839.479923248291, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106623,8 +106570,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:32,262", - "created": 1610361452.2622666, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.84716, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106634,15 +106581,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 262.2666358947754, + "msecs": 847.1601009368896, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2825.9940147399902, + "relativeCreated": 2839.6518230438232, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106650,8 +106597,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,262", - "created": 1610361452.2624307, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.8472836, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106661,15 +106608,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 262.43066787719727, + "msecs": 847.2836017608643, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.158046722412, + "relativeCreated": 2839.775323867798, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106678,8 +106625,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,262", - "created": 1610361452.2625356, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.8473613, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106689,15 +106636,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 262.53557205200195, + "msecs": 847.3613262176514, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.262950897217, + "relativeCreated": 2839.853048324585, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106705,8 +106652,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,262", - "created": 1610361452.2626827, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.8474762, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106716,15 +106663,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 262.6826763153076, + "msecs": 847.4762439727783, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.4100551605225, + "relativeCreated": 2839.967966079712, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106733,8 +106680,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,262", - "created": 1610361452.2627795, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.8475382, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106744,15 +106691,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 262.77947425842285, + "msecs": 847.5382328033447, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.5068531036377, + "relativeCreated": 2840.0299549102783, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106760,8 +106707,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,262", - "created": 1610361452.2629197, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.8476028, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106771,15 +106718,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 262.91966438293457, + "msecs": 847.6028442382812, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.6470432281494, + "relativeCreated": 2840.094566345215, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106788,8 +106735,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,263", - "created": 1610361452.2630303, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.8476737, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106799,15 +106746,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 263.0302906036377, + "msecs": 847.6736545562744, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.7576694488525, + "relativeCreated": 2840.165376663208, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106815,8 +106762,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,263", - "created": 1610361452.2631583, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.8477824, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106826,15 +106773,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 263.15832138061523, + "msecs": 847.7823734283447, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.88570022583, + "relativeCreated": 2840.2740955352783, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106843,8 +106790,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,263", - "created": 1610361452.263253, + "asctime": "2021-01-14 00:26:14,847", + "created": 1610580374.847863, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106854,15 +106801,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 263.25297355651855, + "msecs": 847.862958908081, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2826.9803524017334, + "relativeCreated": 2840.3546810150146, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106870,8 +106817,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:32,263", - "created": 1610361452.2634232, + "asctime": "2021-01-14 00:26:14,848", + "created": 1610580374.848021, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106881,15 +106828,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 263.42320442199707, + "msecs": 848.0210304260254, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2827.150583267212, + "relativeCreated": 2840.512752532959, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106897,8 +106844,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:32,264", - "created": 1610361452.2644224, + "asctime": "2021-01-14 00:26:14,848", + "created": 1610580374.8489668, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -106908,15 +106855,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 264.4224166870117, + "msecs": 848.9668369293213, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2828.1497955322266, + "relativeCreated": 2841.458559036255, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106924,8 +106871,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,264", - "created": 1610361452.2646024, + "asctime": "2021-01-14 00:26:14,849", + "created": 1610580374.8491368, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106935,15 +106882,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 264.6024227142334, + "msecs": 849.1368293762207, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2828.3298015594482, + "relativeCreated": 2841.6285514831543, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106952,8 +106899,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:32,264", - "created": 1610361452.2647235, + "asctime": "2021-01-14 00:26:14,849", + "created": 1610580374.8492415, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106963,15 +106910,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 264.723539352417, + "msecs": 849.2414951324463, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2828.450918197632, + "relativeCreated": 2841.73321723938, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -106979,8 +106926,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:32,264", - "created": 1610361452.264935, + "asctime": "2021-01-14 00:26:14,849", + "created": 1610580374.8494072, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -106990,15 +106937,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 264.9350166320801, + "msecs": 849.4071960449219, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2828.662395477295, + "relativeCreated": 2841.8989181518555, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -107009,26 +106956,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,265", - "created": 1610361452.2652137, + "asctime": "2021-01-14 00:26:14,849", + "created": 1610580374.8496022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 265.2137279510498, + "msecs": 849.602222442627, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2828.9411067962646, + "relativeCreated": 2842.0939445495605, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -107036,45 +106983,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:32,265", - "created": 1610361452.265349, + "asctime": "2021-01-14 00:26:14,849", + "created": 1610580374.849694, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 265.3489112854004, + "msecs": 849.694013595581, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2829.0762901306152, + "relativeCreated": 2842.1857357025146, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" } ], - "msecs": 584.8648548126221, + "msecs": 167.43183135986328, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3148.592233657837, + "relativeCreated": 3159.923553466797, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3195159435272217 + "time_consumption": 0.3177378177642822 }, { "args": [], - "asctime": "2021-01-11 11:37:32,585", - "created": 1610361452.5853188, + "asctime": "2021-01-14 00:26:15,167", + "created": 1610580375.1677437, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -107085,15 +107032,15 @@ "message": "Identical secrets set and automatic authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 585.3188037872314, + "msecs": 167.74368286132812, "msg": "Identical secrets set and automatic authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3149.0461826324463, + "relativeCreated": 3160.2354049682617, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -107102,8 +107049,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,585", - "created": 1610361452.5858984, + "asctime": "2021-01-14 00:26:15,167", + "created": 1610580375.1679962, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -107120,8 +107067,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,585", - "created": 1610361452.5855854, + "asctime": "2021-01-14 00:26:15,167", + "created": 1610580375.1678784, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -107131,15 +107078,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 585.585355758667, + "msecs": 167.8783893585205, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3149.312734603882, + "relativeCreated": 3160.370111465454, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -107148,8 +107095,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,585", - "created": 1610361452.5857482, + "asctime": "2021-01-14 00:26:15,167", + "created": 1610580375.1679392, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -107159,37 +107106,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 585.7481956481934, + "msecs": 167.9391860961914, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3149.475574493408, + "relativeCreated": 3160.430908203125, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 585.8983993530273, + "msecs": 167.99616813659668, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3149.625778198242, + "relativeCreated": 3160.4878902435303, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015020370483398438 + "time_consumption": 5.698204040527344e-05 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:32,586", - "created": 1610361452.5864465, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1681943, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -107206,8 +107153,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,586", - "created": 1610361452.5861268, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1680765, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -107217,15 +107164,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 586.1268043518066, + "msecs": 168.0765151977539, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3149.8541831970215, + "relativeCreated": 3160.5682373046875, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -107234,8 +107181,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,586", - "created": 1610361452.5863056, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.168121, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -107245,34 +107192,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 586.3056182861328, + "msecs": 168.1210994720459, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3150.0329971313477, + "relativeCreated": 3160.6128215789795, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 586.4465236663818, + "msecs": 168.19429397583008, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3150.1739025115967, + "relativeCreated": 3160.6860160827637, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014090538024902344 + "time_consumption": 7.319450378417969e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:34,937", - "created": 1610361454.9374611, + "asctime": "2021-01-14 00:26:17,518", + "created": 1610580377.5189915, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -107287,8 +107234,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:32,586", - "created": 1610361452.586662, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.16828, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107298,49 +107245,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 586.6620540618896, + "msecs": 168.27988624572754, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3150.3894329071045, + "relativeCreated": 3160.771608352661, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:32,586", - "created": 1610361452.5868332, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.168355, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 586.8332386016846, + "msecs": 168.35498809814453, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3150.5606174468994, + "relativeCreated": 3160.846710205078, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:32,586", - "created": 1610361452.5869772, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1684027, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107350,49 +107297,49 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 586.9772434234619, + "msecs": 168.40267181396484, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3150.7046222686768, + "relativeCreated": 3160.8943939208984, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:32,587", - "created": 1610361452.587115, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1684465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 587.1150493621826, + "msecs": 168.44654083251953, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3150.8424282073975, + "relativeCreated": 3160.938262939453, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:32,587", - "created": 1610361452.5872695, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1685023, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107402,23 +107349,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 587.2695446014404, + "msecs": 168.5023307800293, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3150.9969234466553, + "relativeCreated": 3160.994052886963, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:32,587", - "created": 1610361452.587404, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1685562, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107428,41 +107375,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 587.4040126800537, + "msecs": 168.55621337890625, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3151.1313915252686, + "relativeCreated": 3161.04793548584, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:32,587", - "created": 1610361452.58754, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1686037, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 587.5399112701416, + "msecs": 168.60365867614746, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3151.2672901153564, + "relativeCreated": 3161.095380783081, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -107473,26 +107420,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,587", - "created": 1610361452.5878, + "asctime": "2021-01-14 00:26:15,168", + "created": 1610580375.1687386, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 587.8000259399414, + "msecs": 168.73860359191895, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3151.5274047851562, + "relativeCreated": 3161.2303256988525, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -107503,26 +107450,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,588", - "created": 1610361452.5884585, + "asctime": "2021-01-14 00:26:15,169", + "created": 1610580375.1691122, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 588.4585380554199, + "msecs": 169.1122055053711, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3152.1859169006348, + "relativeCreated": 3161.6039276123047, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -107530,8 +107477,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:32,589", - "created": 1610361452.58924, + "asctime": "2021-01-14 00:26:15,169", + "created": 1610580375.169491, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107541,15 +107488,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 589.2400741577148, + "msecs": 169.49105262756348, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3152.9674530029297, + "relativeCreated": 3161.982774734497, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107557,8 +107504,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:32,597", - "created": 1610361452.5976863, + "asctime": "2021-01-14 00:26:15,177", + "created": 1610580375.177726, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107568,15 +107515,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 597.6862907409668, + "msecs": 177.72603034973145, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3161.4136695861816, + "relativeCreated": 3170.217752456665, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107584,8 +107531,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,597", - "created": 1610361452.5979993, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.178029, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107595,15 +107542,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 597.9993343353271, + "msecs": 178.02906036376953, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3161.726713180542, + "relativeCreated": 3170.520782470703, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107612,8 +107559,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:32,598", - "created": 1610361452.5981681, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.1782293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107623,15 +107570,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 598.168134689331, + "msecs": 178.22933197021484, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3161.895513534546, + "relativeCreated": 3170.7210540771484, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107639,8 +107586,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,598", - "created": 1610361452.5983794, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.1784065, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107650,15 +107597,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 598.379373550415, + "msecs": 178.4064769744873, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3162.10675239563, + "relativeCreated": 3170.898199081421, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107667,8 +107614,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,598", - "created": 1610361452.5985203, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.1785254, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107678,15 +107625,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 598.5202789306641, + "msecs": 178.52544784545898, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3162.247657775879, + "relativeCreated": 3171.0171699523926, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107694,8 +107641,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,598", - "created": 1610361452.598723, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.1786587, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107705,15 +107652,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 598.7229347229004, + "msecs": 178.65872383117676, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3162.4503135681152, + "relativeCreated": 3171.1504459381104, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107722,8 +107669,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,598", - "created": 1610361452.598855, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.1787553, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107733,15 +107680,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 598.8550186157227, + "msecs": 178.7552833557129, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3162.5823974609375, + "relativeCreated": 3171.2470054626465, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107749,8 +107696,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,599", - "created": 1610361452.599039, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.1788564, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107760,15 +107707,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 599.0390777587891, + "msecs": 178.85637283325195, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3162.766456604004, + "relativeCreated": 3171.3480949401855, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107777,8 +107724,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,599", - "created": 1610361452.599171, + "asctime": "2021-01-14 00:26:15,178", + "created": 1610580375.1789382, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107788,15 +107735,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 599.1709232330322, + "msecs": 178.9381504058838, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3162.898302078247, + "relativeCreated": 3171.4298725128174, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107804,8 +107751,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,599", - "created": 1610361452.5993438, + "asctime": "2021-01-14 00:26:15,179", + "created": 1610580375.17903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107815,15 +107762,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 599.3437767028809, + "msecs": 179.0299415588379, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3163.0711555480957, + "relativeCreated": 3171.5216636657715, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107832,8 +107779,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:32,599", - "created": 1610361452.5994885, + "asctime": "2021-01-14 00:26:15,179", + "created": 1610580375.1791043, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107843,15 +107790,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 599.4884967803955, + "msecs": 179.10432815551758, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3163.2158756256104, + "relativeCreated": 3171.596050262451, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107859,8 +107806,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:32,599", - "created": 1610361452.5997329, + "asctime": "2021-01-14 00:26:15,179", + "created": 1610580375.1792717, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107870,15 +107817,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 599.7328758239746, + "msecs": 179.27169799804688, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3163.4602546691895, + "relativeCreated": 3171.7634201049805, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107886,8 +107833,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:32,600", - "created": 1610361452.6008832, + "asctime": "2021-01-14 00:26:15,180", + "created": 1610580375.1803384, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -107897,15 +107844,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 600.8832454681396, + "msecs": 180.33838272094727, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3164.6106243133545, + "relativeCreated": 3172.830104827881, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107913,8 +107860,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:32,601", - "created": 1610361452.601195, + "asctime": "2021-01-14 00:26:15,180", + "created": 1610580375.180598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107924,15 +107871,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 601.1950969696045, + "msecs": 180.59802055358887, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3164.9224758148193, + "relativeCreated": 3173.0897426605225, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107941,8 +107888,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:32,601", - "created": 1610361452.6013649, + "asctime": "2021-01-14 00:26:15,180", + "created": 1610580375.180759, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107952,15 +107899,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 601.3648509979248, + "msecs": 180.75895309448242, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3165.0922298431396, + "relativeCreated": 3173.250675201416, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107968,8 +107915,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:32,601", - "created": 1610361452.6016521, + "asctime": "2021-01-14 00:26:15,180", + "created": 1610580375.1809745, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -107979,15 +107926,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 601.6521453857422, + "msecs": 180.97448348999023, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3165.379524230957, + "relativeCreated": 3173.466205596924, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -107998,26 +107945,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,602", - "created": 1610361452.6020405, + "asctime": "2021-01-14 00:26:15,181", + "created": 1610580375.1813438, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 602.0405292510986, + "msecs": 181.34379386901855, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3165.7679080963135, + "relativeCreated": 3173.835515975952, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108025,26 +107972,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:32,602", - "created": 1610361452.6022387, + "asctime": "2021-01-14 00:26:15,181", + "created": 1610580375.1815193, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 602.238655090332, + "msecs": 181.5192699432373, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3165.966033935547, + "relativeCreated": 3174.010992050171, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108055,34 +108002,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:32,602", - "created": 1610361452.6024945, + "asctime": "2021-01-14 00:26:15,181", + "created": 1610580375.1817188, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 602.494478225708, + "msecs": 181.7188262939453, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 3166.221857070923, + "relativeCreated": 3174.210548400879, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:34,593", - "created": 1610361454.5937903, + "asctime": "2021-01-14 00:26:17,175", + "created": 1610580377.1751673, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108092,23 +108039,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 593.7902927398682, + "msecs": 175.16732215881348, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5157.517671585083, + "relativeCreated": 5167.659044265747, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:34,594", - "created": 1610361454.5940578, + "asctime": "2021-01-14 00:26:17,175", + "created": 1610580377.1754742, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108118,41 +108065,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 594.0577983856201, + "msecs": 175.4741668701172, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5157.785177230835, + "relativeCreated": 5167.965888977051, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:34,594", - "created": 1610361454.5942113, + "asctime": "2021-01-14 00:26:17,175", + "created": 1610580377.1756535, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 594.2113399505615, + "msecs": 175.65345764160156, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5157.938718795776, + "relativeCreated": 5168.145179748535, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -108160,8 +108107,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,608", - "created": 1610361454.608526, + "asctime": "2021-01-14 00:26:17,186", + "created": 1610580377.1868906, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108171,15 +108118,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 608.5259914398193, + "msecs": 186.8906021118164, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5172.253370285034, + "relativeCreated": 5179.38232421875, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108187,8 +108134,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,609", - "created": 1610361454.6090362, + "asctime": "2021-01-14 00:26:17,187", + "created": 1610580377.1873918, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108198,15 +108145,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 609.0362071990967, + "msecs": 187.3917579650879, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5172.7635860443115, + "relativeCreated": 5179.8834800720215, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108214,8 +108161,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,617", - "created": 1610361454.6171029, + "asctime": "2021-01-14 00:26:17,195", + "created": 1610580377.1955054, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108225,15 +108172,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 617.102861404419, + "msecs": 195.50538063049316, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5180.830240249634, + "relativeCreated": 5187.997102737427, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108241,8 +108188,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,617", - "created": 1610361454.6173918, + "asctime": "2021-01-14 00:26:17,195", + "created": 1610580377.1958625, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108252,15 +108199,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 617.39182472229, + "msecs": 195.8625316619873, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5181.119203567505, + "relativeCreated": 5188.354253768921, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108269,8 +108216,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:34,617", - "created": 1610361454.6175632, + "asctime": "2021-01-14 00:26:17,196", + "created": 1610580377.1960447, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108280,15 +108227,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 617.5632476806641, + "msecs": 196.0446834564209, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5181.290626525879, + "relativeCreated": 5188.5364055633545, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108296,8 +108243,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,617", - "created": 1610361454.6177857, + "asctime": "2021-01-14 00:26:17,196", + "created": 1610580377.1962793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108307,15 +108254,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 617.7856922149658, + "msecs": 196.27928733825684, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5181.513071060181, + "relativeCreated": 5188.77100944519, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108324,8 +108271,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,617", - "created": 1610361454.6179278, + "asctime": "2021-01-14 00:26:17,196", + "created": 1610580377.1964257, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108335,15 +108282,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 617.9277896881104, + "msecs": 196.4256763458252, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5181.655168533325, + "relativeCreated": 5188.917398452759, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108351,8 +108298,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,618", - "created": 1610361454.6181285, + "asctime": "2021-01-14 00:26:17,196", + "created": 1610580377.196633, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108362,15 +108309,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 618.1285381317139, + "msecs": 196.63310050964355, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5181.855916976929, + "relativeCreated": 5189.124822616577, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108379,8 +108326,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,618", - "created": 1610361454.6182625, + "asctime": "2021-01-14 00:26:17,196", + "created": 1610580377.1967711, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108390,15 +108337,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 618.262529373169, + "msecs": 196.77114486694336, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5181.989908218384, + "relativeCreated": 5189.262866973877, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108406,8 +108353,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,618", - "created": 1610361454.618443, + "asctime": "2021-01-14 00:26:17,196", + "created": 1610580377.196954, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108417,15 +108364,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 618.4430122375488, + "msecs": 196.95401191711426, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5182.170391082764, + "relativeCreated": 5189.445734024048, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108434,8 +108381,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,618", - "created": 1610361454.6185849, + "asctime": "2021-01-14 00:26:17,197", + "created": 1610580377.1970878, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108445,15 +108392,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 618.5848712921143, + "msecs": 197.08776473999023, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5182.312250137329, + "relativeCreated": 5189.579486846924, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108461,8 +108408,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,618", - "created": 1610361454.6187675, + "asctime": "2021-01-14 00:26:17,197", + "created": 1610580377.1973205, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108472,15 +108419,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 618.767499923706, + "msecs": 197.32046127319336, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5182.494878768921, + "relativeCreated": 5189.812183380127, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108489,8 +108436,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,618", - "created": 1610361454.618899, + "asctime": "2021-01-14 00:26:17,197", + "created": 1610580377.1974592, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108500,15 +108447,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 618.8991069793701, + "msecs": 197.45922088623047, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5182.626485824585, + "relativeCreated": 5189.950942993164, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108516,8 +108463,8 @@ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:34,619", - "created": 1610361454.619135, + "asctime": "2021-01-14 00:26:17,197", + "created": 1610580377.1978097, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108527,15 +108474,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 619.1349029541016, + "msecs": 197.80969619750977, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5182.862281799316, + "relativeCreated": 5190.301418304443, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108543,8 +108490,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,619", - "created": 1610361454.6194224, + "asctime": "2021-01-14 00:26:17,198", + "created": 1610580377.198138, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108554,15 +108501,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 619.422435760498, + "msecs": 198.13799858093262, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.149814605713, + "relativeCreated": 5190.629720687866, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108570,8 +108517,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,619", - "created": 1610361454.619565, + "asctime": "2021-01-14 00:26:17,198", + "created": 1610580377.1983182, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108581,15 +108528,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 619.5650100708008, + "msecs": 198.3182430267334, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.292388916016, + "relativeCreated": 5190.809965133667, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108598,8 +108545,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:34,619", - "created": 1610361454.6196654, + "asctime": "2021-01-14 00:26:17,198", + "created": 1610580377.1984599, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108609,15 +108556,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 619.6653842926025, + "msecs": 198.45986366271973, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.392763137817, + "relativeCreated": 5190.951585769653, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108625,8 +108572,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,619", - "created": 1610361454.619808, + "asctime": "2021-01-14 00:26:17,198", + "created": 1610580377.198663, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108636,15 +108583,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 619.8079586029053, + "msecs": 198.66299629211426, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.53533744812, + "relativeCreated": 5191.154718399048, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108653,8 +108600,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,619", - "created": 1610361454.6198955, + "asctime": "2021-01-14 00:26:17,198", + "created": 1610580377.1988225, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108664,15 +108611,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 619.8954582214355, + "msecs": 198.8224983215332, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.62283706665, + "relativeCreated": 5191.314220428467, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108680,8 +108627,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.6200192, + "asctime": "2021-01-14 00:26:17,199", + "created": 1610580377.1990275, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108691,15 +108638,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 620.0191974639893, + "msecs": 199.02753829956055, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.746576309204, + "relativeCreated": 5191.519260406494, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108708,8 +108655,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.6200998, + "asctime": "2021-01-14 00:26:17,199", + "created": 1610580377.199171, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108719,15 +108666,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 620.0997829437256, + "msecs": 199.1710662841797, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.82716178894, + "relativeCreated": 5191.662788391113, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108735,8 +108682,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.6202111, + "asctime": "2021-01-14 00:26:17,199", + "created": 1610580377.1993556, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108746,15 +108693,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 620.211124420166, + "msecs": 199.3556022644043, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5183.938503265381, + "relativeCreated": 5191.847324371338, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108763,8 +108710,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.620291, + "asctime": "2021-01-14 00:26:17,199", + "created": 1610580377.1994908, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108774,15 +108721,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 620.290994644165, + "msecs": 199.49078559875488, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.01837348938, + "relativeCreated": 5191.9825077056885, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108790,8 +108737,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.620397, + "asctime": "2021-01-14 00:26:17,199", + "created": 1610580377.199664, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108801,15 +108748,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 620.3970909118652, + "msecs": 199.66411590576172, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.12446975708, + "relativeCreated": 5192.155838012695, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108818,8 +108765,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.6204767, + "asctime": "2021-01-14 00:26:17,199", + "created": 1610580377.1997952, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108829,15 +108776,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 620.4767227172852, + "msecs": 199.79524612426758, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.2041015625, + "relativeCreated": 5192.286968231201, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108845,8 +108792,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.6206124, + "asctime": "2021-01-14 00:26:17,200", + "created": 1610580377.2001188, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108856,15 +108803,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 620.612382888794, + "msecs": 200.1187801361084, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.339761734009, + "relativeCreated": 5192.610502243042, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -108872,8 +108819,8 @@ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.6207967, + "asctime": "2021-01-14 00:26:17,200", + "created": 1610580377.2003274, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -108883,15 +108830,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 620.7966804504395, + "msecs": 200.32739639282227, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.524059295654, + "relativeCreated": 5192.819118499756, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108899,8 +108846,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,620", - "created": 1610361454.6209514, + "asctime": "2021-01-14 00:26:17,200", + "created": 1610580377.2005115, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108910,15 +108857,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 620.9514141082764, + "msecs": 200.51145553588867, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.678792953491, + "relativeCreated": 5193.003177642822, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108927,8 +108874,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:34,621", - "created": 1610361454.6210644, + "asctime": "2021-01-14 00:26:17,200", + "created": 1610580377.2006652, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108938,15 +108885,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 621.0644245147705, + "msecs": 200.66523551940918, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.791803359985, + "relativeCreated": 5193.156957626343, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108954,8 +108901,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" ], - "asctime": "2021-01-11 11:37:34,621", - "created": 1610361454.6212199, + "asctime": "2021-01-14 00:26:17,200", + "created": 1610580377.200906, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -108965,15 +108912,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", "module": "stp", - "msecs": 621.2198734283447, + "msecs": 200.90603828430176, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5184.94725227356, + "relativeCreated": 5193.397760391235, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -108984,26 +108931,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:34,621", - "created": 1610361454.621473, + "asctime": "2021-01-14 00:26:17,201", + "created": 1610580377.201343, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 621.4730739593506, + "msecs": 201.34305953979492, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5185.200452804565, + "relativeCreated": 5193.8347816467285, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -109011,26 +108958,26 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:34,621", - "created": 1610361454.6215885, + "asctime": "2021-01-14 00:26:17,201", + "created": 1610580377.2015295, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 621.5884685516357, + "msecs": 201.52950286865234, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5185.315847396851, + "relativeCreated": 5194.021224975586, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -109039,28 +108986,28 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'f25a5d4fab0ff3c13555e0d256a23a7e3a6fc9f8217320c929c4f95082842ac6'" + "'1460017567fec628b855c6ae8bff3b72bb4630b3168d1b4956fc6efec032d255'" ], - "asctime": "2021-01-11 11:37:34,621", - "created": 1610361454.6217713, + "asctime": "2021-01-14 00:26:17,201", + "created": 1610580377.2018247, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'f25a5d4fab0ff3c13555e0d256a23a7e3a6fc9f8217320c929c4f95082842ac6'\"", + "lineno": 450, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'1460017567fec628b855c6ae8bff3b72bb4630b3168d1b4956fc6efec032d255'\"", "module": "__init__", - "msecs": 621.7713356018066, + "msecs": 201.82466506958008, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5185.4987144470215, + "relativeCreated": 5194.316387176514, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -109068,8 +109015,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:34,622", - "created": 1610361454.6222866, + "asctime": "2021-01-14 00:26:17,202", + "created": 1610580377.2025535, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109079,15 +109026,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 622.2865581512451, + "msecs": 202.55351066589355, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5186.01393699646, + "relativeCreated": 5195.045232772827, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109095,8 +109042,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,622", - "created": 1610361454.6224532, + "asctime": "2021-01-14 00:26:17,202", + "created": 1610580377.202764, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109106,15 +109053,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 622.4532127380371, + "msecs": 202.76403427124023, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5186.180591583252, + "relativeCreated": 5195.255756378174, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109123,8 +109070,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:34,622", - "created": 1610361454.6225555, + "asctime": "2021-01-14 00:26:17,202", + "created": 1610580377.2029166, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109134,15 +109081,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 622.5554943084717, + "msecs": 202.91662216186523, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5186.2828731536865, + "relativeCreated": 5195.408344268799, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109150,8 +109097,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:34,622", - "created": 1610361454.622704, + "asctime": "2021-01-14 00:26:17,203", + "created": 1610580377.2031734, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109161,15 +109108,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 622.704029083252, + "msecs": 203.17339897155762, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5186.431407928467, + "relativeCreated": 5195.665121078491, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109180,26 +109127,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:34,622", - "created": 1610361454.6229105, + "asctime": "2021-01-14 00:26:17,203", + "created": 1610580377.2035103, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 622.9104995727539, + "msecs": 203.51028442382812, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5186.637878417969, + "relativeCreated": 5196.002006530762, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109207,35 +109154,35 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:34,623", - "created": 1610361454.6230206, + "asctime": "2021-01-14 00:26:17,203", + "created": 1610580377.2036881, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 623.0206489562988, + "msecs": 203.6881446838379, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5186.748027801514, + "relativeCreated": 5196.1798667907715, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 32 35 61" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 34 36 30" ], - "asctime": "2021-01-11 11:37:34,623", - "created": 1610361454.6232135, + "asctime": "2021-01-14 00:26:17,204", + "created": 1610580377.204004, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109243,26 +109190,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 32 35 61", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 34 36 30", "module": "__init__", - "msecs": 623.213529586792, + "msecs": 204.00404930114746, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5186.940908432007, + "relativeCreated": 5196.495771408081, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 32 35 61" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 34 36 30" ], - "asctime": "2021-01-11 11:37:34,631", - "created": 1610361454.6315086, + "asctime": "2021-01-14 00:26:17,212", + "created": 1610580377.212336, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109270,17 +109217,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 32 35 61", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 34 36 30", "module": "__init__", - "msecs": 631.5085887908936, + "msecs": 212.33606338500977, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5195.235967636108, + "relativeCreated": 5204.827785491943, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109288,8 +109235,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,631", - "created": 1610361454.6317048, + "asctime": "2021-01-14 00:26:17,212", + "created": 1610580377.2125185, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109299,15 +109246,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 631.7048072814941, + "msecs": 212.51845359802246, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5195.432186126709, + "relativeCreated": 5205.010175704956, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109316,8 +109263,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:34,631", - "created": 1610361454.631807, + "asctime": "2021-01-14 00:26:17,212", + "created": 1610580377.212601, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109327,15 +109274,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 631.8070888519287, + "msecs": 212.6009464263916, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5195.534467697144, + "relativeCreated": 5205.092668533325, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109343,8 +109290,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,631", - "created": 1610361454.6319675, + "asctime": "2021-01-14 00:26:17,212", + "created": 1610580377.2128093, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109354,15 +109301,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 631.9675445556641, + "msecs": 212.80932426452637, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5195.694923400879, + "relativeCreated": 5205.30104637146, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109371,8 +109318,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.632056, + "asctime": "2021-01-14 00:26:17,212", + "created": 1610580377.2128887, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109382,15 +109329,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 632.0559978485107, + "msecs": 212.8887176513672, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5195.783376693726, + "relativeCreated": 5205.380439758301, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109398,8 +109345,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.6321862, + "asctime": "2021-01-14 00:26:17,212", + "created": 1610580377.2129898, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109409,15 +109356,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 632.1861743927002, + "msecs": 212.98980712890625, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5195.913553237915, + "relativeCreated": 5205.48152923584, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109426,8 +109373,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.6322682, + "asctime": "2021-01-14 00:26:17,213", + "created": 1610580377.2130542, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109437,15 +109384,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 632.2681903839111, + "msecs": 213.05418014526367, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5195.995569229126, + "relativeCreated": 5205.545902252197, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109453,8 +109400,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.6323805, + "asctime": "2021-01-14 00:26:17,213", + "created": 1610580377.2131681, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109464,15 +109411,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 632.380485534668, + "msecs": 213.16814422607422, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5196.107864379883, + "relativeCreated": 5205.659866333008, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109481,8 +109428,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.6324615, + "asctime": "2021-01-14 00:26:17,213", + "created": 1610580377.2132351, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109492,15 +109439,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 632.4615478515625, + "msecs": 213.23513984680176, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5196.188926696777, + "relativeCreated": 5205.726861953735, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109508,8 +109455,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.632569, + "asctime": "2021-01-14 00:26:17,213", + "created": 1610580377.2133183, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109519,15 +109466,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 632.5690746307373, + "msecs": 213.3183479309082, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5196.296453475952, + "relativeCreated": 5205.810070037842, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109536,8 +109483,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.6326494, + "asctime": "2021-01-14 00:26:17,213", + "created": 1610580377.2133822, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109547,24 +109494,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 632.6494216918945, + "msecs": 213.38224411010742, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5196.376800537109, + "relativeCreated": 5205.873966217041, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "comm-server:", - "(64): 35 64 34 66 61 62 30 66 66 33 63 31 33 35 35 35 65 30 64 32 35 36 61 32 33 61 37 65 33 61 36 66 63 39 66 38 32 31 37 33 32 30 63 39 32 39 63 34 66 39 35 30 38 32 38 34 32 61 63 36 22 7d c0 35" + "(64): 30 31 37 35 36 37 66 65 63 36 32 38 62 38 35 35 63 36 61 65 38 62 66 66 33 62 37 32 62 62 34 36 33 30 62 33 31 36 38 64 31 62 34 39 35 36 66 63 36 65 66 65 63 30 33 32 64 32 35 35 22 7d 76 ff" ], - "asctime": "2021-01-11 11:37:34,632", - "created": 1610361454.6328819, + "asctime": "2021-01-14 00:26:17,213", + "created": 1610580377.213543, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109572,26 +109519,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 35 64 34 66 61 62 30 66 66 33 63 31 33 35 35 35 65 30 64 32 35 36 61 32 33 61 37 65 33 61 36 66 63 39 66 38 32 31 37 33 32 30 63 39 32 39 63 34 66 39 35 30 38 32 38 34 32 61 63 36 22 7d c0 35", + "message": "comm-server: TX -> (64): 30 31 37 35 36 37 66 65 63 36 32 38 62 38 35 35 63 36 61 65 38 62 66 66 33 62 37 32 62 62 34 36 33 30 62 33 31 36 38 64 31 62 34 39 35 36 66 63 36 65 66 65 63 30 33 32 64 32 35 35 22 7d 76 ff", "module": "__init__", - "msecs": 632.8818798065186, + "msecs": 213.54293823242188, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5196.609258651733, + "relativeCreated": 5206.0346603393555, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(64): 35 64 34 66 61 62 30 66 66 33 63 31 33 35 35 35 65 30 64 32 35 36 61 32 33 61 37 65 33 61 36 66 63 39 66 38 32 31 37 33 32 30 63 39 32 39 63 34 66 39 35 30 38 32 38 34 32 61 63 36 22 7d c0 35" + "(64): 30 31 37 35 36 37 66 65 63 36 32 38 62 38 35 35 63 36 61 65 38 62 66 66 33 62 37 32 62 62 34 36 33 30 62 33 31 36 38 64 31 62 34 39 35 36 66 63 36 65 66 65 63 30 33 32 64 32 35 35 22 7d 76 ff" ], - "asctime": "2021-01-11 11:37:34,641", - "created": 1610361454.6410894, + "asctime": "2021-01-14 00:26:17,221", + "created": 1610580377.221831, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109599,26 +109546,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 35 64 34 66 61 62 30 66 66 33 63 31 33 35 35 35 65 30 64 32 35 36 61 32 33 61 37 65 33 61 36 66 63 39 66 38 32 31 37 33 32 30 63 39 32 39 63 34 66 39 35 30 38 32 38 34 32 61 63 36 22 7d c0 35", + "message": "comm-client: RX <- (64): 30 31 37 35 36 37 66 65 63 36 32 38 62 38 35 35 63 36 61 65 38 62 66 66 33 62 37 32 62 62 34 36 33 30 62 33 31 36 38 64 31 62 34 39 35 36 66 63 36 65 66 65 63 30 33 32 64 32 35 35 22 7d 76 ff", "module": "__init__", - "msecs": 641.0894393920898, + "msecs": 221.8310832977295, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5204.816818237305, + "relativeCreated": 5214.322805404663, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "comm-server:", - "(4): a1 15 3a 3e" + "(4): 5f 74 3a 3e" ], - "asctime": "2021-01-11 11:37:34,641", - "created": 1610361454.641494, + "asctime": "2021-01-14 00:26:17,222", + "created": 1610580377.222432, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109626,26 +109573,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): a1 15 3a 3e", + "message": "comm-server: TX -> (4): 5f 74 3a 3e", "module": "__init__", - "msecs": 641.4940357208252, + "msecs": 222.43189811706543, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5205.22141456604, + "relativeCreated": 5214.923620223999, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(4): a1 15 3a 3e" + "(4): 5f 74 3a 3e" ], - "asctime": "2021-01-11 11:37:34,642", - "created": 1610361454.6422029, + "asctime": "2021-01-14 00:26:17,223", + "created": 1610580377.2232003, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109653,17 +109600,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): a1 15 3a 3e", + "message": "comm-client: RX <- (4): 5f 74 3a 3e", "module": "__init__", - "msecs": 642.2028541564941, + "msecs": 223.20032119750977, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5205.930233001709, + "relativeCreated": 5215.692043304443, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109671,8 +109618,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,642", - "created": 1610361454.6423144, + "asctime": "2021-01-14 00:26:17,223", + "created": 1610580377.2233546, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109682,15 +109629,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 642.3144340515137, + "msecs": 223.35457801818848, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5206.0418128967285, + "relativeCreated": 5215.846300125122, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109699,8 +109646,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:34,642", - "created": 1610361454.6424053, + "asctime": "2021-01-14 00:26:17,223", + "created": 1610580377.2234776, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109710,24 +109657,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 642.4052715301514, + "msecs": 223.47760200500488, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5206.132650375366, + "relativeCreated": 5215.9693241119385, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "STP:", - "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 32 35 61 35 64 34 66 61 62 30 66 66 33 63 31 33 35 35 35 65 30 64 32 35 36 61 32 33 61 37 65 33 61 36 66 63 39 66 38 32 31 37 33 32 30 63 39 32 39 63 34 66 39 35 30 38 32 38 34 32 61 63 36 22 7d c0 35 a1 15" + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 30 30 31 37 35 36 37 66 65 63 36 32 38 62 38 35 35 63 36 61 65 38 62 66 66 33 62 37 32 62 62 34 36 33 30 62 33 31 36 38 64 31 62 34 39 35 36 66 63 36 65 66 65 63 30 33 32 64 32 35 35 22 7d 76 ff 5f 74" ], - "asctime": "2021-01-11 11:37:34,642", - "created": 1610361454.6426256, + "asctime": "2021-01-14 00:26:17,223", + "created": 1610580377.2237577, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109735,17 +109682,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 32 35 61 35 64 34 66 61 62 30 66 66 33 63 31 33 35 35 35 65 30 64 32 35 36 61 32 33 61 37 65 33 61 36 66 63 39 66 38 32 31 37 33 32 30 63 39 32 39 63 34 66 39 35 30 38 32 38 34 32 61 63 36 22 7d c0 35 a1 15", + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 30 30 31 37 35 36 37 66 65 63 36 32 38 62 38 35 35 63 36 61 65 38 62 66 66 33 62 37 32 62 62 34 36 33 30 62 33 31 36 38 64 31 62 34 39 35 36 66 63 36 65 66 65 63 30 33 32 64 32 35 35 22 7d 76 ff 5f 74", "module": "stp", - "msecs": 642.6255702972412, + "msecs": 223.75774383544922, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5206.352949142456, + "relativeCreated": 5216.249465942383, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109754,28 +109701,28 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "'f25a5d4fab0ff3c13555e0d256a23a7e3a6fc9f8217320c929c4f95082842ac6'" + "'1460017567fec628b855c6ae8bff3b72bb4630b3168d1b4956fc6efec032d255'" ], - "asctime": "2021-01-11 11:37:34,642", - "created": 1610361454.6429324, + "asctime": "2021-01-14 00:26:17,224", + "created": 1610580377.224084, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'f25a5d4fab0ff3c13555e0d256a23a7e3a6fc9f8217320c929c4f95082842ac6'\"", + "lineno": 450, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'1460017567fec628b855c6ae8bff3b72bb4630b3168d1b4956fc6efec032d255'\"", "module": "__init__", - "msecs": 642.9324150085449, + "msecs": 224.08390045166016, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5206.65979385376, + "relativeCreated": 5216.575622558594, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109783,26 +109730,26 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:34,643", - "created": 1610361454.6430879, + "asctime": "2021-01-14 00:26:17,224", + "created": 1610580377.2242477, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 643.0878639221191, + "msecs": 224.24769401550293, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5206.815242767334, + "relativeCreated": 5216.7394161224365, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -109811,37 +109758,37 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'a122b1d5c7e87e2127afb210aa6d298325fc3bd69d4aa493a7b8043830cf679649ad515d570a5b9f30df2acfdf4cd06ba35bb67b520c4e86ecb609c9da05ec25'" + "'f82396ff393988f31566f33fbdc3cbcccec0aeaea9178fa801d2231107ced1fc02c72699df0a181003df0d0e55140ec80c772b73bc3938bf17f2749e2f652997'" ], - "asctime": "2021-01-11 11:37:34,643", - "created": 1610361454.64329, + "asctime": "2021-01-14 00:26:17,224", + "created": 1610580377.2244844, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'a122b1d5c7e87e2127afb210aa6d298325fc3bd69d4aa493a7b8043830cf679649ad515d570a5b9f30df2acfdf4cd06ba35bb67b520c4e86ecb609c9da05ec25'\"", + "lineno": 450, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'f82396ff393988f31566f33fbdc3cbcccec0aeaea9178fa801d2231107ced1fc02c72699df0a181003df0d0e55140ec80c772b73bc3938bf17f2749e2f652997'\"", "module": "__init__", - "msecs": 643.2900428771973, + "msecs": 224.48444366455078, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5207.017421722412, + "relativeCreated": 5216.976165771484, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 31 32 32" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 38 32 33" ], - "asctime": "2021-01-11 11:37:34,644", - "created": 1610361454.6443098, + "asctime": "2021-01-14 00:26:17,225", + "created": 1610580377.2254581, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109849,26 +109796,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 31 32 32", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 38 32 33", "module": "__init__", - "msecs": 644.3097591400146, + "msecs": 225.45814514160156, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5208.0371379852295, + "relativeCreated": 5217.949867248535, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 31 32 32" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 38 32 33" ], - "asctime": "2021-01-11 11:37:34,652", - "created": 1610361454.6526787, + "asctime": "2021-01-14 00:26:17,233", + "created": 1610580377.2338188, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -109876,17 +109823,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 31 32 32", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 38 32 33", "module": "__init__", - "msecs": 652.6787281036377, + "msecs": 233.81876945495605, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5216.4061069488525, + "relativeCreated": 5226.31049156189, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -109894,8 +109841,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,652", - "created": 1610361454.6529443, + "asctime": "2021-01-14 00:26:17,234", + "created": 1610580377.2341213, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109905,15 +109852,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 652.9443264007568, + "msecs": 234.12132263183594, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5216.671705245972, + "relativeCreated": 5226.6130447387695, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -109922,8 +109869,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.6530693, + "asctime": "2021-01-14 00:26:17,234", + "created": 1610580377.234262, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109933,15 +109880,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 653.069257736206, + "msecs": 234.26198959350586, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5216.796636581421, + "relativeCreated": 5226.753711700439, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -109949,8 +109896,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.653216, + "asctime": "2021-01-14 00:26:17,234", + "created": 1610580377.234427, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109960,15 +109907,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 653.2158851623535, + "msecs": 234.42697525024414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5216.943264007568, + "relativeCreated": 5226.918697357178, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -109977,8 +109924,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.6533175, + "asctime": "2021-01-14 00:26:17,234", + "created": 1610580377.2345433, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -109988,15 +109935,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 653.3174514770508, + "msecs": 234.5433235168457, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.044830322266, + "relativeCreated": 5227.035045623779, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110004,8 +109951,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.65347, + "asctime": "2021-01-14 00:26:17,234", + "created": 1610580377.2347088, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110015,15 +109962,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 653.4700393676758, + "msecs": 234.7087860107422, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.197418212891, + "relativeCreated": 5227.200508117676, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110032,8 +109979,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.6535656, + "asctime": "2021-01-14 00:26:17,234", + "created": 1610580377.2348185, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110043,15 +109990,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 653.5656452178955, + "msecs": 234.8184585571289, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.29302406311, + "relativeCreated": 5227.3101806640625, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110059,8 +110006,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.6536975, + "asctime": "2021-01-14 00:26:17,234", + "created": 1610580377.234965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110070,15 +110017,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 653.6974906921387, + "msecs": 234.96508598327637, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.4248695373535, + "relativeCreated": 5227.45680809021, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110087,8 +110034,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.6537929, + "asctime": "2021-01-14 00:26:17,235", + "created": 1610580377.235072, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110098,15 +110045,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 653.7928581237793, + "msecs": 235.07189750671387, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.520236968994, + "relativeCreated": 5227.5636196136475, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110114,8 +110061,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,653", - "created": 1610361454.6539178, + "asctime": "2021-01-14 00:26:17,235", + "created": 1610580377.2352114, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110125,15 +110072,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 653.9177894592285, + "msecs": 235.21137237548828, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.645168304443, + "relativeCreated": 5227.703094482422, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110142,8 +110089,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,654", - "created": 1610361454.6540127, + "asctime": "2021-01-14 00:26:17,235", + "created": 1610580377.235317, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110153,24 +110100,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 654.0126800537109, + "msecs": 235.31699180603027, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.740058898926, + "relativeCreated": 5227.808713912964, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-client:", - "(64): 62 31 64 35 63 37 65 38 37 65 32 31 32 37 61 66 62 32 31 30 61 61 36 64 32 39 38 33 32 35 66 63 33 62 64 36 39 64 34 61 61 34 39 33 61 37 62 38 30 34 33 38 33 30 63 66 36 37 39 36 34 39 61 64" + "(64): 39 36 66 66 33 39 33 39 38 38 66 33 31 35 36 36 66 33 33 66 62 64 63 33 63 62 63 63 63 65 63 30 61 65 61 65 61 39 31 37 38 66 61 38 30 31 64 32 32 33 31 31 30 37 63 65 64 31 66 63 30 32 63 37" ], - "asctime": "2021-01-11 11:37:34,654", - "created": 1610361454.6542623, + "asctime": "2021-01-14 00:26:17,235", + "created": 1610580377.2355819, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110178,26 +110125,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 62 31 64 35 63 37 65 38 37 65 32 31 32 37 61 66 62 32 31 30 61 61 36 64 32 39 38 33 32 35 66 63 33 62 64 36 39 64 34 61 61 34 39 33 61 37 62 38 30 34 33 38 33 30 63 66 36 37 39 36 34 39 61 64", + "message": "comm-client: TX -> (64): 39 36 66 66 33 39 33 39 38 38 66 33 31 35 36 36 66 33 33 66 62 64 63 33 63 62 63 63 63 65 63 30 61 65 61 65 61 39 31 37 38 66 61 38 30 31 64 32 32 33 31 31 30 37 63 65 64 31 66 63 30 32 63 37", "module": "__init__", - "msecs": 654.2623043060303, + "msecs": 235.5818748474121, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5217.989683151245, + "relativeCreated": 5228.073596954346, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(64): 62 31 64 35 63 37 65 38 37 65 32 31 32 37 61 66 62 32 31 30 61 61 36 64 32 39 38 33 32 35 66 63 33 62 64 36 39 64 34 61 61 34 39 33 61 37 62 38 30 34 33 38 33 30 63 66 36 37 39 36 34 39 61 64" + "(64): 39 36 66 66 33 39 33 39 38 38 66 33 31 35 36 36 66 33 33 66 62 64 63 33 63 62 63 63 63 65 63 30 61 65 61 65 61 39 31 37 38 66 61 38 30 31 64 32 32 33 31 31 30 37 63 65 64 31 66 63 30 32 63 37" ], - "asctime": "2021-01-11 11:37:34,662", - "created": 1610361454.6625805, + "asctime": "2021-01-14 00:26:17,243", + "created": 1610580377.2438953, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110205,26 +110152,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 62 31 64 35 63 37 65 38 37 65 32 31 32 37 61 66 62 32 31 30 61 61 36 64 32 39 38 33 32 35 66 63 33 62 64 36 39 64 34 61 61 34 39 33 61 37 62 38 30 34 33 38 33 30 63 66 36 37 39 36 34 39 61 64", + "message": "comm-server: RX <- (64): 39 36 66 66 33 39 33 39 38 38 66 33 31 35 36 36 66 33 33 66 62 64 63 33 63 62 63 63 63 65 63 30 61 65 61 65 61 39 31 37 38 66 61 38 30 31 64 32 32 33 31 31 30 37 63 65 64 31 66 63 30 32 63 37", "module": "__init__", - "msecs": 662.5804901123047, + "msecs": 243.8952922821045, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5226.3078689575195, + "relativeCreated": 5236.387014389038, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-client:", - "(64): 35 31 35 64 35 37 30 61 35 62 39 66 33 30 64 66 32 61 63 66 64 66 34 63 64 30 36 62 61 33 35 62 62 36 37 62 35 32 30 63 34 65 38 36 65 63 62 36 30 39 63 39 64 61 30 35 65 63 32 35 22 7d 60 62" + "(64): 32 36 39 39 64 66 30 61 31 38 31 30 30 33 64 66 30 64 30 65 35 35 31 34 30 65 63 38 30 63 37 37 32 62 37 33 62 63 33 39 33 38 62 66 31 37 66 32 37 34 39 65 32 66 36 35 32 39 39 37 22 7d ba 69" ], - "asctime": "2021-01-11 11:37:34,663", - "created": 1610361454.6631439, + "asctime": "2021-01-14 00:26:17,244", + "created": 1610580377.2445416, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110232,26 +110179,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 35 31 35 64 35 37 30 61 35 62 39 66 33 30 64 66 32 61 63 66 64 66 34 63 64 30 36 62 61 33 35 62 62 36 37 62 35 32 30 63 34 65 38 36 65 63 62 36 30 39 63 39 64 61 30 35 65 63 32 35 22 7d 60 62", + "message": "comm-client: TX -> (64): 32 36 39 39 64 66 30 61 31 38 31 30 30 33 64 66 30 64 30 65 35 35 31 34 30 65 63 38 30 63 37 37 32 62 37 33 62 63 33 39 33 38 62 66 31 37 66 32 37 34 39 65 32 66 36 35 32 39 39 37 22 7d ba 69", "module": "__init__", - "msecs": 663.1438732147217, + "msecs": 244.54164505004883, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5226.8712520599365, + "relativeCreated": 5237.033367156982, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(64): 35 31 35 64 35 37 30 61 35 62 39 66 33 30 64 66 32 61 63 66 64 66 34 63 64 30 36 62 61 33 35 62 62 36 37 62 35 32 30 63 34 65 38 36 65 63 62 36 30 39 63 39 64 61 30 35 65 63 32 35 22 7d 60 62" + "(64): 32 36 39 39 64 66 30 61 31 38 31 30 30 33 64 66 30 64 30 65 35 35 31 34 30 65 63 38 30 63 37 37 32 62 37 33 62 63 33 39 33 38 62 66 31 37 66 32 37 34 39 65 32 66 36 35 32 39 39 37 22 7d ba 69" ], - "asctime": "2021-01-11 11:37:34,671", - "created": 1610361454.6714814, + "asctime": "2021-01-14 00:26:17,252", + "created": 1610580377.2528856, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110259,26 +110206,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 35 31 35 64 35 37 30 61 35 62 39 66 33 30 64 66 32 61 63 66 64 66 34 63 64 30 36 62 61 33 35 62 62 36 37 62 35 32 30 63 34 65 38 36 65 63 62 36 30 39 63 39 64 61 30 35 65 63 32 35 22 7d 60 62", + "message": "comm-server: RX <- (64): 32 36 39 39 64 66 30 61 31 38 31 30 30 33 64 66 30 64 30 65 35 35 31 34 30 65 63 38 30 63 37 37 32 62 37 33 62 63 33 39 33 38 62 66 31 37 66 32 37 34 39 65 32 66 36 35 32 39 39 37 22 7d ba 69", "module": "__init__", - "msecs": 671.4813709259033, + "msecs": 252.8855800628662, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5235.208749771118, + "relativeCreated": 5245.3773021698, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-client:", - "(4): 1e 87 3a 3e" + "(4): b5 c1 3a 3e" ], - "asctime": "2021-01-11 11:37:34,671", - "created": 1610361454.6719503, + "asctime": "2021-01-14 00:26:17,253", + "created": 1610580377.2535832, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110286,26 +110233,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 1e 87 3a 3e", + "message": "comm-client: TX -> (4): b5 c1 3a 3e", "module": "__init__", - "msecs": 671.9503402709961, + "msecs": 253.58319282531738, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5235.677719116211, + "relativeCreated": 5246.074914932251, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "comm-server:", - "(4): 1e 87 3a 3e" + "(4): b5 c1 3a 3e" ], - "asctime": "2021-01-11 11:37:34,672", - "created": 1610361454.672718, + "asctime": "2021-01-14 00:26:17,254", + "created": 1610580377.2543933, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110313,17 +110260,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 1e 87 3a 3e", + "message": "comm-server: RX <- (4): b5 c1 3a 3e", "module": "__init__", - "msecs": 672.7180480957031, + "msecs": 254.3933391571045, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5236.445426940918, + "relativeCreated": 5246.885061264038, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110331,8 +110278,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,672", - "created": 1610361454.6729202, + "asctime": "2021-01-14 00:26:17,254", + "created": 1610580377.2545936, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110342,15 +110289,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 672.9202270507812, + "msecs": 254.5936107635498, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5236.647605895996, + "relativeCreated": 5247.085332870483, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110359,8 +110306,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:34,673", - "created": 1610361454.673043, + "asctime": "2021-01-14 00:26:17,254", + "created": 1610580377.2547524, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110370,24 +110317,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 673.0430126190186, + "msecs": 254.75239753723145, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5236.770391464233, + "relativeCreated": 5247.244119644165, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { "args": [ "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 61 31 32 32 62 31 64 35 63 37 65 38 37 65 32 31 32 37 61 66 62 32 31 30 61 61 36 64 32 39 38 33 32 35 66 63 33 62 64 36 39 64 34 61 61 34 39 33 61 37 62 38 30 34 33 38 33 30 63 66 36 37 39 36 34 39 61 64 35 31 35 64 35 37 30 61 35 62 39 66 33 30 64 66 32 61 63 66 64 66 34 63 64 30 36 62 61 33 35 62 62 36 37 62 35 32 30 63 34 65 38 36 65 63 62 36 30 39 63 39 64 61 30 35 65 63 32 35 22 7d 60 62 1e 87" + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 38 32 33 39 36 66 66 33 39 33 39 38 38 66 33 31 35 36 36 66 33 33 66 62 64 63 33 63 62 63 63 63 65 63 30 61 65 61 65 61 39 31 37 38 66 61 38 30 31 64 32 32 33 31 31 30 37 63 65 64 31 66 63 30 32 63 37 32 36 39 39 64 66 30 61 31 38 31 30 30 33 64 66 30 64 30 65 35 35 31 34 30 65 63 38 30 63 37 37 32 62 37 33 62 63 33 39 33 38 62 66 31 37 66 32 37 34 39 65 32 66 36 35 32 39 39 37 22 7d ba 69 b5 c1" ], - "asctime": "2021-01-11 11:37:34,673", - "created": 1610361454.6733816, + "asctime": "2021-01-14 00:26:17,255", + "created": 1610580377.2555377, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110395,17 +110342,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 61 31 32 32 62 31 64 35 63 37 65 38 37 65 32 31 32 37 61 66 62 32 31 30 61 61 36 64 32 39 38 33 32 35 66 63 33 62 64 36 39 64 34 61 61 34 39 33 61 37 62 38 30 34 33 38 33 30 63 66 36 37 39 36 34 39 61 64 35 31 35 64 35 37 30 61 35 62 39 66 33 30 64 66 32 61 63 66 64 66 34 63 64 30 36 62 61 33 35 62 62 36 37 62 35 32 30 63 34 65 38 36 65 63 62 36 30 39 63 39 64 61 30 35 65 63 32 35 22 7d 60 62 1e 87", + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 38 32 33 39 36 66 66 33 39 33 39 38 38 66 33 31 35 36 36 66 33 33 66 62 64 63 33 63 62 63 63 63 65 63 30 61 65 61 65 61 39 31 37 38 66 61 38 30 31 64 32 32 33 31 31 30 37 63 65 64 31 66 63 30 32 63 37 32 36 39 39 64 66 30 61 31 38 31 30 30 33 64 66 30 64 30 65 35 35 31 34 30 65 63 38 30 63 37 37 32 62 37 33 62 63 33 39 33 38 62 66 31 37 66 32 37 34 39 65 32 66 36 35 32 39 39 37 22 7d ba 69 b5 c1", "module": "stp", - "msecs": 673.3815670013428, + "msecs": 255.537748336792, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5237.108945846558, + "relativeCreated": 5248.029470443726, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110414,28 +110361,28 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "'a122b1d5c7e87e2127afb210aa6d298325fc3bd69d4aa493a7b8043830cf679649ad515d570a5b9f30df2acfdf4cd06ba35bb67b520c4e86ecb609c9da05ec25'" + "'f82396ff393988f31566f33fbdc3cbcccec0aeaea9178fa801d2231107ced1fc02c72699df0a181003df0d0e55140ec80c772b73bc3938bf17f2749e2f652997'" ], - "asctime": "2021-01-11 11:37:34,673", - "created": 1610361454.673675, + "asctime": "2021-01-14 00:26:17,256", + "created": 1610580377.2562041, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'a122b1d5c7e87e2127afb210aa6d298325fc3bd69d4aa493a7b8043830cf679649ad515d570a5b9f30df2acfdf4cd06ba35bb67b520c4e86ecb609c9da05ec25'\"", + "lineno": 450, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'f82396ff393988f31566f33fbdc3cbcccec0aeaea9178fa801d2231107ced1fc02c72699df0a181003df0d0e55140ec80c772b73bc3938bf17f2749e2f652997'\"", "module": "__init__", - "msecs": 673.6750602722168, + "msecs": 256.20412826538086, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5237.402439117432, + "relativeCreated": 5248.695850372314, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110443,26 +110390,26 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:34,673", - "created": 1610361454.6738122, + "asctime": "2021-01-14 00:26:17,256", + "created": 1610580377.256531, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 673.8121509552002, + "msecs": 256.5310001373291, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5237.539529800415, + "relativeCreated": 5249.022722244263, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110473,26 +110420,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:34,674", - "created": 1610361454.6740162, + "asctime": "2021-01-14 00:26:17,256", + "created": 1610580377.2568755, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 674.0162372589111, + "msecs": 256.87551498413086, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5237.743616104126, + "relativeCreated": 5249.367237091064, "stack_info": null, - "thread": 139977002313472, + "thread": 140582047438592, "threadName": "Thread-7" }, { @@ -110500,8 +110447,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:34,674", - "created": 1610361454.6745903, + "asctime": "2021-01-14 00:26:17,257", + "created": 1610580377.257571, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110511,15 +110458,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 674.5903491973877, + "msecs": 257.5709819793701, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5238.3177280426025, + "relativeCreated": 5250.062704086304, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110527,8 +110474,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:34,683", - "created": 1610361454.6830156, + "asctime": "2021-01-14 00:26:17,265", + "created": 1610580377.2659354, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110538,15 +110485,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 683.0155849456787, + "msecs": 265.93542098999023, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5246.742963790894, + "relativeCreated": 5258.427143096924, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110554,8 +110501,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,683", - "created": 1610361454.6832776, + "asctime": "2021-01-14 00:26:17,266", + "created": 1610580377.26643, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110565,15 +110512,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 683.2776069641113, + "msecs": 266.4299011230469, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5247.004985809326, + "relativeCreated": 5258.9216232299805, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110582,8 +110529,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:34,683", - "created": 1610361454.6834242, + "asctime": "2021-01-14 00:26:17,266", + "created": 1610580377.2666094, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110593,15 +110540,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 683.4242343902588, + "msecs": 266.60943031311035, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5247.151613235474, + "relativeCreated": 5259.101152420044, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110609,8 +110556,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,683", - "created": 1610361454.6836038, + "asctime": "2021-01-14 00:26:17,266", + "created": 1610580377.266782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110620,15 +110567,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 683.6037635803223, + "msecs": 266.7820453643799, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5247.331142425537, + "relativeCreated": 5259.2737674713135, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110637,8 +110584,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,683", - "created": 1610361454.6837564, + "asctime": "2021-01-14 00:26:17,266", + "created": 1610580377.2669144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110648,15 +110595,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 683.7563514709473, + "msecs": 266.91436767578125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5247.483730316162, + "relativeCreated": 5259.406089782715, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110664,8 +110611,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,683", - "created": 1610361454.6839378, + "asctime": "2021-01-14 00:26:17,267", + "created": 1610580377.2671385, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110675,15 +110622,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 683.9377880096436, + "msecs": 267.1384811401367, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5247.665166854858, + "relativeCreated": 5259.63020324707, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110692,8 +110639,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,684", - "created": 1610361454.684056, + "asctime": "2021-01-14 00:26:17,267", + "created": 1610580377.2672887, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110703,15 +110650,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 684.0560436248779, + "msecs": 267.2886848449707, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5247.783422470093, + "relativeCreated": 5259.780406951904, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110719,8 +110666,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,684", - "created": 1610361454.684218, + "asctime": "2021-01-14 00:26:17,267", + "created": 1610580377.2674625, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110730,15 +110677,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 684.2179298400879, + "msecs": 267.46249198913574, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5247.945308685303, + "relativeCreated": 5259.954214096069, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110747,8 +110694,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,684", - "created": 1610361454.684334, + "asctime": "2021-01-14 00:26:17,267", + "created": 1610580377.2676032, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110758,15 +110705,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 684.3340396881104, + "msecs": 267.60315895080566, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5248.061418533325, + "relativeCreated": 5260.094881057739, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110774,8 +110721,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,684", - "created": 1610361454.684489, + "asctime": "2021-01-14 00:26:17,267", + "created": 1610580377.2677777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110785,15 +110732,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 684.4890117645264, + "msecs": 267.777681350708, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5248.216390609741, + "relativeCreated": 5260.269403457642, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110802,8 +110749,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,684", - "created": 1610361454.6846058, + "asctime": "2021-01-14 00:26:17,267", + "created": 1610580377.267922, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110813,15 +110760,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 684.6058368682861, + "msecs": 267.92192459106445, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5248.333215713501, + "relativeCreated": 5260.413646697998, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110829,8 +110776,8 @@ "comm-server:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:34,684", - "created": 1610361454.6848564, + "asctime": "2021-01-14 00:26:17,268", + "created": 1610580377.2681987, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110840,15 +110787,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 684.8564147949219, + "msecs": 268.19872856140137, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5248.583793640137, + "relativeCreated": 5260.690450668335, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110856,8 +110803,8 @@ "comm-client:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:34,685", - "created": 1610361454.6859667, + "asctime": "2021-01-14 00:26:17,269", + "created": 1610580377.2692757, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -110867,15 +110814,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 685.9667301177979, + "msecs": 269.2756652832031, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5249.694108963013, + "relativeCreated": 5261.767387390137, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110883,8 +110830,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,686", - "created": 1610361454.6863236, + "asctime": "2021-01-14 00:26:17,269", + "created": 1610580377.269584, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110894,15 +110841,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 686.3236427307129, + "msecs": 269.58394050598145, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5250.051021575928, + "relativeCreated": 5262.075662612915, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110911,8 +110858,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:34,686", - "created": 1610361454.6864967, + "asctime": "2021-01-14 00:26:17,269", + "created": 1610580377.269762, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110922,15 +110869,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 686.4967346191406, + "msecs": 269.7620391845703, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5250.2241134643555, + "relativeCreated": 5262.253761291504, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110938,8 +110885,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" ], - "asctime": "2021-01-11 11:37:34,686", - "created": 1610361454.6867573, + "asctime": "2021-01-14 00:26:17,269", + "created": 1610580377.2699966, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -110949,15 +110896,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", "module": "stp", - "msecs": 686.7573261260986, + "msecs": 269.99664306640625, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5250.4847049713135, + "relativeCreated": 5262.48836517334, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110968,26 +110915,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:34,687", - "created": 1610361454.6871486, + "asctime": "2021-01-14 00:26:17,270", + "created": 1610580377.270494, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 687.1485710144043, + "msecs": 270.4939842224121, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5250.875949859619, + "relativeCreated": 5262.985706329346, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { @@ -110995,74 +110942,74 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:34,687", - "created": 1610361454.6873343, + "asctime": "2021-01-14 00:26:17,270", + "created": 1610580377.2707713, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 687.3342990875244, + "msecs": 270.7712650299072, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5251.061677932739, + "relativeCreated": 5263.262987136841, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:34,687", - "created": 1610361454.6874986, + "asctime": "2021-01-14 00:26:17,270", + "created": 1610580377.2709365, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 687.4985694885254, + "msecs": 270.9364891052246, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5251.22594833374, + "relativeCreated": 5263.428211212158, "stack_info": null, - "thread": 139976993920768, + "thread": 140582039045888, "threadName": "Thread-8" } ], - "msecs": 937.4611377716064, + "msecs": 518.9914703369141, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5501.188516616821, + "relativeCreated": 5511.483192443848, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.24996256828308105 + "time_consumption": 0.24805498123168945 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:34,938", - "created": 1610361454.9383667, + "asctime": "2021-01-14 00:26:17,519", + "created": 1610580377.5199466, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111079,8 +111026,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:34,938", - "created": 1610361454.9380322, + "asctime": "2021-01-14 00:26:17,519", + "created": 1610580377.519627, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111090,15 +111037,15 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 938.0321502685547, + "msecs": 519.6270942687988, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5501.7595291137695, + "relativeCreated": 5512.118816375732, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111107,8 +111054,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:34,938", - "created": 1610361454.938224, + "asctime": "2021-01-14 00:26:17,519", + "created": 1610580377.5197892, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111118,37 +111065,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 938.2240772247314, + "msecs": 519.7892189025879, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5501.951456069946, + "relativeCreated": 5512.2809410095215, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 938.3666515350342, + "msecs": 519.9465751647949, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5502.094030380249, + "relativeCreated": 5512.4382972717285, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014257431030273438 + "time_consumption": 0.00015735626220703125 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:34,938", - "created": 1610361454.9388297, + "asctime": "2021-01-14 00:26:17,520", + "created": 1610580377.5204225, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111165,8 +111112,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:34,938", - "created": 1610361454.9385743, + "asctime": "2021-01-14 00:26:17,520", + "created": 1610580377.5201623, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111176,15 +111123,15 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 938.5743141174316, + "msecs": 520.1623439788818, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5502.3016929626465, + "relativeCreated": 5512.654066085815, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111193,8 +111140,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:34,938", - "created": 1610361454.938699, + "asctime": "2021-01-14 00:26:17,520", + "created": 1610580377.5202913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111204,41 +111151,41 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 938.6990070343018, + "msecs": 520.2913284301758, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5502.426385879517, + "relativeCreated": 5512.783050537109, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 938.8296604156494, + "msecs": 520.4224586486816, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5502.557039260864, + "relativeCreated": 5512.914180755615, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013065338134765625 + "time_consumption": 0.00013113021850585938 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 2.7034590244293213, - "time_finished": "2021-01-11 11:37:34,938", - "time_start": "2021-01-11 11:37:32,235" + "time_consumption": 2.7098820209503174, + "time_finished": "2021-01-14 00:26:17,520", + "time_start": "2021-01-14 00:26:14,810" }, "_7izDUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5510361, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1223571, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -111249,21 +111196,21 @@ "message": "_7izDUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 551.0361194610596, + "msecs": 122.35713005065918, "msg": "_7izDUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.76349830627441, + "relativeCreated": 114.84885215759277, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5511081, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1224258, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -111274,15 +111221,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 551.1081218719482, + "msecs": 122.42579460144043, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.83550071716309, + "relativeCreated": 114.91751670837402, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -111290,8 +111237,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.551233, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.122555, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111308,8 +111255,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.551165, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1224825, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111319,15 +111266,15 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 551.1651039123535, + "msecs": 122.4825382232666, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.89248275756836, + "relativeCreated": 114.9742603302002, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111335,8 +111282,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5512006, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1225224, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111346,36 +111293,36 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 551.2006282806396, + "msecs": 122.52235412597656, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.92800712585449, + "relativeCreated": 115.01407623291016, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 551.2330532073975, + "msecs": 122.55501747131348, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.9604320526123, + "relativeCreated": 115.04673957824707, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.24249267578125e-05 + "time_consumption": 3.266334533691406e-05 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.551292, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1226146, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -111386,15 +111333,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 551.2919425964355, + "msecs": 122.61462211608887, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.01932144165039, + "relativeCreated": 115.10634422302246, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -111402,8 +111349,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.551417, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1227393, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111420,8 +111367,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5513456, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1226695, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111431,15 +111378,15 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 551.3455867767334, + "msecs": 122.66945838928223, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.07296562194824, + "relativeCreated": 115.16118049621582, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111447,8 +111394,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5513802, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1227038, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111458,37 +111405,37 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 551.3801574707031, + "msecs": 122.70379066467285, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.10753631591797, + "relativeCreated": 115.19551277160645, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 551.4171123504639, + "msecs": 122.73931503295898, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.14449119567871, + "relativeCreated": 115.23103713989258, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.695487976074219e-05 + "time_consumption": 3.552436828613281e-05 }, { "args": [ "'SID'", "" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.551542, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1228678, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111505,8 +111452,8 @@ "'SID'", "" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.5514739, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1227984, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111516,15 +111463,15 @@ "lineno": 22, "message": "Result (Content in message object for service_id): 'SID' ()", "module": "test", - "msecs": 551.47385597229, + "msecs": 122.79844284057617, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.20123481750488, + "relativeCreated": 115.29016494750977, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111533,8 +111480,8 @@ "'SID'", "" ], - "asctime": "2021-01-11 11:37:29,551", - "created": 1610361449.551508, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1228333, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111544,41 +111491,41 @@ "lineno": 26, "message": "Expectation (Content in message object for service_id): result = 'SID' ()", "module": "test", - "msecs": 551.5079498291016, + "msecs": 122.833251953125, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.2353286743164, + "relativeCreated": 115.3249740600586, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 551.5420436859131, + "msecs": 122.86782264709473, "msg": "Content in message object for service_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.26942253112793, + "relativeCreated": 115.35954475402832, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.409385681152344e-05 + "time_consumption": 3.457069396972656e-05 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0005059242248535156, - "time_finished": "2021-01-11 11:37:29,551", - "time_start": "2021-01-11 11:37:29,551" + "time_consumption": 0.0005106925964355469, + "time_finished": "2021-01-14 00:26:12,122", + "time_start": "2021-01-14 00:26:12,122" }, "_AlIUwEzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5522392, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.123565, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -111589,21 +111536,21 @@ "message": "_AlIUwEzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 552.239179611206, + "msecs": 123.5649585723877, "msg": "_AlIUwEzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 115.9665584564209, + "relativeCreated": 116.05668067932129, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5523024, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1236281, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -111614,15 +111561,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 552.302360534668, + "msecs": 123.62813949584961, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.02973937988281, + "relativeCreated": 116.1198616027832, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -111630,8 +111577,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5524318, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1237533, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111648,8 +111595,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5523598, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1236856, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111659,15 +111606,15 @@ "lineno": 22, "message": "Result (data is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 552.3598194122314, + "msecs": 123.68559837341309, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.08719825744629, + "relativeCreated": 116.17732048034668, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111675,8 +111622,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5523944, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1237206, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111686,36 +111633,36 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 552.3943901062012, + "msecs": 123.72064590454102, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.12176895141602, + "relativeCreated": 116.21236801147461, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 552.4318218231201, + "msecs": 123.75330924987793, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.15920066833496, + "relativeCreated": 116.24503135681152, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.743171691894531e-05 + "time_consumption": 3.266334533691406e-05 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5524905, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1238155, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -111726,15 +111673,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 552.4904727935791, + "msecs": 123.81553649902344, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.21785163879395, + "relativeCreated": 116.30725860595703, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -111742,8 +111689,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.552611, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1239374, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111760,8 +111707,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.552546, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1238716, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111771,15 +111718,15 @@ "lineno": 22, "message": "Result (data is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 552.5460243225098, + "msecs": 123.8715648651123, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.27340316772461, + "relativeCreated": 116.3632869720459, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111787,8 +111734,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5525796, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.1239052, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111798,37 +111745,37 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 552.5796413421631, + "msecs": 123.90518188476562, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.30702018737793, + "relativeCreated": 116.39690399169922, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 552.6111125946045, + "msecs": 123.93736839294434, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.33849143981934, + "relativeCreated": 116.42909049987793, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.147125244140625e-05 + "time_consumption": 3.218650817871094e-05 }, { "args": [ "'D'", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.552734, + "asctime": "2021-01-14 00:26:12,124", + "created": 1610580372.1240613, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111845,8 +111792,8 @@ "'D'", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5526667, + "asctime": "2021-01-14 00:26:12,123", + "created": 1610580372.123993, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111856,15 +111803,15 @@ "lineno": 22, "message": "Result (Content in message object for data): 'D' ()", "module": "test", - "msecs": 552.6666641235352, + "msecs": 123.992919921875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.39404296875, + "relativeCreated": 116.4846420288086, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -111873,8 +111820,8 @@ "'D'", "" ], - "asctime": "2021-01-11 11:37:29,552", - "created": 1610361449.5527, + "asctime": "2021-01-14 00:26:12,124", + "created": 1610580372.1240275, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -111884,41 +111831,41 @@ "lineno": 26, "message": "Expectation (Content in message object for data): result = 'D' ()", "module": "test", - "msecs": 552.7000427246094, + "msecs": 124.02749061584473, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.42742156982422, + "relativeCreated": 116.51921272277832, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 552.7338981628418, + "msecs": 124.06134605407715, "msg": "Content in message object for data is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 116.46127700805664, + "relativeCreated": 116.55306816101074, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 3.3855438232421875e-05 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0004947185516357422, - "time_finished": "2021-01-11 11:37:29,552", - "time_start": "2021-01-11 11:37:29,552" + "time_consumption": 0.0004963874816894531, + "time_finished": "2021-01-14 00:26:12,124", + "time_start": "2021-01-14 00:26:12,123" }, "_CZeooE0YEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:36,915", - "created": 1610361456.915855, + "asctime": "2021-01-14 00:26:19,494", + "created": 1610580379.4944527, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -111929,19 +111876,19 @@ "message": "_CZeooE0YEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 915.8549308776855, + "msecs": 494.45271492004395, "msg": "_CZeooE0YEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7479.5823097229, + "relativeCreated": 7486.9444370269775, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.9245584, + "asctime": "2021-01-14 00:26:19,503", + "created": 1610580379.5034735, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -111956,8 +111903,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:36,916", - "created": 1610361456.9168122, + "asctime": "2021-01-14 00:26:19,495", + "created": 1610580379.4956055, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -111967,23 +111914,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 916.8121814727783, + "msecs": 495.60546875, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7480.539560317993, + "relativeCreated": 7488.097190856934, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:36,917", - "created": 1610361456.9176989, + "asctime": "2021-01-14 00:26:19,496", + "created": 1610580379.4965055, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -111993,23 +111940,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 917.698860168457, + "msecs": 496.5054988861084, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7481.426239013672, + "relativeCreated": 7488.997220993042, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:36,917", - "created": 1610361456.9179525, + "asctime": "2021-01-14 00:26:19,496", + "created": 1610580379.4967341, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112019,41 +111966,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 917.9525375366211, + "msecs": 496.7341423034668, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7481.679916381836, + "relativeCreated": 7489.2258644104, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:36,918", - "created": 1610361456.9182806, + "asctime": "2021-01-14 00:26:19,497", + "created": 1610580379.497065, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 918.2806015014648, + "msecs": 497.06506729125977, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7482.00798034668, + "relativeCreated": 7489.556789398193, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112062,26 +112009,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:36,918", - "created": 1610361456.9184594, + "asctime": "2021-01-14 00:26:19,497", + "created": 1610580379.4972756, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 918.459415435791, + "msecs": 497.27559089660645, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7482.186794281006, + "relativeCreated": 7489.76731300354, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112089,26 +112036,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:36,918", - "created": 1610361456.9186912, + "asctime": "2021-01-14 00:26:19,497", + "created": 1610580379.4975128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 918.6911582946777, + "msecs": 497.5128173828125, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7482.418537139893, + "relativeCreated": 7490.004539489746, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112116,26 +112063,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:36,918", - "created": 1610361456.918847, + "asctime": "2021-01-14 00:26:19,497", + "created": 1610580379.4976737, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 918.8470840454102, + "msecs": 497.67374992370605, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7482.574462890625, + "relativeCreated": 7490.16547203064, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112143,26 +112090,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:36,918", - "created": 1610361456.9189909, + "asctime": "2021-01-14 00:26:19,497", + "created": 1610580379.497821, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 918.9908504486084, + "msecs": 497.8210926055908, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7482.718229293823, + "relativeCreated": 7490.312814712524, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112170,26 +112117,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:36,919", - "created": 1610361456.9191296, + "asctime": "2021-01-14 00:26:19,497", + "created": 1610580379.4979634, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 919.1296100616455, + "msecs": 497.96342849731445, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7482.85698890686, + "relativeCreated": 7490.455150604248, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112199,8 +112146,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:36,919", - "created": 1610361456.919282, + "asctime": "2021-01-14 00:26:19,498", + "created": 1610580379.498125, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112210,15 +112157,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 919.2819595336914, + "msecs": 498.1250762939453, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7483.009338378906, + "relativeCreated": 7490.616798400879, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112228,8 +112175,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:36,919", - "created": 1610361456.919439, + "asctime": "2021-01-14 00:26:19,498", + "created": 1610580379.498292, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112239,15 +112186,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 919.4390773773193, + "msecs": 498.2919692993164, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7483.166456222534, + "relativeCreated": 7490.78369140625, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112257,8 +112204,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:36,919", - "created": 1610361456.919591, + "asctime": "2021-01-14 00:26:19,498", + "created": 1610580379.4984517, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112268,15 +112215,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 919.590950012207, + "msecs": 498.45170974731445, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7483.318328857422, + "relativeCreated": 7490.943431854248, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112286,8 +112233,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:36,919", - "created": 1610361456.9197404, + "asctime": "2021-01-14 00:26:19,498", + "created": 1610580379.4986055, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112297,41 +112244,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 919.7404384613037, + "msecs": 498.60548973083496, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7483.467817306519, + "relativeCreated": 7491.097211837769, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:36,919", - "created": 1610361456.919873, + "asctime": "2021-01-14 00:26:19,498", + "created": 1610580379.4987423, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 919.8729991912842, + "msecs": 498.74234199523926, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7483.600378036499, + "relativeCreated": 7491.234064102173, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112340,26 +112287,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:36,920", - "created": 1610361456.9200225, + "asctime": "2021-01-14 00:26:19,498", + "created": 1610580379.498896, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 920.0224876403809, + "msecs": 498.89588356018066, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7483.749866485596, + "relativeCreated": 7491.387605667114, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112367,26 +112314,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:36,920", - "created": 1610361456.9201832, + "asctime": "2021-01-14 00:26:19,499", + "created": 1610580379.499062, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 920.1831817626953, + "msecs": 499.06206130981445, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7483.91056060791, + "relativeCreated": 7491.553783416748, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112394,26 +112341,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:36,920", - "created": 1610361456.9203362, + "asctime": "2021-01-14 00:26:19,499", + "created": 1610580379.499221, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 920.3362464904785, + "msecs": 499.2210865020752, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7484.063625335693, + "relativeCreated": 7491.712808609009, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112423,8 +112370,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:36,920", - "created": 1610361456.9204836, + "asctime": "2021-01-14 00:26:19,499", + "created": 1610580379.499375, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112434,15 +112381,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 920.4835891723633, + "msecs": 499.3751049041748, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7484.210968017578, + "relativeCreated": 7491.866827011108, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112452,8 +112399,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:36,920", - "created": 1610361456.920635, + "asctime": "2021-01-14 00:26:19,499", + "created": 1610580379.4995322, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112463,15 +112410,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 920.6349849700928, + "msecs": 499.53222274780273, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7484.362363815308, + "relativeCreated": 7492.023944854736, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112480,26 +112427,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:36,920", - "created": 1610361456.920808, + "asctime": "2021-01-14 00:26:19,499", + "created": 1610580379.4996803, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 920.8080768585205, + "msecs": 499.6802806854248, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7484.535455703735, + "relativeCreated": 7492.172002792358, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112508,26 +112455,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:36,920", - "created": 1610361456.9209738, + "asctime": "2021-01-14 00:26:19,499", + "created": 1610580379.499821, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 920.9737777709961, + "msecs": 499.8209476470947, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7484.701156616211, + "relativeCreated": 7492.312669754028, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112536,78 +112483,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:36,921", - "created": 1610361456.9211113, + "asctime": "2021-01-14 00:26:19,499", + "created": 1610580379.499961, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 921.1113452911377, + "msecs": 499.96089935302734, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7484.8387241363525, + "relativeCreated": 7492.452621459961, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:36,921", - "created": 1610361456.9212484, + "asctime": "2021-01-14 00:26:19,500", + "created": 1610580379.5001276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 921.2484359741211, + "msecs": 500.12755393981934, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7484.975814819336, + "relativeCreated": 7492.619276046753, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:36,921", - "created": 1610361456.9215226, + "asctime": "2021-01-14 00:26:19,500", + "created": 1610580379.5004117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 921.5226173400879, + "msecs": 500.4117488861084, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7485.249996185303, + "relativeCreated": 7492.903470993042, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112616,26 +112563,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:36,921", - "created": 1610361456.921674, + "asctime": "2021-01-14 00:26:19,500", + "created": 1610580379.5005682, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 921.6740131378174, + "msecs": 500.568151473999, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7485.401391983032, + "relativeCreated": 7493.059873580933, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112643,26 +112590,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:36,921", - "created": 1610361456.9218805, + "asctime": "2021-01-14 00:26:19,500", + "created": 1610580379.500765, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 921.8804836273193, + "msecs": 500.7650852203369, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7485.607862472534, + "relativeCreated": 7493.2568073272705, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112670,26 +112617,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:36,922", - "created": 1610361456.922034, + "asctime": "2021-01-14 00:26:19,500", + "created": 1610580379.5009165, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 922.0340251922607, + "msecs": 500.9164810180664, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7485.761404037476, + "relativeCreated": 7493.408203125, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112697,26 +112644,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:36,922", - "created": 1610361456.9221954, + "asctime": "2021-01-14 00:26:19,501", + "created": 1610580379.5010722, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 922.1954345703125, + "msecs": 501.0721683502197, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7485.922813415527, + "relativeCreated": 7493.563890457153, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112724,26 +112671,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:36,922", - "created": 1610361456.9223342, + "asctime": "2021-01-14 00:26:19,501", + "created": 1610580379.5012422, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 922.3341941833496, + "msecs": 501.24216079711914, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7486.061573028564, + "relativeCreated": 7493.733882904053, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112753,8 +112700,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:36,922", - "created": 1610361456.9224803, + "asctime": "2021-01-14 00:26:19,501", + "created": 1610580379.5014029, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112764,15 +112711,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 922.4803447723389, + "msecs": 501.4028549194336, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7486.207723617554, + "relativeCreated": 7493.894577026367, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112782,8 +112729,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:36,922", - "created": 1610361456.9226332, + "asctime": "2021-01-14 00:26:19,501", + "created": 1610580379.5015585, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112793,15 +112740,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 922.633171081543, + "msecs": 501.5585422515869, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7486.360549926758, + "relativeCreated": 7494.0502643585205, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112811,8 +112758,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:36,922", - "created": 1610361456.9227822, + "asctime": "2021-01-14 00:26:19,501", + "created": 1610580379.5017118, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112822,15 +112769,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 922.7821826934814, + "msecs": 501.7118453979492, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7486.509561538696, + "relativeCreated": 7494.203567504883, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112840,8 +112787,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:36,922", - "created": 1610361456.9229283, + "asctime": "2021-01-14 00:26:19,501", + "created": 1610580379.5018628, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112851,41 +112798,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 922.9283332824707, + "msecs": 501.8627643585205, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7486.655712127686, + "relativeCreated": 7494.354486465454, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:36,923", - "created": 1610361456.9230595, + "asctime": "2021-01-14 00:26:19,501", + "created": 1610580379.501995, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 923.0594635009766, + "msecs": 501.9950866699219, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7486.786842346191, + "relativeCreated": 7494.4868087768555, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112894,26 +112841,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:36,923", - "created": 1610361456.923217, + "asctime": "2021-01-14 00:26:19,502", + "created": 1610580379.5021548, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 923.2170581817627, + "msecs": 502.1548271179199, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7486.9444370269775, + "relativeCreated": 7494.6465492248535, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112921,26 +112868,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:36,923", - "created": 1610361456.9233763, + "asctime": "2021-01-14 00:26:19,502", + "created": 1610580379.502317, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 923.3763217926025, + "msecs": 502.316951751709, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7487.103700637817, + "relativeCreated": 7494.808673858643, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112948,26 +112895,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:36,923", - "created": 1610361456.923518, + "asctime": "2021-01-14 00:26:19,502", + "created": 1610580379.5024614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 923.5179424285889, + "msecs": 502.46143341064453, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7487.245321273804, + "relativeCreated": 7494.953155517578, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -112977,8 +112924,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:36,923", - "created": 1610361456.923663, + "asctime": "2021-01-14 00:26:19,502", + "created": 1610580379.5026095, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -112988,15 +112935,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 923.6629009246826, + "msecs": 502.6094913482666, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7487.3902797698975, + "relativeCreated": 7495.1012134552, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -113006,8 +112953,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:36,923", - "created": 1610361456.9238605, + "asctime": "2021-01-14 00:26:19,502", + "created": 1610580379.5027728, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113017,15 +112964,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 923.8605499267578, + "msecs": 502.7728080749512, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7487.587928771973, + "relativeCreated": 7495.264530181885, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -113034,26 +112981,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.9240084, + "asctime": "2021-01-14 00:26:19,502", + "created": 1610580379.5029192, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 924.0083694458008, + "msecs": 502.91919708251953, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7487.735748291016, + "relativeCreated": 7495.410919189453, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -113062,26 +113009,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.924143, + "asctime": "2021-01-14 00:26:19,503", + "created": 1610580379.5030572, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 924.1430759429932, + "msecs": 503.05724143981934, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7487.870454788208, + "relativeCreated": 7495.548963546753, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -113090,71 +113037,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.924291, + "asctime": "2021-01-14 00:26:19,503", + "created": 1610580379.5031934, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 924.2908954620361, + "msecs": 503.1933784484863, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.018274307251, + "relativeCreated": 7495.68510055542, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.9244301, + "asctime": "2021-01-14 00:26:19,503", + "created": 1610580379.5033314, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 924.4301319122314, + "msecs": 503.33142280578613, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.157510757446, + "relativeCreated": 7495.82314491272, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 924.5584011077881, + "msecs": 503.47352027893066, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.285779953003, + "relativeCreated": 7495.965242385864, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00012826919555664062 + "time_consumption": 0.00014209747314453125 }, { "args": [], - "asctime": "2021-01-11 11:37:37,268", - "created": 1610361457.268527, + "asctime": "2021-01-14 00:26:19,848", + "created": 1610580379.84837, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -113169,8 +113116,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.9248142, + "asctime": "2021-01-14 00:26:19,503", + "created": 1610580379.5037813, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113180,23 +113127,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 924.8142242431641, + "msecs": 503.7813186645508, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.541603088379, + "relativeCreated": 7496.273040771484, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.9248588, + "asctime": "2021-01-14 00:26:19,503", + "created": 1610580379.5039217, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113206,41 +113153,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 924.858808517456, + "msecs": 503.9217472076416, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.586187362671, + "relativeCreated": 7496.413469314575, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.9249136, + "asctime": "2021-01-14 00:26:19,504", + "created": 1610580379.5040755, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 924.9136447906494, + "msecs": 504.0755271911621, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.641023635864, + "relativeCreated": 7496.567249298096, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -113251,34 +113198,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:36,924", - "created": 1610361456.9249918, + "asctime": "2021-01-14 00:26:19,504", + "created": 1610580379.5043561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 924.9918460845947, + "msecs": 504.35614585876465, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.71922492981, + "relativeCreated": 7496.847867965698, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:36,925", - "created": 1610361456.9251792, + "asctime": "2021-01-14 00:26:19,504", + "created": 1610580379.5049129, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113288,23 +113235,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 925.1792430877686, + "msecs": 504.9128532409668, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.906621932983, + "relativeCreated": 7497.4045753479, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:36,925", - "created": 1610361456.9252298, + "asctime": "2021-01-14 00:26:19,505", + "created": 1610580379.5050778, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113314,41 +113261,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 925.2297878265381, + "msecs": 505.0778388977051, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7488.957166671753, + "relativeCreated": 7497.569561004639, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:36,925", - "created": 1610361456.9252741, + "asctime": "2021-01-14 00:26:19,505", + "created": 1610580379.5051796, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 925.274133682251, + "msecs": 505.17964363098145, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7489.001512527466, + "relativeCreated": 7497.671365737915, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -113356,8 +113303,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:36,925", - "created": 1610361456.9255016, + "asctime": "2021-01-14 00:26:19,505", + "created": 1610580379.5053349, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113367,15 +113314,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 925.5015850067139, + "msecs": 505.33485412597656, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7489.228963851929, + "relativeCreated": 7497.82657623291, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113383,8 +113330,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:36,933", - "created": 1610361456.933664, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.513489, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113394,15 +113341,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 933.664083480835, + "msecs": 513.4890079498291, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.39146232605, + "relativeCreated": 7505.980730056763, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113410,8 +113357,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,933", - "created": 1610361456.9337819, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.5136127, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113421,15 +113368,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 933.7818622589111, + "msecs": 513.6127471923828, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.509241104126, + "relativeCreated": 7506.104469299316, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113438,8 +113385,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,933", - "created": 1610361456.933834, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.5136645, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113449,15 +113396,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 933.8340759277344, + "msecs": 513.6644840240479, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.561454772949, + "relativeCreated": 7506.156206130981, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113465,8 +113412,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,933", - "created": 1610361456.933897, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.51373, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113476,15 +113423,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 933.8970184326172, + "msecs": 513.7300491333008, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.624397277832, + "relativeCreated": 7506.221771240234, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113493,8 +113440,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,933", - "created": 1610361456.9339392, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.513774, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113504,15 +113451,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 933.9392185211182, + "msecs": 513.7739181518555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.666597366333, + "relativeCreated": 7506.265640258789, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113520,8 +113467,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,933", - "created": 1610361456.9339995, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.5138366, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113531,15 +113478,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 933.9995384216309, + "msecs": 513.8366222381592, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.726917266846, + "relativeCreated": 7506.328344345093, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113548,8 +113495,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,934", - "created": 1610361456.9340532, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.51389, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113559,15 +113506,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 934.0531826019287, + "msecs": 513.8900279998779, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.780561447144, + "relativeCreated": 7506.3817501068115, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113575,8 +113522,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,934", - "created": 1610361456.9341087, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.5139463, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113586,15 +113533,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 934.1087341308594, + "msecs": 513.9462947845459, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.836112976074, + "relativeCreated": 7506.4380168914795, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113603,8 +113550,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,934", - "created": 1610361456.9341483, + "asctime": "2021-01-14 00:26:19,513", + "created": 1610580379.513987, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113614,15 +113561,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 934.1483116149902, + "msecs": 513.9870643615723, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.875690460205, + "relativeCreated": 7506.478786468506, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113630,8 +113577,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,934", - "created": 1610361456.9342012, + "asctime": "2021-01-14 00:26:19,514", + "created": 1610580379.514041, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113641,15 +113588,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 934.2012405395508, + "msecs": 514.0409469604492, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.928619384766, + "relativeCreated": 7506.532669067383, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113658,8 +113605,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,934", - "created": 1610361456.9342415, + "asctime": "2021-01-14 00:26:19,514", + "created": 1610580379.5140815, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113669,15 +113616,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 934.241533279419, + "msecs": 514.0814781188965, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7497.968912124634, + "relativeCreated": 7506.57320022583, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113685,8 +113632,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:36,934", - "created": 1610361456.9343202, + "asctime": "2021-01-14 00:26:19,514", + "created": 1610580379.5141628, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113696,15 +113643,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 934.3202114105225, + "msecs": 514.1627788543701, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7498.047590255737, + "relativeCreated": 7506.654500961304, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113712,8 +113659,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:36,935", - "created": 1610361456.9352694, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.5151207, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113723,15 +113670,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 935.2693557739258, + "msecs": 515.1207447052002, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7498.996734619141, + "relativeCreated": 7507.612466812134, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113739,8 +113686,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,935", - "created": 1610361456.9353938, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.515254, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113750,15 +113697,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 935.3938102722168, + "msecs": 515.254020690918, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7499.121189117432, + "relativeCreated": 7507.745742797852, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113767,8 +113714,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,935", - "created": 1610361456.9354455, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.5153146, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113778,15 +113725,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 935.4455471038818, + "msecs": 515.3145790100098, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7499.172925949097, + "relativeCreated": 7507.806301116943, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113794,8 +113741,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:36,935", - "created": 1610361456.9355226, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.5153959, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113805,15 +113752,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 935.5225563049316, + "msecs": 515.3958797454834, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7499.2499351501465, + "relativeCreated": 7507.887601852417, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113824,26 +113771,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:36,935", - "created": 1610361456.9356675, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.5155373, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 935.6675148010254, + "msecs": 515.5372619628906, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7499.39489364624, + "relativeCreated": 7508.028984069824, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113851,26 +113798,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:36,935", - "created": 1610361456.935726, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.5155978, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 935.7259273529053, + "msecs": 515.5978202819824, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7499.45330619812, + "relativeCreated": 7508.089542388916, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113881,26 +113828,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:36,935", - "created": 1610361456.9358094, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.515685, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 935.8093738555908, + "msecs": 515.6850814819336, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7499.536752700806, + "relativeCreated": 7508.176803588867, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -113908,8 +113855,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:36,936", - "created": 1610361456.9360745, + "asctime": "2021-01-14 00:26:19,515", + "created": 1610580379.5159707, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113919,15 +113866,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 936.0744953155518, + "msecs": 515.9707069396973, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7499.801874160767, + "relativeCreated": 7508.462429046631, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -113935,8 +113882,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.944235, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5241876, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -113946,15 +113893,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 944.23508644104, + "msecs": 524.1875648498535, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7507.962465286255, + "relativeCreated": 7516.679286956787, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -113962,8 +113909,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9443443, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5243084, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -113973,15 +113920,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 944.3442821502686, + "msecs": 524.308443069458, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.071660995483, + "relativeCreated": 7516.800165176392, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -113990,8 +113937,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9443946, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5243604, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114001,15 +113948,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 944.394588470459, + "msecs": 524.3604183197021, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.121967315674, + "relativeCreated": 7516.852140426636, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114017,8 +113964,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9444554, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.524423, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114028,15 +113975,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 944.4553852081299, + "msecs": 524.4228839874268, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.182764053345, + "relativeCreated": 7516.91460609436, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114045,8 +113992,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.944498, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5244656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114056,15 +114003,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 944.4980621337891, + "msecs": 524.4655609130859, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.225440979004, + "relativeCreated": 7516.9572830200195, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114072,8 +114019,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9445596, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5245273, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114083,15 +114030,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 944.5595741271973, + "msecs": 524.5273113250732, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.286952972412, + "relativeCreated": 7517.019033432007, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114100,8 +114047,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9445999, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.524568, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114111,15 +114058,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 944.5998668670654, + "msecs": 524.5680809020996, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.32724571228, + "relativeCreated": 7517.059803009033, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114127,8 +114074,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.944655, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.524624, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114138,15 +114085,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 944.6549415588379, + "msecs": 524.6241092681885, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.382320404053, + "relativeCreated": 7517.115831375122, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114155,8 +114102,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9446967, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5246658, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114166,15 +114113,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 944.6966648101807, + "msecs": 524.6658325195312, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.4240436553955, + "relativeCreated": 7517.157554626465, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114182,8 +114129,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9447637, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5247195, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114193,15 +114140,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 944.7636604309082, + "msecs": 524.7194766998291, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.491039276123, + "relativeCreated": 7517.211198806763, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114210,8 +114157,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9448164, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5247703, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114221,15 +114168,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 944.8163509368896, + "msecs": 524.7702598571777, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.5437297821045, + "relativeCreated": 7517.261981964111, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114237,8 +114184,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:36,944", - "created": 1610361456.9448984, + "asctime": "2021-01-14 00:26:19,524", + "created": 1610580379.5248542, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -114248,15 +114195,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 944.8983669281006, + "msecs": 524.8541831970215, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7508.625745773315, + "relativeCreated": 7517.345905303955, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114264,8 +114211,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:36,945", - "created": 1610361456.945843, + "asctime": "2021-01-14 00:26:19,525", + "created": 1610580379.525734, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -114275,15 +114222,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 945.842981338501, + "msecs": 525.7339477539062, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7509.570360183716, + "relativeCreated": 7518.22566986084, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114291,8 +114238,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,945", - "created": 1610361456.9459627, + "asctime": "2021-01-14 00:26:19,525", + "created": 1610580379.5257857, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114302,15 +114249,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 945.96266746521, + "msecs": 525.7856845855713, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7509.690046310425, + "relativeCreated": 7518.277406692505, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114319,8 +114266,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,946", - "created": 1610361456.9460144, + "asctime": "2021-01-14 00:26:19,525", + "created": 1610580379.5258274, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114330,15 +114277,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 946.014404296875, + "msecs": 525.8274078369141, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7509.74178314209, + "relativeCreated": 7518.319129943848, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114346,8 +114293,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:36,946", - "created": 1610361456.9461026, + "asctime": "2021-01-14 00:26:19,525", + "created": 1610580379.5258965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -114357,15 +114304,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 946.1026191711426, + "msecs": 525.8965492248535, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7509.829998016357, + "relativeCreated": 7518.388271331787, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114376,26 +114323,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:36,946", - "created": 1610361456.9462395, + "asctime": "2021-01-14 00:26:19,526", + "created": 1610580379.526028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 946.2394714355469, + "msecs": 526.0279178619385, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7509.966850280762, + "relativeCreated": 7518.519639968872, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -114403,45 +114350,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:36,946", - "created": 1610361456.9462986, + "asctime": "2021-01-14 00:26:19,526", + "created": 1610580379.5260904, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 946.2985992431641, + "msecs": 526.0903835296631, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7510.025978088379, + "relativeCreated": 7518.582105636597, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" } ], - "msecs": 268.5270309448242, + "msecs": 848.3700752258301, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7832.254409790039, + "relativeCreated": 7840.861797332764, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.32222843170166016 + "time_consumption": 0.322279691696167 }, { "args": [], - "asctime": "2021-01-11 11:37:37,269", - "created": 1610361457.2690237, + "asctime": "2021-01-14 00:26:19,848", + "created": 1610580379.8486576, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -114452,22 +114399,22 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 269.0236568450928, + "msecs": 848.6576080322266, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7832.751035690308, + "relativeCreated": 7841.14933013916, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:37,570", - "created": 1610361457.5708017, + "asctime": "2021-01-14 00:26:20,150", + "created": 1610580380.1502993, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -114485,26 +114432,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:37,269", - "created": 1610361457.2693443, + "asctime": "2021-01-14 00:26:19,848", + "created": 1610580379.848836, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 269.3443298339844, + "msecs": 848.8359451293945, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7833.071708679199, + "relativeCreated": 7841.327667236328, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -114514,48 +114461,48 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:37,570", - "created": 1610361457.5705004, + "asctime": "2021-01-14 00:26:20,149", + "created": 1610580380.1499772, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 570.500373840332, + "msecs": 149.9772071838379, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8134.227752685547, + "relativeCreated": 8142.4689292907715, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 570.8017349243164, + "msecs": 150.2993106842041, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8134.529113769531, + "relativeCreated": 8142.791032791138, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000301361083984375 + "time_consumption": 0.00032210350036621094 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:37,571", - "created": 1610361457.5714054, + "asctime": "2021-01-14 00:26:20,150", + "created": 1610580380.1508994, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114572,8 +114519,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:37,571", - "created": 1610361457.5711012, + "asctime": "2021-01-14 00:26:20,150", + "created": 1610580380.1505997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114583,15 +114530,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 571.101188659668, + "msecs": 150.59971809387207, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8134.828567504883, + "relativeCreated": 8143.091440200806, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -114600,8 +114547,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:37,571", - "created": 1610361457.5712605, + "asctime": "2021-01-14 00:26:20,150", + "created": 1610580380.1507561, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114611,37 +114558,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 571.2604522705078, + "msecs": 150.7561206817627, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8134.987831115723, + "relativeCreated": 8143.247842788696, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 571.4054107666016, + "msecs": 150.89941024780273, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8135.132789611816, + "relativeCreated": 8143.391132354736, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014495849609375 + "time_consumption": 0.00014328956604003906 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:37,571", - "created": 1610361457.5719326, + "asctime": "2021-01-14 00:26:20,151", + "created": 1610580380.1514165, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114658,8 +114605,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:37,571", - "created": 1610361457.5716436, + "asctime": "2021-01-14 00:26:20,151", + "created": 1610580380.151121, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114669,15 +114616,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 571.643590927124, + "msecs": 151.1209011077881, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8135.370969772339, + "relativeCreated": 8143.612623214722, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -114686,8 +114633,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:37,571", - "created": 1610361457.5717957, + "asctime": "2021-01-14 00:26:20,151", + "created": 1610580380.151273, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114697,34 +114644,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 571.7957019805908, + "msecs": 151.27301216125488, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8135.523080825806, + "relativeCreated": 8143.7647342681885, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 571.9325542449951, + "msecs": 151.41654014587402, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8135.65993309021, + "relativeCreated": 8143.908262252808, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013685226440429688 + "time_consumption": 0.00014352798461914062 }, { "args": [], - "asctime": "2021-01-11 11:37:37,873", - "created": 1610361457.873589, + "asctime": "2021-01-14 00:26:20,453", + "created": 1610580380.4532473, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -114742,26 +114689,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:37,572", - "created": 1610361457.5722122, + "asctime": "2021-01-14 00:26:20,151", + "created": 1610580380.1516953, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 572.2122192382812, + "msecs": 151.69525146484375, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8135.939598083496, + "relativeCreated": 8144.186973571777, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -114771,48 +114718,48 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:37,873", - "created": 1610361457.8733099, + "asctime": "2021-01-14 00:26:20,452", + "created": 1610580380.4528909, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 873.309850692749, + "msecs": 452.89087295532227, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8437.037229537964, + "relativeCreated": 8445.382595062256, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 873.589038848877, + "msecs": 453.2473087310791, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8437.316417694092, + "relativeCreated": 8445.739030838013, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0002791881561279297 + "time_consumption": 0.00035643577575683594 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:37,874", - "created": 1610361457.8742168, + "asctime": "2021-01-14 00:26:20,453", + "created": 1610580380.453892, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114829,8 +114776,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:37,873", - "created": 1610361457.8738835, + "asctime": "2021-01-14 00:26:20,453", + "created": 1610580380.4535599, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114840,15 +114787,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 873.8834857940674, + "msecs": 453.55987548828125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8437.610864639282, + "relativeCreated": 8446.051597595215, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -114857,8 +114804,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:37,874", - "created": 1610361457.874039, + "asctime": "2021-01-14 00:26:20,453", + "created": 1610580380.4537182, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114868,37 +114815,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 874.0389347076416, + "msecs": 453.7181854248047, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8437.766313552856, + "relativeCreated": 8446.209907531738, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 874.2167949676514, + "msecs": 453.8919925689697, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8437.944173812866, + "relativeCreated": 8446.383714675903, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00017786026000976562 + "time_consumption": 0.00017380714416503906 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:37,874", - "created": 1610361457.8747108, + "asctime": "2021-01-14 00:26:20,454", + "created": 1610580380.4544182, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114915,8 +114862,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:37,874", - "created": 1610361457.8744388, + "asctime": "2021-01-14 00:26:20,454", + "created": 1610580380.4541183, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114926,15 +114873,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 874.4387626647949, + "msecs": 454.1182518005371, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8438.16614151001, + "relativeCreated": 8446.60997390747, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -114943,8 +114890,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:37,874", - "created": 1610361457.8745759, + "asctime": "2021-01-14 00:26:20,454", + "created": 1610580380.4542565, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -114954,37 +114901,37 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 874.5758533477783, + "msecs": 454.256534576416, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8438.303232192993, + "relativeCreated": 8446.74825668335, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 874.7107982635498, + "msecs": 454.4181823730469, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8438.438177108765, + "relativeCreated": 8446.90990447998, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013494491577148438 + "time_consumption": 0.00016164779663085938 }, { "args": [ 17, 34 ], - "asctime": "2021-01-11 11:37:37,875", - "created": 1610361457.8751142, + "asctime": "2021-01-14 00:26:20,454", + "created": 1610580380.4548101, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -115000,45 +114947,45 @@ "prot-client:", "service: 17, data_id: 34" ], - "asctime": "2021-01-11 11:37:37,874", - "created": 1610361457.8749714, + "asctime": "2021-01-14 00:26:20,454", + "created": 1610580380.4546688, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 874.9713897705078, + "msecs": 454.6687602996826, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8438.698768615723, + "relativeCreated": 8447.160482406616, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 875.1142024993896, + "msecs": 454.81014251708984, "msg": "Added msg1 to client whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8438.841581344604, + "relativeCreated": 8447.301864624023, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014281272888183594 + "time_consumption": 0.00014138221740722656 }, { "args": [], - "asctime": "2021-01-11 11:37:38,177", - "created": 1610361458.1772451, + "asctime": "2021-01-14 00:26:20,757", + "created": 1610580380.7570987, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -115057,26 +115004,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:37,875", - "created": 1610361457.875445, + "asctime": "2021-01-14 00:26:20,455", + "created": 1610580380.4551492, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 875.4448890686035, + "msecs": 455.14917373657227, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8439.172267913818, + "relativeCreated": 8447.640895843506, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -115084,8 +115031,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:37,876", - "created": 1610361457.8763876, + "asctime": "2021-01-14 00:26:20,456", + "created": 1610580380.4560366, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -115095,15 +115042,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 876.3875961303711, + "msecs": 456.0365676879883, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8440.114974975586, + "relativeCreated": 8448.528289794922, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115111,8 +115058,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:37,884", - "created": 1610361457.8849065, + "asctime": "2021-01-14 00:26:20,464", + "created": 1610580380.46453, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -115122,15 +115069,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 884.906530380249, + "msecs": 464.52999114990234, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8448.633909225464, + "relativeCreated": 8457.021713256836, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115138,8 +115085,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:37,885", - "created": 1610361457.8851917, + "asctime": "2021-01-14 00:26:20,464", + "created": 1610580380.4648244, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115149,15 +115096,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 885.1916790008545, + "msecs": 464.8244380950928, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8448.91905784607, + "relativeCreated": 8457.316160202026, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115166,8 +115113,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:37,885", - "created": 1610361457.885357, + "asctime": "2021-01-14 00:26:20,464", + "created": 1610580380.4649901, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115177,15 +115124,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 885.3569030761719, + "msecs": 464.99013900756836, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8449.084281921387, + "relativeCreated": 8457.481861114502, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115193,8 +115140,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:37,885", - "created": 1610361457.885559, + "asctime": "2021-01-14 00:26:20,465", + "created": 1610580380.465238, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115204,15 +115151,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 885.55908203125, + "msecs": 465.238094329834, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8449.286460876465, + "relativeCreated": 8457.729816436768, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115221,8 +115168,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:37,885", - "created": 1610361457.885726, + "asctime": "2021-01-14 00:26:20,465", + "created": 1610580380.465416, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115232,15 +115179,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 885.7259750366211, + "msecs": 465.41595458984375, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8449.453353881836, + "relativeCreated": 8457.907676696777, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115248,8 +115195,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:37,885", - "created": 1610361457.8859417, + "asctime": "2021-01-14 00:26:20,465", + "created": 1610580380.465626, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115259,15 +115206,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 885.941743850708, + "msecs": 465.6260013580322, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8449.669122695923, + "relativeCreated": 8458.117723464966, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115276,8 +115223,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:37,886", - "created": 1610361457.8860762, + "asctime": "2021-01-14 00:26:20,465", + "created": 1610580380.465762, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115287,15 +115234,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 886.0762119293213, + "msecs": 465.7618999481201, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8449.803590774536, + "relativeCreated": 8458.253622055054, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115303,8 +115250,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:37,886", - "created": 1610361457.8862643, + "asctime": "2021-01-14 00:26:20,465", + "created": 1610580380.4659567, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115314,15 +115261,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 886.2643241882324, + "msecs": 465.9566879272461, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8449.991703033447, + "relativeCreated": 8458.44841003418, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115331,8 +115278,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:37,886", - "created": 1610361457.886396, + "asctime": "2021-01-14 00:26:20,466", + "created": 1610580380.4660902, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115342,15 +115289,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 886.3959312438965, + "msecs": 466.09020233154297, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8450.123310089111, + "relativeCreated": 8458.581924438477, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115358,8 +115305,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:37,886", - "created": 1610361457.8865678, + "asctime": "2021-01-14 00:26:20,466", + "created": 1610580380.4662764, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115369,15 +115316,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 886.5678310394287, + "msecs": 466.2764072418213, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8450.295209884644, + "relativeCreated": 8458.768129348755, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115386,8 +115333,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:37,886", - "created": 1610361457.8866973, + "asctime": "2021-01-14 00:26:20,466", + "created": 1610580380.4664087, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115397,15 +115344,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 886.6972923278809, + "msecs": 466.40872955322266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8450.424671173096, + "relativeCreated": 8458.900451660156, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115413,8 +115360,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:37,886", - "created": 1610361457.8869607, + "asctime": "2021-01-14 00:26:20,466", + "created": 1610580380.4666865, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -115424,15 +115371,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 886.9607448577881, + "msecs": 466.686487197876, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8450.688123703003, + "relativeCreated": 8459.17820930481, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115440,8 +115387,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:37,891", - "created": 1610361457.8913372, + "asctime": "2021-01-14 00:26:20,471", + "created": 1610580380.4711275, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -115451,15 +115398,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 891.3371562957764, + "msecs": 471.1275100708008, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8455.064535140991, + "relativeCreated": 8463.619232177734, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115467,8 +115414,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:37,891", - "created": 1610361457.8916793, + "asctime": "2021-01-14 00:26:20,471", + "created": 1610580380.471588, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115478,15 +115425,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 891.6792869567871, + "msecs": 471.5878963470459, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8455.406665802002, + "relativeCreated": 8464.07961845398, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115495,8 +115442,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:37,891", - "created": 1610361457.8918521, + "asctime": "2021-01-14 00:26:20,471", + "created": 1610580380.4717858, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115506,15 +115453,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 891.8521404266357, + "msecs": 471.7857837677002, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8455.57951927185, + "relativeCreated": 8464.277505874634, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115522,8 +115469,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" ], - "asctime": "2021-01-11 11:37:37,892", - "created": 1610361457.8920968, + "asctime": "2021-01-14 00:26:20,472", + "created": 1610580380.4720914, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -115533,15 +115480,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", "module": "stp", - "msecs": 892.096757888794, + "msecs": 472.0914363861084, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8455.824136734009, + "relativeCreated": 8464.583158493042, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115552,52 +115499,52 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:37,892", - "created": 1610361457.892423, + "asctime": "2021-01-14 00:26:20,472", + "created": 1610580380.472501, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 892.4229145050049, + "msecs": 472.5010395050049, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8456.15029335022, + "relativeCreated": 8464.992761611938, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:37,892", - "created": 1610361457.8925593, + "asctime": "2021-01-14 00:26:20,472", + "created": 1610580380.4726758, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 463, + "lineno": 475, "message": "prot-server: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 892.559289932251, + "msecs": 472.6758003234863, "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8456.286668777466, + "relativeCreated": 8465.16752243042, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -115607,48 +115554,48 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:38,176", - "created": 1610361458.1769514, + "asctime": "2021-01-14 00:26:20,756", + "created": 1610580380.7568102, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 176.95140838623047, + "msecs": 756.810188293457, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8740.678787231445, + "relativeCreated": 8749.30191040039, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 177.2451400756836, + "msecs": 757.0986747741699, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8740.972518920898, + "relativeCreated": 8749.590396881104, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000293731689453125 + "time_consumption": 0.0002884864807128906 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:38,177", - "created": 1610361458.1778853, + "asctime": "2021-01-14 00:26:20,757", + "created": 1610580380.7578003, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115665,8 +115612,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:38,177", - "created": 1610361458.1775813, + "asctime": "2021-01-14 00:26:20,757", + "created": 1610580380.7574627, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115676,15 +115623,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 177.5813102722168, + "msecs": 757.462739944458, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8741.308689117432, + "relativeCreated": 8749.954462051392, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -115693,8 +115640,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:38,177", - "created": 1610361458.1777396, + "asctime": "2021-01-14 00:26:20,757", + "created": 1610580380.7576458, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115704,37 +115651,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 177.73962020874023, + "msecs": 757.645845413208, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8741.466999053955, + "relativeCreated": 8750.137567520142, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 177.8852939605713, + "msecs": 757.8003406524658, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8741.612672805786, + "relativeCreated": 8750.2920627594, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001456737518310547 + "time_consumption": 0.0001544952392578125 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:38,178", - "created": 1610361458.1783757, + "asctime": "2021-01-14 00:26:20,758", + "created": 1610580380.7582996, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115751,8 +115698,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:38,178", - "created": 1610361458.1781063, + "asctime": "2021-01-14 00:26:20,758", + "created": 1610580380.7580242, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115762,15 +115709,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 178.10630798339844, + "msecs": 758.0242156982422, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8741.833686828613, + "relativeCreated": 8750.515937805176, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -115779,8 +115726,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:38,178", - "created": 1610361458.1782424, + "asctime": "2021-01-14 00:26:20,758", + "created": 1610580380.7581656, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115790,34 +115737,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 178.24244499206543, + "msecs": 758.1655979156494, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8741.96982383728, + "relativeCreated": 8750.657320022583, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 178.3757209777832, + "msecs": 758.2995891571045, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8742.103099822998, + "relativeCreated": 8750.791311264038, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013327598571777344 + "time_consumption": 0.00013399124145507812 }, { "args": [], - "asctime": "2021-01-11 11:37:38,480", - "created": 1610361458.4801033, + "asctime": "2021-01-14 00:26:21,060", + "created": 1610580381.0601125, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -115835,26 +115782,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:38,178", - "created": 1610361458.178654, + "asctime": "2021-01-14 00:26:20,758", + "created": 1610580380.7585788, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 178.65395545959473, + "msecs": 758.5787773132324, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 8742.38133430481, + "relativeCreated": 8751.070499420166, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -115864,48 +115811,48 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:38,479", - "created": 1610361458.4798017, + "asctime": "2021-01-14 00:26:21,059", + "created": 1610580381.0597653, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 479.8016548156738, + "msecs": 59.76533889770508, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9043.529033660889, + "relativeCreated": 9052.257061004639, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 480.1032543182373, + "msecs": 60.11247634887695, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9043.830633163452, + "relativeCreated": 9052.60419845581, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00030159950256347656 + "time_consumption": 0.000347137451171875 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:38,480", - "created": 1610361458.480732, + "asctime": "2021-01-14 00:26:21,060", + "created": 1610580381.0607605, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115922,8 +115869,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:38,480", - "created": 1610361458.4804244, + "asctime": "2021-01-14 00:26:21,060", + "created": 1610580381.0604467, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115933,15 +115880,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 480.4244041442871, + "msecs": 60.446739196777344, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9044.151782989502, + "relativeCreated": 9052.938461303711, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -115950,8 +115897,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:38,480", - "created": 1610361458.4805837, + "asctime": "2021-01-14 00:26:21,060", + "created": 1610580381.060608, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -115961,37 +115908,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 480.58366775512695, + "msecs": 60.60791015625, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9044.311046600342, + "relativeCreated": 9053.099632263184, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 480.7319641113281, + "msecs": 60.760498046875, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9044.459342956543, + "relativeCreated": 9053.252220153809, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014829635620117188 + "time_consumption": 0.000152587890625 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:38,481", - "created": 1610361458.4812846, + "asctime": "2021-01-14 00:26:21,061", + "created": 1610580381.061298, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116008,8 +115955,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:38,481", - "created": 1610361458.4810095, + "asctime": "2021-01-14 00:26:21,060", + "created": 1610580381.0609815, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116019,15 +115966,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 481.00948333740234, + "msecs": 60.98151206970215, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9044.736862182617, + "relativeCreated": 9053.473234176636, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -116036,8 +115983,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:38,481", - "created": 1610361458.481149, + "asctime": "2021-01-14 00:26:21,061", + "created": 1610580381.0611584, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116047,37 +115994,37 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 481.14895820617676, + "msecs": 61.15841865539551, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9044.876337051392, + "relativeCreated": 9053.65014076233, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 481.28461837768555, + "msecs": 61.29789352416992, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9045.0119972229, + "relativeCreated": 9053.789615631104, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013566017150878906 + "time_consumption": 0.00013947486877441406 }, { "args": [ 17, 34 ], - "asctime": "2021-01-11 11:37:38,481", - "created": 1610361458.4816701, + "asctime": "2021-01-14 00:26:21,061", + "created": 1610580381.0616906, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -116093,45 +116040,45 @@ "prot-server:", "service: 17, data_id: 34" ], - "asctime": "2021-01-11 11:37:38,481", - "created": 1610361458.4815316, + "asctime": "2021-01-14 00:26:21,061", + "created": 1610580381.0615501, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 481.53162002563477, + "msecs": 61.550140380859375, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9045.25899887085, + "relativeCreated": 9054.041862487793, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 481.6701412200928, + "msecs": 61.690568923950195, "msg": "Added msg1 to server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9045.397520065308, + "relativeCreated": 9054.182291030884, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001385211944580078 + "time_consumption": 0.0001404285430908203 }, { "args": [], - "asctime": "2021-01-11 11:37:38,683", - "created": 1610361458.6832578, + "asctime": "2021-01-14 00:26:21,263", + "created": 1610580381.263304, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -116150,26 +116097,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:38,482", - "created": 1610361458.482002, + "asctime": "2021-01-14 00:26:21,062", + "created": 1610580381.0620131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 482.00201988220215, + "msecs": 62.01314926147461, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9045.729398727417, + "relativeCreated": 9054.504871368408, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -116177,8 +116124,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:38,482", - "created": 1610361458.4828794, + "asctime": "2021-01-14 00:26:21,062", + "created": 1610580381.0629063, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -116188,15 +116135,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 482.8794002532959, + "msecs": 62.90626525878906, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9046.60677909851, + "relativeCreated": 9055.397987365723, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116204,8 +116151,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:38,491", - "created": 1610361458.4913802, + "asctime": "2021-01-14 00:26:21,071", + "created": 1610580381.0713427, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -116215,15 +116162,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 491.3802146911621, + "msecs": 71.34270668029785, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9055.107593536377, + "relativeCreated": 9063.834428787231, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116231,8 +116178,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,491", - "created": 1610361458.4916651, + "asctime": "2021-01-14 00:26:21,071", + "created": 1610580381.0715418, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116242,15 +116189,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 491.6651248931885, + "msecs": 71.54178619384766, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9055.392503738403, + "relativeCreated": 9064.033508300781, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116259,8 +116206,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:38,491", - "created": 1610361458.4918618, + "asctime": "2021-01-14 00:26:21,071", + "created": 1610580381.071646, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116270,15 +116217,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 491.86182022094727, + "msecs": 71.64597511291504, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9055.589199066162, + "relativeCreated": 9064.137697219849, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116286,8 +116233,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,492", - "created": 1610361458.492066, + "asctime": "2021-01-14 00:26:21,071", + "created": 1610580381.0717874, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116297,15 +116244,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 492.0659065246582, + "msecs": 71.78735733032227, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9055.793285369873, + "relativeCreated": 9064.279079437256, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116314,8 +116261,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,492", - "created": 1610361458.4922063, + "asctime": "2021-01-14 00:26:21,071", + "created": 1610580381.0718765, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116325,15 +116272,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 492.206335067749, + "msecs": 71.87652587890625, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9055.933713912964, + "relativeCreated": 9064.36824798584, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116341,8 +116288,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,492", - "created": 1610361458.4924102, + "asctime": "2021-01-14 00:26:21,072", + "created": 1610580381.07201, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116352,15 +116299,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 492.41018295288086, + "msecs": 72.01004028320312, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9056.137561798096, + "relativeCreated": 9064.501762390137, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116369,8 +116316,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,492", - "created": 1610361458.4925418, + "asctime": "2021-01-14 00:26:21,072", + "created": 1610580381.0720942, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116380,15 +116327,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 492.5417900085449, + "msecs": 72.09420204162598, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9056.26916885376, + "relativeCreated": 9064.58592414856, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116396,8 +116343,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,492", - "created": 1610361458.4927278, + "asctime": "2021-01-14 00:26:21,072", + "created": 1610580381.0722098, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116407,15 +116354,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 492.72775650024414, + "msecs": 72.20983505249023, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9056.455135345459, + "relativeCreated": 9064.701557159424, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116424,8 +116371,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,492", - "created": 1610361458.4929044, + "asctime": "2021-01-14 00:26:21,072", + "created": 1610580381.072291, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116435,15 +116382,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 492.9044246673584, + "msecs": 72.29089736938477, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9056.631803512573, + "relativeCreated": 9064.782619476318, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116451,8 +116398,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,493", - "created": 1610361458.4931967, + "asctime": "2021-01-14 00:26:21,072", + "created": 1610580381.072396, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116462,15 +116409,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 493.1967258453369, + "msecs": 72.39603996276855, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9056.924104690552, + "relativeCreated": 9064.887762069702, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116479,8 +116426,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,493", - "created": 1610361458.4933689, + "asctime": "2021-01-14 00:26:21,072", + "created": 1610580381.0724752, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116490,15 +116437,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 493.36886405944824, + "msecs": 72.47519493103027, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9057.096242904663, + "relativeCreated": 9064.966917037964, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116506,8 +116453,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:38,493", - "created": 1610361458.4936397, + "asctime": "2021-01-14 00:26:21,072", + "created": 1610580381.0726426, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -116517,15 +116464,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 493.6397075653076, + "msecs": 72.64256477355957, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9057.367086410522, + "relativeCreated": 9065.134286880493, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116533,8 +116480,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:38,498", - "created": 1610361458.4980836, + "asctime": "2021-01-14 00:26:21,076", + "created": 1610580381.0769582, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -116544,15 +116491,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 498.08359146118164, + "msecs": 76.95817947387695, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9061.810970306396, + "relativeCreated": 9069.44990158081, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116560,8 +116507,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,498", - "created": 1610361458.498843, + "asctime": "2021-01-14 00:26:21,077", + "created": 1610580381.0773122, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116571,15 +116518,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 498.8429546356201, + "msecs": 77.31223106384277, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9062.570333480835, + "relativeCreated": 9069.803953170776, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116588,8 +116535,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:38,499", - "created": 1610361458.4990597, + "asctime": "2021-01-14 00:26:21,077", + "created": 1610580381.077423, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116599,15 +116546,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 499.05967712402344, + "msecs": 77.423095703125, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9062.787055969238, + "relativeCreated": 9069.914817810059, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116615,8 +116562,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" ], - "asctime": "2021-01-11 11:37:38,499", - "created": 1610361458.4993618, + "asctime": "2021-01-14 00:26:21,077", + "created": 1610580381.0776021, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -116626,15 +116573,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", "module": "stp", - "msecs": 499.3617534637451, + "msecs": 77.60214805603027, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9063.08913230896, + "relativeCreated": 9070.093870162964, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -116645,74 +116592,74 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:38,499", - "created": 1610361458.4997556, + "asctime": "2021-01-14 00:26:21,077", + "created": 1610580381.0778804, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 499.7556209564209, + "msecs": 77.8803825378418, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9063.482999801636, + "relativeCreated": 9070.372104644775, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:38,500", - "created": 1610361458.5000064, + "asctime": "2021-01-14 00:26:21,078", + "created": 1610580381.0780244, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 500.00643730163574, + "msecs": 78.02438735961914, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9063.73381614685, + "relativeCreated": 9070.516109466553, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" } ], - "msecs": 683.2578182220459, + "msecs": 263.3039951324463, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9246.98519706726, + "relativeCreated": 9255.79571723938, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.18325138092041016 + "time_consumption": 0.18527960777282715 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:38,684", - "created": 1610361458.6840127, + "asctime": "2021-01-14 00:26:21,264", + "created": 1610580381.2640953, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116729,8 +116676,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:38,683", - "created": 1610361458.6836936, + "asctime": "2021-01-14 00:26:21,263", + "created": 1610580381.2637618, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116740,15 +116687,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 683.6936473846436, + "msecs": 263.7617588043213, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9247.421026229858, + "relativeCreated": 9256.253480911255, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -116757,8 +116704,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:38,683", - "created": 1610361458.6838646, + "asctime": "2021-01-14 00:26:21,263", + "created": 1610580381.2639387, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116768,37 +116715,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 683.8645935058594, + "msecs": 263.93866539001465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9247.591972351074, + "relativeCreated": 9256.430387496948, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 684.0126514434814, + "msecs": 264.0953063964844, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9247.740030288696, + "relativeCreated": 9256.587028503418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001480579376220703 + "time_consumption": 0.00015664100646972656 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:38,684", - "created": 1610361458.6845443, + "asctime": "2021-01-14 00:26:21,264", + "created": 1610580381.2646406, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116815,8 +116762,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:38,684", - "created": 1610361458.6842504, + "asctime": "2021-01-14 00:26:21,264", + "created": 1610580381.2643394, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116826,15 +116773,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 684.2503547668457, + "msecs": 264.3394470214844, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9247.97773361206, + "relativeCreated": 9256.831169128418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -116843,8 +116790,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:38,684", - "created": 1610361458.6843984, + "asctime": "2021-01-14 00:26:21,264", + "created": 1610580381.2644918, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116854,34 +116801,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 684.3984127044678, + "msecs": 264.4917964935303, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9248.125791549683, + "relativeCreated": 9256.983518600464, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 684.5443248748779, + "msecs": 264.64056968688965, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9248.271703720093, + "relativeCreated": 9257.132291793823, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014591217041015625 + "time_consumption": 0.000148773193359375 }, { "args": [], - "asctime": "2021-01-11 11:37:38,986", - "created": 1610361458.9861717, + "asctime": "2021-01-14 00:26:21,566", + "created": 1610580381.5663073, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -116899,26 +116846,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:38,684", - "created": 1610361458.6848912, + "asctime": "2021-01-14 00:26:21,264", + "created": 1610580381.2649496, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 684.8912239074707, + "msecs": 264.9495601654053, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9248.618602752686, + "relativeCreated": 9257.441282272339, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -116928,48 +116875,48 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:38,985", - "created": 1610361458.9858954, + "asctime": "2021-01-14 00:26:21,565", + "created": 1610580381.5659974, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 985.8953952789307, + "msecs": 565.9973621368408, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9549.622774124146, + "relativeCreated": 9558.489084243774, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 986.1717224121094, + "msecs": 566.3073062896729, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9549.899101257324, + "relativeCreated": 9558.799028396606, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00027632713317871094 + "time_consumption": 0.00030994415283203125 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:38,986", - "created": 1610361458.98677, + "asctime": "2021-01-14 00:26:21,566", + "created": 1610580381.5669382, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116986,8 +116933,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:38,986", - "created": 1610361458.986468, + "asctime": "2021-01-14 00:26:21,566", + "created": 1610580381.5666099, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -116997,15 +116944,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 986.4680767059326, + "msecs": 566.6098594665527, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9550.195455551147, + "relativeCreated": 9559.101581573486, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -117014,8 +116961,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:38,986", - "created": 1610361458.9866252, + "asctime": "2021-01-14 00:26:21,566", + "created": 1610580381.5667918, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117025,37 +116972,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 986.6251945495605, + "msecs": 566.7917728424072, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9550.352573394775, + "relativeCreated": 9559.28349494934, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 986.7699146270752, + "msecs": 566.9381618499756, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9550.49729347229, + "relativeCreated": 9559.42988395691, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014472007751464844 + "time_consumption": 0.00014638900756835938 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:38,987", - "created": 1610361458.987305, + "asctime": "2021-01-14 00:26:21,567", + "created": 1610580381.5674686, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117072,8 +117019,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:38,986", - "created": 1610361458.9869888, + "asctime": "2021-01-14 00:26:21,567", + "created": 1610580381.5671577, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117083,15 +117030,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 986.9887828826904, + "msecs": 567.1577453613281, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9550.716161727905, + "relativeCreated": 9559.649467468262, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -117100,8 +117047,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:38,987", - "created": 1610361458.9871578, + "asctime": "2021-01-14 00:26:21,567", + "created": 1610580381.5673058, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117111,37 +117058,37 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 987.1578216552734, + "msecs": 567.3058032989502, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9550.885200500488, + "relativeCreated": 9559.797525405884, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 987.3049259185791, + "msecs": 567.4686431884766, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9551.032304763794, + "relativeCreated": 9559.96036529541, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014710426330566406 + "time_consumption": 0.0001628398895263672 }, { "args": [ 17, 35 ], - "asctime": "2021-01-11 11:37:38,987", - "created": 1610361458.9878516, + "asctime": "2021-01-14 00:26:21,568", + "created": 1610580381.5680165, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -117157,26 +117104,26 @@ "prot-client:", "service: 17, data_id: 35" ], - "asctime": "2021-01-11 11:37:38,987", - "created": 1610361458.9875607, + "asctime": "2021-01-14 00:26:21,567", + "created": 1610580381.56771, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 987.5607490539551, + "msecs": 567.7099227905273, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9551.28812789917, + "relativeCreated": 9560.201644897461, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -117184,45 +117131,45 @@ "prot-server:", "service: 17, data_id: 35" ], - "asctime": "2021-01-11 11:37:38,987", - "created": 1610361458.9877217, + "asctime": "2021-01-14 00:26:21,567", + "created": 1610580381.5678818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 987.7216815948486, + "msecs": 567.8818225860596, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9551.449060440063, + "relativeCreated": 9560.373544692993, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 987.851619720459, + "msecs": 568.016529083252, "msg": "Added msg2 to client and server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9551.578998565674, + "relativeCreated": 9560.508251190186, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00012993812561035156 + "time_consumption": 0.0001347064971923828 }, { "args": [], - "asctime": "2021-01-11 11:37:39,189", - "created": 1610361459.1895833, + "asctime": "2021-01-14 00:26:21,769", + "created": 1610580381.7697067, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -117241,26 +117188,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:38,988", - "created": 1610361458.988178, + "asctime": "2021-01-14 00:26:21,568", + "created": 1610580381.5683496, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 988.178014755249, + "msecs": 568.3495998382568, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9551.905393600464, + "relativeCreated": 9560.84132194519, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -117268,8 +117215,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:38,989", - "created": 1610361458.98925, + "asctime": "2021-01-14 00:26:21,569", + "created": 1610580381.569295, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -117279,15 +117226,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 989.2499446868896, + "msecs": 569.2949295043945, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9552.977323532104, + "relativeCreated": 9561.786651611328, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117295,8 +117242,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:38,997", - "created": 1610361458.9975905, + "asctime": "2021-01-14 00:26:21,577", + "created": 1610580381.5777638, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -117306,15 +117253,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 997.5905418395996, + "msecs": 577.7637958526611, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9561.317920684814, + "relativeCreated": 9570.255517959595, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117322,8 +117269,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,997", - "created": 1610361458.9977827, + "asctime": "2021-01-14 00:26:21,578", + "created": 1610580381.578097, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117333,15 +117280,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 997.7827072143555, + "msecs": 578.0971050262451, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9561.51008605957, + "relativeCreated": 9570.588827133179, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117350,8 +117297,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:38,997", - "created": 1610361458.9978838, + "asctime": "2021-01-14 00:26:21,578", + "created": 1610580381.5782602, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117361,15 +117308,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 997.8837966918945, + "msecs": 578.2601833343506, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9561.61117553711, + "relativeCreated": 9570.751905441284, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117377,8 +117324,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.9980087, + "asctime": "2021-01-14 00:26:21,578", + "created": 1610580381.5784585, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117388,15 +117335,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 998.0087280273438, + "msecs": 578.4585475921631, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9561.736106872559, + "relativeCreated": 9570.950269699097, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117405,8 +117352,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.9980946, + "asctime": "2021-01-14 00:26:21,578", + "created": 1610580381.5785987, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117416,15 +117363,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 998.0945587158203, + "msecs": 578.5987377166748, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9561.821937561035, + "relativeCreated": 9571.090459823608, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117432,8 +117379,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.9982197, + "asctime": "2021-01-14 00:26:21,578", + "created": 1610580381.578803, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117443,15 +117390,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 998.2197284698486, + "msecs": 578.8030624389648, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9561.947107315063, + "relativeCreated": 9571.294784545898, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117460,8 +117407,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.9983003, + "asctime": "2021-01-14 00:26:21,578", + "created": 1610580381.5789363, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117471,15 +117418,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 998.300313949585, + "msecs": 578.9363384246826, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9562.0276927948, + "relativeCreated": 9571.428060531616, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117487,8 +117434,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.9984365, + "asctime": "2021-01-14 00:26:21,579", + "created": 1610580381.5791242, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117498,15 +117445,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 998.436450958252, + "msecs": 579.1242122650146, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9562.163829803467, + "relativeCreated": 9571.615934371948, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117515,8 +117462,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.998519, + "asctime": "2021-01-14 00:26:21,579", + "created": 1610580381.5792842, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117526,15 +117473,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 998.5189437866211, + "msecs": 579.2841911315918, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9562.246322631836, + "relativeCreated": 9571.775913238525, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117542,8 +117489,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.9986303, + "asctime": "2021-01-14 00:26:21,579", + "created": 1610580381.5794575, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117553,15 +117500,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 998.6302852630615, + "msecs": 579.4575214385986, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9562.357664108276, + "relativeCreated": 9571.949243545532, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117570,8 +117517,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.9987202, + "asctime": "2021-01-14 00:26:21,579", + "created": 1610580381.5796032, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117581,15 +117528,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 998.7201690673828, + "msecs": 579.6031951904297, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9562.447547912598, + "relativeCreated": 9572.094917297363, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117597,8 +117544,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:38,998", - "created": 1610361458.998888, + "asctime": "2021-01-14 00:26:21,579", + "created": 1610580381.5798821, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -117608,15 +117555,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 998.8880157470703, + "msecs": 579.8821449279785, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9562.615394592285, + "relativeCreated": 9572.373867034912, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117624,8 +117571,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:39,003", - "created": 1610361459.0031838, + "asctime": "2021-01-14 00:26:21,584", + "created": 1610580381.5842552, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -117635,15 +117582,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 3.1838417053222656, + "msecs": 584.2552185058594, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9566.911220550537, + "relativeCreated": 9576.746940612793, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117651,8 +117598,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,003", - "created": 1610361459.0034544, + "asctime": "2021-01-14 00:26:21,584", + "created": 1610580381.5846028, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117662,15 +117609,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 3.454446792602539, + "msecs": 584.6028327941895, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9567.181825637817, + "relativeCreated": 9577.094554901123, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117679,8 +117626,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:39,003", - "created": 1610361459.0035563, + "asctime": "2021-01-14 00:26:21,584", + "created": 1610580381.5847268, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117690,15 +117637,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 3.5562515258789062, + "msecs": 584.7268104553223, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9567.283630371094, + "relativeCreated": 9577.218532562256, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117706,8 +117653,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" ], - "asctime": "2021-01-11 11:37:39,003", - "created": 1610361459.003734, + "asctime": "2021-01-14 00:26:21,584", + "created": 1610580381.5849388, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -117717,15 +117664,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", "module": "stp", - "msecs": 3.734111785888672, + "msecs": 584.9387645721436, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9567.461490631104, + "relativeCreated": 9577.430486679077, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { @@ -117736,74 +117683,74 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:39,003", - "created": 1610361459.0039809, + "asctime": "2021-01-14 00:26:21,585", + "created": 1610580381.5852754, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 3.980875015258789, + "msecs": 585.275411605835, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9567.708253860474, + "relativeCreated": 9577.767133712769, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:39,004", - "created": 1610361459.004116, + "asctime": "2021-01-14 00:26:21,585", + "created": 1610580381.5854378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 4.116058349609375, + "msecs": 585.4377746582031, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9567.843437194824, + "relativeCreated": 9577.929496765137, "stack_info": null, - "thread": 139976968742656, + "thread": 140582013867776, "threadName": "Thread-11" } ], - "msecs": 189.58330154418945, + "msecs": 769.7067260742188, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9753.310680389404, + "relativeCreated": 9762.198448181152, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.18546724319458008 + "time_consumption": 0.18426895141601562 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:39,190", - "created": 1610361459.190337, + "asctime": "2021-01-14 00:26:21,770", + "created": 1610580381.770549, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117820,8 +117767,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:39,190", - "created": 1610361459.1900105, + "asctime": "2021-01-14 00:26:21,770", + "created": 1610580381.770211, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117831,15 +117778,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 190.01054763793945, + "msecs": 770.2109813690186, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9753.737926483154, + "relativeCreated": 9762.702703475952, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -117848,8 +117795,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:39,190", - "created": 1610361459.190184, + "asctime": "2021-01-14 00:26:21,770", + "created": 1610580381.7703905, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117859,37 +117806,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 190.1841163635254, + "msecs": 770.390510559082, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9753.91149520874, + "relativeCreated": 9762.882232666016, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 190.3369426727295, + "msecs": 770.5490589141846, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9754.064321517944, + "relativeCreated": 9763.040781021118, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015282630920410156 + "time_consumption": 0.00015854835510253906 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:39,190", - "created": 1610361459.190929, + "asctime": "2021-01-14 00:26:21,771", + "created": 1610580381.7711449, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117906,8 +117853,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:39,190", - "created": 1610361459.190604, + "asctime": "2021-01-14 00:26:21,770", + "created": 1610580381.770822, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117917,15 +117864,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 190.60397148132324, + "msecs": 770.8220481872559, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9754.331350326538, + "relativeCreated": 9763.31377029419, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -117934,8 +117881,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:39,190", - "created": 1610361459.1907558, + "asctime": "2021-01-14 00:26:21,770", + "created": 1610580381.7709785, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -117945,34 +117892,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 190.75584411621094, + "msecs": 770.9784507751465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9754.483222961426, + "relativeCreated": 9763.47017288208, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 190.92893600463867, + "msecs": 771.1448669433594, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9754.656314849854, + "relativeCreated": 9763.636589050293, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00017309188842773438 + "time_consumption": 0.00016641616821289062 }, { "args": [], - "asctime": "2021-01-11 11:37:39,392", - "created": 1610361459.3925278, + "asctime": "2021-01-14 00:26:21,972", + "created": 1610580381.9728272, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -117991,26 +117938,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:39,191", - "created": 1610361459.1912782, + "asctime": "2021-01-14 00:26:21,771", + "created": 1610580381.7714953, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 191.27821922302246, + "msecs": 771.4953422546387, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9755.005598068237, + "relativeCreated": 9763.987064361572, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118018,8 +117965,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:39,192", - "created": 1610361459.1921422, + "asctime": "2021-01-14 00:26:21,772", + "created": 1610580381.7726917, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118029,15 +117976,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 192.14224815368652, + "msecs": 772.6917266845703, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9755.869626998901, + "relativeCreated": 9765.183448791504, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118045,8 +117992,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:39,200", - "created": 1610361459.2006247, + "asctime": "2021-01-14 00:26:21,781", + "created": 1610580381.7811809, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118056,15 +118003,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 200.6247043609619, + "msecs": 781.1808586120605, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9764.352083206177, + "relativeCreated": 9773.672580718994, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118072,8 +118019,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,200", - "created": 1610361459.2009492, + "asctime": "2021-01-14 00:26:21,781", + "created": 1610580381.7814734, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118083,15 +118030,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 200.94919204711914, + "msecs": 781.4733982086182, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9764.676570892334, + "relativeCreated": 9773.965120315552, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118100,8 +118047,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:39,201", - "created": 1610361459.2010956, + "asctime": "2021-01-14 00:26:21,781", + "created": 1610580381.7816412, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118111,15 +118058,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 201.0955810546875, + "msecs": 781.6412448883057, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9764.822959899902, + "relativeCreated": 9774.13296699524, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118127,8 +118074,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,201", - "created": 1610361459.201293, + "asctime": "2021-01-14 00:26:21,781", + "created": 1610580381.7818854, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118138,15 +118085,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 201.2929916381836, + "msecs": 781.8853855133057, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9765.020370483398, + "relativeCreated": 9774.37710762024, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118155,8 +118102,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,201", - "created": 1610361459.2014186, + "asctime": "2021-01-14 00:26:21,782", + "created": 1610580381.7820308, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118166,15 +118113,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 201.41863822937012, + "msecs": 782.0308208465576, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9765.146017074585, + "relativeCreated": 9774.522542953491, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118182,8 +118129,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,201", - "created": 1610361459.201601, + "asctime": "2021-01-14 00:26:21,782", + "created": 1610580381.7822394, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118193,15 +118140,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 201.6010284423828, + "msecs": 782.2394371032715, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9765.328407287598, + "relativeCreated": 9774.731159210205, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118210,8 +118157,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,201", - "created": 1610361459.2017212, + "asctime": "2021-01-14 00:26:21,782", + "created": 1610580381.7823732, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118221,15 +118168,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 201.72119140625, + "msecs": 782.3731899261475, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9765.448570251465, + "relativeCreated": 9774.864912033081, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118237,8 +118184,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,201", - "created": 1610361459.2019043, + "asctime": "2021-01-14 00:26:21,782", + "created": 1610580381.7825735, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118248,15 +118195,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 201.904296875, + "msecs": 782.5734615325928, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9765.631675720215, + "relativeCreated": 9775.065183639526, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118265,8 +118212,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,202", - "created": 1610361459.2020226, + "asctime": "2021-01-14 00:26:21,782", + "created": 1610580381.7827103, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118276,15 +118223,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 202.02255249023438, + "msecs": 782.7103137969971, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9765.74993133545, + "relativeCreated": 9775.20203590393, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118292,8 +118239,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,202", - "created": 1610361459.2021742, + "asctime": "2021-01-14 00:26:21,782", + "created": 1610580381.782894, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118303,15 +118250,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 202.17418670654297, + "msecs": 782.8938961029053, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9765.901565551758, + "relativeCreated": 9775.385618209839, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118320,8 +118267,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,202", - "created": 1610361459.2023196, + "asctime": "2021-01-14 00:26:21,783", + "created": 1610580381.7830243, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118331,15 +118278,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 202.31962203979492, + "msecs": 783.0243110656738, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9766.04700088501, + "relativeCreated": 9775.516033172607, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118347,8 +118294,8 @@ "comm-server:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:39,202", - "created": 1610361459.2025745, + "asctime": "2021-01-14 00:26:21,783", + "created": 1610580381.783292, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118358,15 +118305,15 @@ "lineno": 284, "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 202.5744915008545, + "msecs": 783.2920551300049, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9766.30187034607, + "relativeCreated": 9775.783777236938, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118374,8 +118321,8 @@ "comm-client:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:39,206", - "created": 1610361459.2069669, + "asctime": "2021-01-14 00:26:21,787", + "created": 1610580381.7876961, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118385,15 +118332,15 @@ "lineno": 414, "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 206.96687698364258, + "msecs": 787.696123123169, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9770.694255828857, + "relativeCreated": 9780.187845230103, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118401,8 +118348,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,207", - "created": 1610361459.2073405, + "asctime": "2021-01-14 00:26:21,788", + "created": 1610580381.7880607, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118412,15 +118359,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 207.34047889709473, + "msecs": 788.0606651306152, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9771.06785774231, + "relativeCreated": 9780.552387237549, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118429,8 +118376,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:39,207", - "created": 1610361459.207489, + "asctime": "2021-01-14 00:26:21,788", + "created": 1610580381.7881973, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118440,15 +118387,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 207.489013671875, + "msecs": 788.1972789764404, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9771.21639251709, + "relativeCreated": 9780.689001083374, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118456,8 +118403,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" ], - "asctime": "2021-01-11 11:37:39,207", - "created": 1610361459.2077491, + "asctime": "2021-01-14 00:26:21,788", + "created": 1610580381.7884467, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -118467,15 +118414,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", "module": "stp", - "msecs": 207.7491283416748, + "msecs": 788.4466648101807, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9771.47650718689, + "relativeCreated": 9780.938386917114, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { @@ -118486,74 +118433,74 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:39,208", - "created": 1610361459.2080944, + "asctime": "2021-01-14 00:26:21,788", + "created": 1610580381.7887697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 208.09435844421387, + "msecs": 788.7697219848633, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9771.821737289429, + "relativeCreated": 9781.261444091797, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:39,208", - "created": 1610361459.2082882, + "asctime": "2021-01-14 00:26:21,788", + "created": 1610580381.7889483, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 208.28819274902344, + "msecs": 788.9482975006104, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9772.015571594238, + "relativeCreated": 9781.440019607544, "stack_info": null, - "thread": 139976960349952, + "thread": 140581460244224, "threadName": "Thread-12" } ], - "msecs": 392.52781867980957, + "msecs": 972.8271961212158, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9956.255197525024, + "relativeCreated": 9965.31891822815, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.18423962593078613 + "time_consumption": 0.18387889862060547 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:39,393", - "created": 1610361459.3933275, + "asctime": "2021-01-14 00:26:21,973", + "created": 1610580381.9736679, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -118570,8 +118517,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:39,392", - "created": 1610361459.393, + "asctime": "2021-01-14 00:26:21,973", + "created": 1610580381.9733298, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -118581,15 +118528,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 392.99988746643066, + "msecs": 973.3297824859619, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9956.727266311646, + "relativeCreated": 9965.821504592896, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118598,8 +118545,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:39,393", - "created": 1610361459.3931756, + "asctime": "2021-01-14 00:26:21,973", + "created": 1610580381.9735098, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -118609,37 +118556,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 393.1756019592285, + "msecs": 973.5097885131836, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9956.902980804443, + "relativeCreated": 9966.001510620117, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 393.3274745941162, + "msecs": 973.6678600311279, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9957.054853439331, + "relativeCreated": 9966.159582138062, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001518726348876953 + "time_consumption": 0.00015807151794433594 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:39,393", - "created": 1610361459.393884, + "asctime": "2021-01-14 00:26:21,974", + "created": 1610580381.974233, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -118656,8 +118603,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:39,393", - "created": 1610361459.3935654, + "asctime": "2021-01-14 00:26:21,973", + "created": 1610580381.9739091, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -118667,15 +118614,15 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 393.56541633605957, + "msecs": 973.9091396331787, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9957.292795181274, + "relativeCreated": 9966.400861740112, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118684,8 +118631,8 @@ "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:39,393", - "created": 1610361459.3937376, + "asctime": "2021-01-14 00:26:21,974", + "created": 1610580381.9740841, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -118695,41 +118642,41 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 393.7375545501709, + "msecs": 974.0841388702393, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9957.464933395386, + "relativeCreated": 9966.575860977173, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 393.88394355773926, + "msecs": 974.2329120635986, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9957.611322402954, + "relativeCreated": 9966.724634170532, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014638900756835938 + "time_consumption": 0.000148773193359375 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 2.4780290126800537, - "time_finished": "2021-01-11 11:37:39,393", - "time_start": "2021-01-11 11:37:36,915" + "time_consumption": 2.4797801971435547, + "time_finished": "2021-01-14 00:26:21,974", + "time_start": "2021-01-14 00:26:19,494" }, "_Lmn-kE0hEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:39,394", - "created": 1610361459.3948975, + "asctime": "2021-01-14 00:26:21,975", + "created": 1610580381.975253, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118740,19 +118687,19 @@ "message": "_Lmn-kE0hEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 394.8974609375, + "msecs": 975.2531051635742, "msg": "_Lmn-kE0hEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9958.624839782715, + "relativeCreated": 9967.744827270508, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:39,403", - "created": 1610361459.403875, + "asctime": "2021-01-14 00:26:21,984", + "created": 1610580381.9845126, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -118767,8 +118714,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:39,395", - "created": 1610361459.3959134, + "asctime": "2021-01-14 00:26:21,976", + "created": 1610580381.9765644, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118778,23 +118725,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 395.91336250305176, + "msecs": 976.5644073486328, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9959.640741348267, + "relativeCreated": 9969.056129455566, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:39,396", - "created": 1610361459.3968074, + "asctime": "2021-01-14 00:26:21,977", + "created": 1610580381.9774828, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118804,23 +118751,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 396.8074321746826, + "msecs": 977.482795715332, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9960.534811019897, + "relativeCreated": 9969.974517822266, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:39,397", - "created": 1610361459.397033, + "asctime": "2021-01-14 00:26:21,977", + "created": 1610580381.977699, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -118830,41 +118777,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 397.0329761505127, + "msecs": 977.6990413665771, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9960.760354995728, + "relativeCreated": 9970.19076347351, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:39,397", - "created": 1610361459.3973567, + "asctime": "2021-01-14 00:26:21,978", + "created": 1610580381.9780385, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 397.3567485809326, + "msecs": 978.0385494232178, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9961.084127426147, + "relativeCreated": 9970.530271530151, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118873,26 +118820,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:39,397", - "created": 1610361459.397533, + "asctime": "2021-01-14 00:26:21,978", + "created": 1610580381.9782186, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 397.5329399108887, + "msecs": 978.2185554504395, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9961.260318756104, + "relativeCreated": 9970.710277557373, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118900,26 +118847,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:39,397", - "created": 1610361459.3977509, + "asctime": "2021-01-14 00:26:21,978", + "created": 1610580381.978441, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 397.7508544921875, + "msecs": 978.4409999847412, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9961.478233337402, + "relativeCreated": 9970.932722091675, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118927,26 +118874,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:39,397", - "created": 1610361459.397908, + "asctime": "2021-01-14 00:26:21,978", + "created": 1610580381.9785976, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 397.90797233581543, + "msecs": 978.5976409912109, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9961.63535118103, + "relativeCreated": 9971.089363098145, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118954,26 +118901,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:39,398", - "created": 1610361459.3980527, + "asctime": "2021-01-14 00:26:21,978", + "created": 1610580381.9787436, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 398.0526924133301, + "msecs": 978.7435531616211, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9961.780071258545, + "relativeCreated": 9971.235275268555, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -118981,26 +118928,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:39,398", - "created": 1610361459.3982074, + "asctime": "2021-01-14 00:26:21,978", + "created": 1610580381.978886, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 398.207426071167, + "msecs": 978.8858890533447, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9961.934804916382, + "relativeCreated": 9971.377611160278, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119010,8 +118957,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:39,398", - "created": 1610361459.398367, + "asctime": "2021-01-14 00:26:21,979", + "created": 1610580381.979062, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119021,15 +118968,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 398.36692810058594, + "msecs": 979.0620803833008, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9962.0943069458, + "relativeCreated": 9971.553802490234, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119039,8 +118986,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:39,398", - "created": 1610361459.3985264, + "asctime": "2021-01-14 00:26:21,979", + "created": 1610580381.9792256, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119050,15 +118997,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 398.5264301300049, + "msecs": 979.2256355285645, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9962.25380897522, + "relativeCreated": 9971.717357635498, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119068,8 +119015,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:39,398", - "created": 1610361459.3986785, + "asctime": "2021-01-14 00:26:21,979", + "created": 1610580381.9793847, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119079,15 +119026,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 398.6785411834717, + "msecs": 979.3846607208252, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9962.405920028687, + "relativeCreated": 9971.876382827759, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119097,8 +119044,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:39,398", - "created": 1610361459.3988278, + "asctime": "2021-01-14 00:26:21,979", + "created": 1610580381.9795387, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119108,41 +119055,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 398.82779121398926, + "msecs": 979.5386791229248, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9962.555170059204, + "relativeCreated": 9972.030401229858, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:39,398", - "created": 1610361459.3989608, + "asctime": "2021-01-14 00:26:21,979", + "created": 1610580381.9796796, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 398.96082878112793, + "msecs": 979.6795845031738, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9962.688207626343, + "relativeCreated": 9972.171306610107, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119151,26 +119098,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:39,399", - "created": 1610361459.3991115, + "asctime": "2021-01-14 00:26:21,979", + "created": 1610580381.9798338, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 399.1115093231201, + "msecs": 979.8338413238525, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9962.838888168335, + "relativeCreated": 9972.325563430786, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119178,26 +119125,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:39,399", - "created": 1610361459.399275, + "asctime": "2021-01-14 00:26:21,980", + "created": 1610580381.980001, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 399.2750644683838, + "msecs": 980.0009727478027, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9963.002443313599, + "relativeCreated": 9972.492694854736, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119205,26 +119152,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:39,399", - "created": 1610361459.3994172, + "asctime": "2021-01-14 00:26:21,980", + "created": 1610580381.9801462, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 399.4171619415283, + "msecs": 980.1461696624756, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9963.144540786743, + "relativeCreated": 9972.63789176941, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119234,8 +119181,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:39,399", - "created": 1610361459.3995643, + "asctime": "2021-01-14 00:26:21,980", + "created": 1610580381.9802997, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119245,15 +119192,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 399.564266204834, + "msecs": 980.299711227417, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9963.291645050049, + "relativeCreated": 9972.79143333435, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119263,8 +119210,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:39,399", - "created": 1610361459.3997405, + "asctime": "2021-01-14 00:26:21,980", + "created": 1610580381.9804616, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119274,15 +119221,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 399.74045753479004, + "msecs": 980.461597442627, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9963.467836380005, + "relativeCreated": 9972.95331954956, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119291,26 +119238,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:39,399", - "created": 1610361459.3998895, + "asctime": "2021-01-14 00:26:21,980", + "created": 1610580381.98061, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 399.8894691467285, + "msecs": 980.6098937988281, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9963.616847991943, + "relativeCreated": 9973.101615905762, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119319,26 +119266,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:39,400", - "created": 1610361459.4000268, + "asctime": "2021-01-14 00:26:21,980", + "created": 1610580381.9807508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 400.026798248291, + "msecs": 980.7507991790771, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9963.754177093506, + "relativeCreated": 9973.24252128601, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119347,78 +119294,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:39,400", - "created": 1610361459.4001617, + "asctime": "2021-01-14 00:26:21,980", + "created": 1610580381.9809022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 400.1617431640625, + "msecs": 980.9021949768066, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9963.889122009277, + "relativeCreated": 9973.39391708374, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:39,400", - "created": 1610361459.4002979, + "asctime": "2021-01-14 00:26:21,981", + "created": 1610580381.9810438, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 400.2978801727295, + "msecs": 981.043815612793, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9964.025259017944, + "relativeCreated": 9973.535537719727, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:39,400", - "created": 1610361459.4005709, + "asctime": "2021-01-14 00:26:21,981", + "created": 1610580381.9813607, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 400.5708694458008, + "msecs": 981.360673904419, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9964.298248291016, + "relativeCreated": 9973.852396011353, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119427,26 +119374,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:39,400", - "created": 1610361459.4007316, + "asctime": "2021-01-14 00:26:21,981", + "created": 1610580381.9815176, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 400.73156356811523, + "msecs": 981.5175533294678, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9964.45894241333, + "relativeCreated": 9974.009275436401, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119454,26 +119401,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:39,400", - "created": 1610361459.4009635, + "asctime": "2021-01-14 00:26:21,981", + "created": 1610580381.981717, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 400.96354484558105, + "msecs": 981.7171096801758, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9964.690923690796, + "relativeCreated": 9974.20883178711, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119481,26 +119428,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:39,401", - "created": 1610361459.4011137, + "asctime": "2021-01-14 00:26:21,981", + "created": 1610580381.9818695, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 401.11374855041504, + "msecs": 981.8694591522217, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9964.84112739563, + "relativeCreated": 9974.361181259155, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119508,26 +119455,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:39,401", - "created": 1610361459.401254, + "asctime": "2021-01-14 00:26:21,982", + "created": 1610580381.9820232, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 401.25393867492676, + "msecs": 982.0232391357422, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9964.981317520142, + "relativeCreated": 9974.514961242676, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119535,26 +119482,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:39,401", - "created": 1610361459.4013934, + "asctime": "2021-01-14 00:26:21,982", + "created": 1610580381.9821663, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 401.3934135437012, + "msecs": 982.1662902832031, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9965.120792388916, + "relativeCreated": 9974.658012390137, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119564,8 +119511,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:39,401", - "created": 1610361459.401637, + "asctime": "2021-01-14 00:26:21,982", + "created": 1610580381.982329, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119575,15 +119522,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 401.63707733154297, + "msecs": 982.3288917541504, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9965.364456176758, + "relativeCreated": 9974.820613861084, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119593,8 +119540,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:39,401", - "created": 1610361459.401868, + "asctime": "2021-01-14 00:26:21,982", + "created": 1610580381.9825103, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119604,15 +119551,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 401.8681049346924, + "msecs": 982.5103282928467, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9965.595483779907, + "relativeCreated": 9975.00205039978, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119622,8 +119569,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:39,402", - "created": 1610361459.402036, + "asctime": "2021-01-14 00:26:21,982", + "created": 1610580381.9826684, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119633,15 +119580,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 402.0359516143799, + "msecs": 982.668399810791, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9965.763330459595, + "relativeCreated": 9975.160121917725, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119651,8 +119598,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:39,402", - "created": 1610361459.4021864, + "asctime": "2021-01-14 00:26:21,982", + "created": 1610580381.9828196, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119662,41 +119609,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 402.18639373779297, + "msecs": 982.8195571899414, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9965.913772583008, + "relativeCreated": 9975.311279296875, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:39,402", - "created": 1610361459.4023201, + "asctime": "2021-01-14 00:26:21,982", + "created": 1610580381.982955, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 402.32014656066895, + "msecs": 982.9549789428711, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9966.047525405884, + "relativeCreated": 9975.446701049805, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119705,26 +119652,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:39,402", - "created": 1610361459.4024696, + "asctime": "2021-01-14 00:26:21,983", + "created": 1610580381.9831157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 402.4696350097656, + "msecs": 983.1156730651855, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9966.19701385498, + "relativeCreated": 9975.60739517212, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119732,26 +119679,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:39,402", - "created": 1610361459.4026537, + "asctime": "2021-01-14 00:26:21,983", + "created": 1610580381.9832883, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 402.65369415283203, + "msecs": 983.2882881164551, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9966.381072998047, + "relativeCreated": 9975.780010223389, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119759,26 +119706,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:39,402", - "created": 1610361459.4028075, + "asctime": "2021-01-14 00:26:21,983", + "created": 1610580381.9834425, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 402.80747413635254, + "msecs": 983.4425449371338, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9966.534852981567, + "relativeCreated": 9975.934267044067, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119788,8 +119735,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:39,402", - "created": 1610361459.4029548, + "asctime": "2021-01-14 00:26:21,983", + "created": 1610580381.9835982, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119799,15 +119746,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 402.9548168182373, + "msecs": 983.5982322692871, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9966.682195663452, + "relativeCreated": 9976.08995437622, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119817,8 +119764,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:39,403", - "created": 1610361459.4031138, + "asctime": "2021-01-14 00:26:21,983", + "created": 1610580381.9837515, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119828,15 +119775,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 403.11384201049805, + "msecs": 983.7515354156494, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9966.841220855713, + "relativeCreated": 9976.243257522583, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119845,26 +119792,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:39,403", - "created": 1610361459.4032848, + "asctime": "2021-01-14 00:26:21,983", + "created": 1610580381.9839177, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 403.28478813171387, + "msecs": 983.9177131652832, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9967.012166976929, + "relativeCreated": 9976.409435272217, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119873,26 +119820,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:39,403", - "created": 1610361459.4034388, + "asctime": "2021-01-14 00:26:21,984", + "created": 1610580381.9840822, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 403.4388065338135, + "msecs": 984.0822219848633, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9967.166185379028, + "relativeCreated": 9976.573944091797, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -119901,71 +119848,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:39,403", - "created": 1610361459.4036055, + "asctime": "2021-01-14 00:26:21,984", + "created": 1610580381.9842203, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 403.60546112060547, + "msecs": 984.2202663421631, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9967.33283996582, + "relativeCreated": 9976.711988449097, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:39,403", - "created": 1610361459.4037464, + "asctime": "2021-01-14 00:26:21,984", + "created": 1610580381.9843795, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 403.7463665008545, + "msecs": 984.3795299530029, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9967.47374534607, + "relativeCreated": 9976.871252059937, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 403.87511253356934, + "msecs": 984.5125675201416, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9967.602491378784, + "relativeCreated": 9977.004289627075, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00012874603271484375 + "time_consumption": 0.00013303756713867188 }, { "args": [], - "asctime": "2021-01-11 11:37:39,748", - "created": 1610361459.7482913, + "asctime": "2021-01-14 00:26:22,328", + "created": 1610580382.3287194, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -119980,8 +119927,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:39,404", - "created": 1610361459.404165, + "asctime": "2021-01-14 00:26:21,984", + "created": 1610580381.9848082, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -119991,23 +119938,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 404.16502952575684, + "msecs": 984.8082065582275, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9967.892408370972, + "relativeCreated": 9977.299928665161, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:39,404", - "created": 1610361459.4043055, + "asctime": "2021-01-14 00:26:21,984", + "created": 1610580381.9849496, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120017,41 +119964,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 404.30545806884766, + "msecs": 984.9495887756348, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9968.032836914062, + "relativeCreated": 9977.441310882568, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:39,404", - "created": 1610361459.4044435, + "asctime": "2021-01-14 00:26:21,985", + "created": 1610580381.9850903, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 404.44350242614746, + "msecs": 985.0902557373047, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9968.170881271362, + "relativeCreated": 9977.581977844238, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -120062,34 +120009,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:39,404", - "created": 1610361459.4046957, + "asctime": "2021-01-14 00:26:21,985", + "created": 1610580381.985235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 404.6957492828369, + "msecs": 985.2349758148193, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9968.423128128052, + "relativeCreated": 9977.726697921753, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:39,404", - "created": 1610361459.4049447, + "asctime": "2021-01-14 00:26:21,985", + "created": 1610580381.9854224, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120099,23 +120046,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 404.94465827941895, + "msecs": 985.4223728179932, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9968.672037124634, + "relativeCreated": 9977.914094924927, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:39,404", - "created": 1610361459.4049995, + "asctime": "2021-01-14 00:26:21,985", + "created": 1610580381.9854724, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120125,41 +120072,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 404.9994945526123, + "msecs": 985.4724407196045, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9968.726873397827, + "relativeCreated": 9977.964162826538, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:39,405", - "created": 1610361459.405045, + "asctime": "2021-01-14 00:26:21,985", + "created": 1610580381.9855225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 405.0450325012207, + "msecs": 985.5225086212158, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9968.772411346436, + "relativeCreated": 9978.01423072815, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -120167,8 +120114,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:39,405", - "created": 1610361459.4054255, + "asctime": "2021-01-14 00:26:21,985", + "created": 1610580381.9857795, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120178,15 +120125,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 405.4255485534668, + "msecs": 985.7795238494873, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9969.152927398682, + "relativeCreated": 9978.27124595642, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120194,8 +120141,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:39,413", - "created": 1610361459.4135783, + "asctime": "2021-01-14 00:26:21,993", + "created": 1610580381.9939516, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120205,15 +120152,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 413.5782718658447, + "msecs": 993.9515590667725, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.30565071106, + "relativeCreated": 9986.443281173706, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120221,8 +120168,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,413", - "created": 1610361459.4136953, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9940915, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120232,15 +120179,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 413.6953353881836, + "msecs": 994.0915107727051, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.422714233398, + "relativeCreated": 9986.583232879639, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120249,8 +120196,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:39,413", - "created": 1610361459.413746, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9941463, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120260,15 +120207,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 413.7461185455322, + "msecs": 994.1463470458984, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.473497390747, + "relativeCreated": 9986.638069152832, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120276,8 +120223,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,413", - "created": 1610361459.4138076, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9942117, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120287,15 +120234,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 413.80763053894043, + "msecs": 994.2116737365723, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.535009384155, + "relativeCreated": 9986.703395843506, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120304,8 +120251,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,413", - "created": 1610361459.4138515, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9942553, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120315,15 +120262,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 413.8514995574951, + "msecs": 994.2553043365479, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.57887840271, + "relativeCreated": 9986.747026443481, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120331,8 +120278,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,413", - "created": 1610361459.4139128, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9943175, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120342,15 +120289,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 413.9127731323242, + "msecs": 994.3175315856934, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.640151977539, + "relativeCreated": 9986.809253692627, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120359,8 +120306,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,413", - "created": 1610361459.4139533, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9943607, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120370,15 +120317,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 413.9533042907715, + "msecs": 994.3606853485107, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.680683135986, + "relativeCreated": 9986.852407455444, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120386,8 +120333,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,414", - "created": 1610361459.414023, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9944365, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120397,15 +120344,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 414.02292251586914, + "msecs": 994.436502456665, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.750301361084, + "relativeCreated": 9986.928224563599, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120414,8 +120361,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,414", - "created": 1610361459.4140625, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9944775, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120425,15 +120372,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 414.0625, + "msecs": 994.4775104522705, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.789878845215, + "relativeCreated": 9986.969232559204, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120441,8 +120388,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,414", - "created": 1610361459.4141178, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9945319, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120452,15 +120399,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 414.11781311035156, + "msecs": 994.5318698883057, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.845191955566, + "relativeCreated": 9987.02359199524, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120469,8 +120416,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,414", - "created": 1610361459.4141624, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9945726, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120480,15 +120427,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 414.16239738464355, + "msecs": 994.572639465332, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.889776229858, + "relativeCreated": 9987.064361572266, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120496,8 +120443,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:39,414", - "created": 1610361459.414244, + "asctime": "2021-01-14 00:26:21,994", + "created": 1610580381.9946582, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120507,15 +120454,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 414.2439365386963, + "msecs": 994.6582317352295, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9977.971315383911, + "relativeCreated": 9987.149953842163, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120523,8 +120470,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:39,415", - "created": 1610361459.4152195, + "asctime": "2021-01-14 00:26:21,995", + "created": 1610580381.995641, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120534,15 +120481,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 415.2195453643799, + "msecs": 995.6409931182861, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9978.946924209595, + "relativeCreated": 9988.13271522522, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120550,8 +120497,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,415", - "created": 1610361459.4154055, + "asctime": "2021-01-14 00:26:21,995", + "created": 1610580381.9958472, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120561,15 +120508,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 415.4055118560791, + "msecs": 995.847225189209, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9979.132890701294, + "relativeCreated": 9988.338947296143, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120578,8 +120525,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:39,415", - "created": 1610361459.4154942, + "asctime": "2021-01-14 00:26:21,995", + "created": 1610580381.9959383, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120589,15 +120536,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 415.4942035675049, + "msecs": 995.9383010864258, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9979.22158241272, + "relativeCreated": 9988.43002319336, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120605,8 +120552,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:39,415", - "created": 1610361459.4156523, + "asctime": "2021-01-14 00:26:21,996", + "created": 1610580381.9960778, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120616,15 +120563,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 415.6522750854492, + "msecs": 996.0777759552002, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9979.379653930664, + "relativeCreated": 9988.569498062134, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120635,26 +120582,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:39,415", - "created": 1610361459.41587, + "asctime": "2021-01-14 00:26:21,996", + "created": 1610580381.9963002, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 415.86995124816895, + "msecs": 996.300220489502, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9979.597330093384, + "relativeCreated": 9988.791942596436, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120662,26 +120609,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:39,415", - "created": 1610361459.415971, + "asctime": "2021-01-14 00:26:21,996", + "created": 1610580381.9964006, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 415.971040725708, + "msecs": 996.4005947113037, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9979.698419570923, + "relativeCreated": 9988.892316818237, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120692,26 +120639,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:39,416", - "created": 1610361459.416107, + "asctime": "2021-01-14 00:26:21,996", + "created": 1610580381.9965398, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 416.1069393157959, + "msecs": 996.539831161499, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9979.83431816101, + "relativeCreated": 9989.031553268433, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -120719,8 +120666,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:39,416", - "created": 1610361459.4165492, + "asctime": "2021-01-14 00:26:21,996", + "created": 1610580381.9969904, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120730,15 +120677,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 416.5492057800293, + "msecs": 996.990442276001, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9980.276584625244, + "relativeCreated": 9989.482164382935, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120746,8 +120693,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:39,424", - "created": 1610361459.424876, + "asctime": "2021-01-14 00:26:22,005", + "created": 1610580382.0052707, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -120757,15 +120704,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 424.87597465515137, + "msecs": 5.270719528198242, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9988.603353500366, + "relativeCreated": 9997.762441635132, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120773,8 +120720,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4250448, + "asctime": "2021-01-14 00:26:22,005", + "created": 1610580382.0054502, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120784,15 +120731,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 425.0447750091553, + "msecs": 5.450248718261719, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9988.77215385437, + "relativeCreated": 9997.941970825195, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120801,8 +120748,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4251318, + "asctime": "2021-01-14 00:26:22,005", + "created": 1610580382.0055416, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120812,15 +120759,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 425.13179779052734, + "msecs": 5.541563034057617, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9988.859176635742, + "relativeCreated": 9998.033285140991, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120828,8 +120775,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4252353, + "asctime": "2021-01-14 00:26:22,005", + "created": 1610580382.005651, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120839,15 +120786,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 425.2352714538574, + "msecs": 5.650997161865234, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9988.962650299072, + "relativeCreated": 9998.142719268799, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120856,8 +120803,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4253082, + "asctime": "2021-01-14 00:26:22,005", + "created": 1610580382.0057273, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120867,15 +120814,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 425.3082275390625, + "msecs": 5.727291107177734, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.035606384277, + "relativeCreated": 9998.219013214111, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120883,8 +120830,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4254153, + "asctime": "2021-01-14 00:26:22,005", + "created": 1610580382.0058365, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120894,15 +120841,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 425.4152774810791, + "msecs": 5.83648681640625, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.142656326294, + "relativeCreated": 9998.32820892334, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120911,8 +120858,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.425484, + "asctime": "2021-01-14 00:26:22,005", + "created": 1610580382.0059085, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120922,15 +120869,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 425.48394203186035, + "msecs": 5.908489227294922, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.211320877075, + "relativeCreated": 9998.400211334229, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120938,8 +120885,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4255784, + "asctime": "2021-01-14 00:26:22,006", + "created": 1610580382.006006, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120949,15 +120896,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 425.57835578918457, + "msecs": 6.006002426147461, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.3057346344, + "relativeCreated": 9998.497724533081, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120966,8 +120913,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4256496, + "asctime": "2021-01-14 00:26:22,006", + "created": 1610580382.00608, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -120977,15 +120924,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 425.64964294433594, + "msecs": 6.079912185668945, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.37702178955, + "relativeCreated": 9998.571634292603, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -120993,8 +120940,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.4257574, + "asctime": "2021-01-14 00:26:22,006", + "created": 1610580382.006173, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121004,15 +120951,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 425.75740814208984, + "msecs": 6.172895431518555, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.484786987305, + "relativeCreated": 9998.664617538452, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121021,8 +120968,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.425828, + "asctime": "2021-01-14 00:26:22,006", + "created": 1610580382.0062587, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121032,15 +120979,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 425.8279800415039, + "msecs": 6.258726119995117, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.555358886719, + "relativeCreated": 9998.750448226929, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121048,8 +120995,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:39,425", - "created": 1610361459.425965, + "asctime": "2021-01-14 00:26:22,006", + "created": 1610580382.006395, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121059,15 +121006,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 425.9650707244873, + "msecs": 6.395101547241211, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9989.692449569702, + "relativeCreated": 9998.886823654175, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121075,8 +121022,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:39,426", - "created": 1610361459.4269629, + "asctime": "2021-01-14 00:26:22,007", + "created": 1610580382.0074008, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121086,15 +121033,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 426.96285247802734, + "msecs": 7.400751113891602, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9990.690231323242, + "relativeCreated": 9999.892473220825, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121102,8 +121049,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,427", - "created": 1610361459.4271572, + "asctime": "2021-01-14 00:26:22,007", + "created": 1610580382.0075982, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121113,15 +121060,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 427.1571636199951, + "msecs": 7.598161697387695, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9990.88454246521, + "relativeCreated": 10000.089883804321, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121130,8 +121077,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:39,427", - "created": 1610361459.4272604, + "asctime": "2021-01-14 00:26:22,007", + "created": 1610580382.007689, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121141,15 +121088,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 427.2603988647461, + "msecs": 7.688999176025391, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9990.987777709961, + "relativeCreated": 10000.180721282959, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121157,8 +121104,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:39,427", - "created": 1610361459.4273922, + "asctime": "2021-01-14 00:26:22,007", + "created": 1610580382.007824, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121168,15 +121115,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 427.39224433898926, + "msecs": 7.823944091796875, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9991.119623184204, + "relativeCreated": 10000.31566619873, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121187,26 +121134,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:39,427", - "created": 1610361459.4276018, + "asctime": "2021-01-14 00:26:22,008", + "created": 1610580382.0080376, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 427.60181427001953, + "msecs": 8.037567138671875, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9991.329193115234, + "relativeCreated": 10000.529289245605, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -121214,45 +121161,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:39,427", - "created": 1610361459.4277015, + "asctime": "2021-01-14 00:26:22,008", + "created": 1610580382.0081542, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 427.701473236084, + "msecs": 8.154153823852539, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 9991.428852081299, + "relativeCreated": 10000.645875930786, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" } ], - "msecs": 748.2912540435791, + "msecs": 328.7193775177002, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10312.018632888794, + "relativeCreated": 10321.211099624634, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3205897808074951 + "time_consumption": 0.32056522369384766 }, { "args": [], - "asctime": "2021-01-11 11:37:39,748", - "created": 1610361459.7487803, + "asctime": "2021-01-14 00:26:22,329", + "created": 1610580382.3293211, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -121263,15 +121210,15 @@ "message": "Setting no Channel name for server and client", "module": "test_communication", "moduleLogger": [], - "msecs": 748.7802505493164, + "msecs": 329.32114601135254, "msg": "Setting no Channel name for server and client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10312.507629394531, + "relativeCreated": 10321.812868118286, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -121280,8 +121227,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:39,749", - "created": 1610361459.749371, + "asctime": "2021-01-14 00:26:22,329", + "created": 1610580382.329946, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -121298,8 +121245,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:39,749", - "created": 1610361459.7490609, + "asctime": "2021-01-14 00:26:22,329", + "created": 1610580382.3296192, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -121309,15 +121256,15 @@ "lineno": 22, "message": "Result (Channel name of server): None ()", "module": "test", - "msecs": 749.060869216919, + "msecs": 329.6191692352295, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10312.788248062134, + "relativeCreated": 10322.110891342163, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -121326,8 +121273,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:39,749", - "created": 1610361459.7492216, + "asctime": "2021-01-14 00:26:22,329", + "created": 1610580382.3297913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -121337,37 +121284,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = None ()", "module": "test", - "msecs": 749.2215633392334, + "msecs": 329.7913074493408, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10312.948942184448, + "relativeCreated": 10322.283029556274, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 749.3710517883301, + "msecs": 329.94604110717773, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10313.098430633545, + "relativeCreated": 10322.437763214111, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001494884490966797 + "time_consumption": 0.00015473365783691406 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:39,749", - "created": 1610361459.7499108, + "asctime": "2021-01-14 00:26:22,330", + "created": 1610580382.330493, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -121384,8 +121331,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:39,749", - "created": 1610361459.7496257, + "asctime": "2021-01-14 00:26:22,330", + "created": 1610580382.330209, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -121395,15 +121342,15 @@ "lineno": 22, "message": "Result (Channel name of client): None ()", "module": "test", - "msecs": 749.6256828308105, + "msecs": 330.20901679992676, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10313.353061676025, + "relativeCreated": 10322.70073890686, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -121412,8 +121359,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:39,749", - "created": 1610361459.7497642, + "asctime": "2021-01-14 00:26:22,330", + "created": 1610580382.330352, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -121423,34 +121370,34 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = None ()", "module": "test", - "msecs": 749.7642040252686, + "msecs": 330.3520679473877, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10313.491582870483, + "relativeCreated": 10322.843790054321, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 749.910831451416, + "msecs": 330.4929733276367, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10313.63821029663, + "relativeCreated": 10322.98469543457, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014662742614746094 + "time_consumption": 0.00014090538024902344 }, { "args": [], - "asctime": "2021-01-11 11:37:39,750", - "created": 1610361459.7503357, + "asctime": "2021-01-14 00:26:22,330", + "created": 1610580382.3309393, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -121461,22 +121408,22 @@ "message": "Setting different Channel names for client and Server", "module": "test_communication", "moduleLogger": [], - "msecs": 750.335693359375, + "msecs": 330.93929290771484, "msg": "Setting different Channel names for client and Server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10314.06307220459, + "relativeCreated": 10323.431015014648, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:40,096", - "created": 1610361460.0960405, + "asctime": "2021-01-14 00:26:22,676", + "created": 1610580382.6767783, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -121491,8 +121438,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:39,750", - "created": 1610361459.750569, + "asctime": "2021-01-14 00:26:22,331", + "created": 1610580382.331179, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121502,49 +121449,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 750.5691051483154, + "msecs": 331.1789035797119, "msg": "%s Connection Lost...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10314.29648399353, + "relativeCreated": 10323.670625686646, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:39,750", - "created": 1610361459.7507432, + "asctime": "2021-01-14 00:26:22,331", + "created": 1610580382.331358, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 750.7431507110596, + "msecs": 331.3579559326172, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10314.470529556274, + "relativeCreated": 10323.84967803955, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:39,750", - "created": 1610361459.7508967, + "asctime": "2021-01-14 00:26:22,331", + "created": 1610580382.3315222, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121554,49 +121501,49 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 750.896692276001, + "msecs": 331.52222633361816, "msg": "%s Connection Lost...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10314.624071121216, + "relativeCreated": 10324.013948440552, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:39,751", - "created": 1610361459.751044, + "asctime": "2021-01-14 00:26:22,331", + "created": 1610580382.3316743, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 751.0440349578857, + "msecs": 331.67433738708496, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10314.7714138031, + "relativeCreated": 10324.166059494019, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:39,751", - "created": 1610361459.7511854, + "asctime": "2021-01-14 00:26:22,331", + "created": 1610580382.331821, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121606,23 +121553,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 751.185417175293, + "msecs": 331.8209648132324, "msg": "%s Connection established...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10314.912796020508, + "relativeCreated": 10324.312686920166, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:39,751", - "created": 1610361459.7513282, + "asctime": "2021-01-14 00:26:22,331", + "created": 1610580382.3319697, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121632,41 +121579,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 751.3282299041748, + "msecs": 331.9697380065918, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10315.05560874939, + "relativeCreated": 10324.461460113525, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:39,751", - "created": 1610361459.751474, + "asctime": "2021-01-14 00:26:22,332", + "created": 1610580382.3321238, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 751.4739036560059, + "msecs": 332.1237564086914, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10315.20128250122, + "relativeCreated": 10324.615478515625, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -121677,34 +121624,34 @@ "status: okay", "'client'" ], - "asctime": "2021-01-11 11:37:39,751", - "created": 1610361459.751724, + "asctime": "2021-01-14 00:26:22,332", + "created": 1610580382.3323922, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 751.7240047454834, + "msecs": 332.39221572875977, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10315.451383590698, + "relativeCreated": 10324.883937835693, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:39,752", - "created": 1610361459.7523339, + "asctime": "2021-01-14 00:26:22,333", + "created": 1610580382.3330116, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121714,23 +121661,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 752.3338794708252, + "msecs": 333.0116271972656, "msg": "%s Connection established...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10316.06125831604, + "relativeCreated": 10325.5033493042, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:39,752", - "created": 1610361459.7525158, + "asctime": "2021-01-14 00:26:22,333", + "created": 1610580382.3332398, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121740,41 +121687,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 752.5157928466797, + "msecs": 333.2397937774658, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10316.243171691895, + "relativeCreated": 10325.7315158844, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:39,752", - "created": 1610361459.752675, + "asctime": "2021-01-14 00:26:22,333", + "created": 1610580382.3334062, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 752.6750564575195, + "msecs": 333.4062099456787, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10316.402435302734, + "relativeCreated": 10325.897932052612, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -121782,8 +121729,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" ], - "asctime": "2021-01-11 11:37:39,753", - "created": 1610361459.7530973, + "asctime": "2021-01-14 00:26:22,333", + "created": 1610580382.3338146, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121793,15 +121740,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", "module": "__init__", - "msecs": 753.0972957611084, + "msecs": 333.8146209716797, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10316.824674606323, + "relativeCreated": 10326.306343078613, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -121809,8 +121756,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" ], - "asctime": "2021-01-11 11:37:39,761", - "created": 1610361459.7615182, + "asctime": "2021-01-14 00:26:22,342", + "created": 1610580382.342085, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -121820,15 +121767,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", "module": "__init__", - "msecs": 761.5182399749756, + "msecs": 342.0848846435547, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10325.24561882019, + "relativeCreated": 10334.576606750488, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -121836,8 +121783,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,761", - "created": 1610361459.7618015, + "asctime": "2021-01-14 00:26:22,342", + "created": 1610580382.342383, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121847,15 +121794,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 761.8014812469482, + "msecs": 342.38290786743164, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10325.528860092163, + "relativeCreated": 10334.874629974365, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -121864,8 +121811,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:39,761", - "created": 1610361459.761966, + "asctime": "2021-01-14 00:26:22,342", + "created": 1610580382.3426027, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121875,15 +121822,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 761.9659900665283, + "msecs": 342.6027297973633, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10325.693368911743, + "relativeCreated": 10335.094451904297, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -121891,8 +121838,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,762", - "created": 1610361459.7621605, + "asctime": "2021-01-14 00:26:22,342", + "created": 1610580382.3427665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121902,15 +121849,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 762.1605396270752, + "msecs": 342.76652336120605, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10325.88791847229, + "relativeCreated": 10335.25824546814, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -121919,8 +121866,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,762", - "created": 1610361459.7622986, + "asctime": "2021-01-14 00:26:22,342", + "created": 1610580382.3428805, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121930,15 +121877,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 762.298583984375, + "msecs": 342.8804874420166, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10326.02596282959, + "relativeCreated": 10335.37220954895, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -121946,8 +121893,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,762", - "created": 1610361459.7625005, + "asctime": "2021-01-14 00:26:22,343", + "created": 1610580382.3430233, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121957,15 +121904,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 762.500524520874, + "msecs": 343.02330017089844, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10326.227903366089, + "relativeCreated": 10335.515022277832, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -121974,8 +121921,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,762", - "created": 1610361459.7626338, + "asctime": "2021-01-14 00:26:22,343", + "created": 1610580382.3431158, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -121985,15 +121932,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 762.6338005065918, + "msecs": 343.11580657958984, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10326.361179351807, + "relativeCreated": 10335.607528686523, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122001,8 +121948,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,762", - "created": 1610361459.7628126, + "asctime": "2021-01-14 00:26:22,343", + "created": 1610580382.3432393, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122012,15 +121959,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 762.812614440918, + "msecs": 343.23930740356445, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10326.539993286133, + "relativeCreated": 10335.731029510498, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122029,8 +121976,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,762", - "created": 1610361459.762968, + "asctime": "2021-01-14 00:26:22,343", + "created": 1610580382.3433797, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122040,15 +121987,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 762.9680633544922, + "msecs": 343.3797359466553, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10326.695442199707, + "relativeCreated": 10335.871458053589, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122056,8 +122003,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,763", - "created": 1610361459.7631404, + "asctime": "2021-01-14 00:26:22,343", + "created": 1610580382.3434968, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122067,15 +122014,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 763.1404399871826, + "msecs": 343.49679946899414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10326.867818832397, + "relativeCreated": 10335.988521575928, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122084,8 +122031,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,763", - "created": 1610361459.763282, + "asctime": "2021-01-14 00:26:22,343", + "created": 1610580382.3436022, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122095,15 +122042,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 763.282060623169, + "msecs": 343.60218048095703, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10327.009439468384, + "relativeCreated": 10336.09390258789, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122111,8 +122058,8 @@ "comm-client:", "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" ], - "asctime": "2021-01-11 11:37:39,763", - "created": 1610361459.7635245, + "asctime": "2021-01-14 00:26:22,343", + "created": 1610580382.3438594, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -122122,15 +122069,15 @@ "lineno": 284, "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", "module": "__init__", - "msecs": 763.5245323181152, + "msecs": 343.8594341278076, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10327.25191116333, + "relativeCreated": 10336.351156234741, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122138,8 +122085,8 @@ "comm-server:", "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" ], - "asctime": "2021-01-11 11:37:39,765", - "created": 1610361459.7652624, + "asctime": "2021-01-14 00:26:22,345", + "created": 1610580382.3454075, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -122149,15 +122096,15 @@ "lineno": 414, "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", "module": "__init__", - "msecs": 765.2623653411865, + "msecs": 345.40748596191406, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10328.989744186401, + "relativeCreated": 10337.899208068848, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122165,8 +122112,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,765", - "created": 1610361459.7655766, + "asctime": "2021-01-14 00:26:22,345", + "created": 1610580382.345599, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122176,15 +122123,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 765.5766010284424, + "msecs": 345.5989360809326, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10329.303979873657, + "relativeCreated": 10338.090658187866, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122193,8 +122140,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:39,765", - "created": 1610361459.7657735, + "asctime": "2021-01-14 00:26:22,345", + "created": 1610580382.3456948, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122204,15 +122151,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 765.7735347747803, + "msecs": 345.69478034973145, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10329.500913619995, + "relativeCreated": 10338.186502456665, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122220,8 +122167,8 @@ "STP:", "(66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e" ], - "asctime": "2021-01-11 11:37:39,766", - "created": 1610361459.7660255, + "asctime": "2021-01-14 00:26:22,345", + "created": 1610580382.3458421, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122231,15 +122178,15 @@ "lineno": 148, "message": "STP: message identified - (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", "module": "stp", - "msecs": 766.0255432128906, + "msecs": 345.8421230316162, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10329.752922058105, + "relativeCreated": 10338.33384513855, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122250,26 +122197,26 @@ "status: okay", "'client'" ], - "asctime": "2021-01-11 11:37:39,766", - "created": 1610361459.7663877, + "asctime": "2021-01-14 00:26:22,346", + "created": 1610580382.3461025, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 766.3877010345459, + "msecs": 346.1024761199951, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10330.11507987976, + "relativeCreated": 10338.594198226929, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122277,26 +122224,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:39,766", - "created": 1610361459.7665691, + "asctime": "2021-01-14 00:26:22,346", + "created": 1610580382.3462183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 766.5691375732422, + "msecs": 346.2183475494385, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10330.296516418457, + "relativeCreated": 10338.710069656372, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122305,26 +122252,26 @@ "'server'", "'client'" ], - "asctime": "2021-01-11 11:37:39,766", - "created": 1610361459.7668493, + "asctime": "2021-01-14 00:26:22,346", + "created": 1610580382.346392, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "WARNING", "levelno": 30, - "lineno": 418, + "lineno": 430, "message": "prot-server: overwriting user defined channel name from 'server' to 'client'", "module": "__init__", - "msecs": 766.8492794036865, + "msecs": 346.3919162750244, "msg": "%s overwriting user defined channel name from %s to %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10330.576658248901, + "relativeCreated": 10338.883638381958, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122335,26 +122282,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:39,767", - "created": 1610361459.7671032, + "asctime": "2021-01-14 00:26:22,346", + "created": 1610580382.346532, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 767.1031951904297, + "msecs": 346.53210639953613, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10330.830574035645, + "relativeCreated": 10339.02382850647, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -122362,8 +122309,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:39,767", - "created": 1610361459.767846, + "asctime": "2021-01-14 00:26:22,347", + "created": 1610580382.3470562, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -122373,15 +122320,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 767.8461074829102, + "msecs": 347.05615043640137, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10331.573486328125, + "relativeCreated": 10339.547872543335, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122389,8 +122336,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7760322, + "asctime": "2021-01-14 00:26:22,355", + "created": 1610580382.3552737, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -122400,15 +122347,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 776.0322093963623, + "msecs": 355.2737236022949, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10339.759588241577, + "relativeCreated": 10347.765445709229, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122416,8 +122363,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.776166, + "asctime": "2021-01-14 00:26:22,355", + "created": 1610580382.355451, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122427,15 +122374,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 776.1659622192383, + "msecs": 355.4511070251465, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10339.893341064453, + "relativeCreated": 10347.94282913208, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122444,8 +122391,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.776231, + "asctime": "2021-01-14 00:26:22,355", + "created": 1610580382.3555434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122455,15 +122402,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 776.231050491333, + "msecs": 355.5433750152588, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10339.958429336548, + "relativeCreated": 10348.035097122192, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122471,8 +122418,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7763124, + "asctime": "2021-01-14 00:26:22,355", + "created": 1610580382.355656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122482,15 +122429,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 776.3123512268066, + "msecs": 355.6559085845947, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.039730072021, + "relativeCreated": 10348.147630691528, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122499,8 +122446,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7763689, + "asctime": "2021-01-14 00:26:22,355", + "created": 1610580382.3557339, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122510,15 +122457,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 776.3688564300537, + "msecs": 355.73387145996094, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.096235275269, + "relativeCreated": 10348.225593566895, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122526,8 +122473,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7764516, + "asctime": "2021-01-14 00:26:22,355", + "created": 1610580382.3558433, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122537,15 +122484,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 776.451587677002, + "msecs": 355.84330558776855, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.178966522217, + "relativeCreated": 10348.335027694702, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122554,8 +122501,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.77652, + "asctime": "2021-01-14 00:26:22,355", + "created": 1610580382.3559291, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122565,15 +122512,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 776.5200138092041, + "msecs": 355.9291362762451, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.247392654419, + "relativeCreated": 10348.420858383179, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122581,8 +122528,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7765987, + "asctime": "2021-01-14 00:26:22,356", + "created": 1610580382.3560286, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122592,15 +122539,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 776.5986919403076, + "msecs": 356.02855682373047, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.326070785522, + "relativeCreated": 10348.520278930664, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122609,8 +122556,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.776652, + "asctime": "2021-01-14 00:26:22,356", + "created": 1610580382.356106, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122620,15 +122567,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 776.6520977020264, + "msecs": 356.1060428619385, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.379476547241, + "relativeCreated": 10348.597764968872, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122636,8 +122583,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7767231, + "asctime": "2021-01-14 00:26:22,356", + "created": 1610580382.3562005, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122647,15 +122594,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 776.7231464385986, + "msecs": 356.2004566192627, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.450525283813, + "relativeCreated": 10348.692178726196, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122664,8 +122611,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7767909, + "asctime": "2021-01-14 00:26:22,356", + "created": 1610580382.3562713, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122675,15 +122622,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 776.7908573150635, + "msecs": 356.27126693725586, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.518236160278, + "relativeCreated": 10348.76298904419, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122691,8 +122638,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:39,776", - "created": 1610361459.7769108, + "asctime": "2021-01-14 00:26:22,356", + "created": 1610580382.356408, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -122702,15 +122649,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 776.9107818603516, + "msecs": 356.40811920166016, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10340.638160705566, + "relativeCreated": 10348.899841308594, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122718,8 +122665,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:39,777", - "created": 1610361459.7778742, + "asctime": "2021-01-14 00:26:22,357", + "created": 1610580382.3573217, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -122729,15 +122676,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 777.874231338501, + "msecs": 357.32173919677734, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10341.601610183716, + "relativeCreated": 10349.813461303711, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122745,8 +122692,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:39,778", - "created": 1610361459.7780235, + "asctime": "2021-01-14 00:26:22,357", + "created": 1610580382.3574557, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122756,15 +122703,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 778.0234813690186, + "msecs": 357.4557304382324, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10341.750860214233, + "relativeCreated": 10349.947452545166, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122773,8 +122720,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:39,778", - "created": 1610361459.7780917, + "asctime": "2021-01-14 00:26:22,357", + "created": 1610580382.3575468, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122784,15 +122731,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 778.0916690826416, + "msecs": 357.5468063354492, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10341.819047927856, + "relativeCreated": 10350.038528442383, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122800,8 +122747,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:39,778", - "created": 1610361459.778191, + "asctime": "2021-01-14 00:26:22,357", + "created": 1610580382.3576775, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -122811,15 +122758,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 778.191089630127, + "msecs": 357.6774597167969, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10341.918468475342, + "relativeCreated": 10350.16918182373, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122830,26 +122777,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:39,778", - "created": 1610361459.7783563, + "asctime": "2021-01-14 00:26:22,357", + "created": 1610580382.3578863, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 778.3563137054443, + "msecs": 357.88631439208984, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10342.08369255066, + "relativeCreated": 10350.378036499023, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -122857,48 +122804,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:39,778", - "created": 1610361459.778431, + "asctime": "2021-01-14 00:26:22,357", + "created": 1610580382.3579848, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 778.4309387207031, + "msecs": 357.9847812652588, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10342.158317565918, + "relativeCreated": 10350.476503372192, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" } ], - "msecs": 96.04048728942871, + "msecs": 676.7783164978027, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10659.767866134644, + "relativeCreated": 10669.270038604736, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3176095485687256 + "time_consumption": 0.31879353523254395 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,096", - "created": 1610361460.096963, + "asctime": "2021-01-14 00:26:22,677", + "created": 1610580382.6778514, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -122915,8 +122862,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,096", - "created": 1610361460.0965729, + "asctime": "2021-01-14 00:26:22,677", + "created": 1610580382.6774776, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -122926,15 +122873,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 96.5728759765625, + "msecs": 677.4775981903076, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10660.300254821777, + "relativeCreated": 10669.969320297241, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -122943,8 +122890,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,096", - "created": 1610361460.0967839, + "asctime": "2021-01-14 00:26:22,677", + "created": 1610580382.6776674, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -122954,37 +122901,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 96.78387641906738, + "msecs": 677.6673793792725, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10660.511255264282, + "relativeCreated": 10670.159101486206, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 96.96292877197266, + "msecs": 677.8514385223389, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10660.690307617188, + "relativeCreated": 10670.343160629272, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00017905235290527344 + "time_consumption": 0.00018405914306640625 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,097", - "created": 1610361460.0974967, + "asctime": "2021-01-14 00:26:22,678", + "created": 1610580382.6784296, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -123001,8 +122948,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,097", - "created": 1610361460.097209, + "asctime": "2021-01-14 00:26:22,678", + "created": 1610580382.678136, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -123012,15 +122959,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 97.20897674560547, + "msecs": 678.1361103057861, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10660.93635559082, + "relativeCreated": 10670.62783241272, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -123029,8 +122976,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,097", - "created": 1610361460.0973608, + "asctime": "2021-01-14 00:26:22,678", + "created": 1610580382.6782923, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -123040,34 +122987,34 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 97.36084938049316, + "msecs": 678.2922744750977, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10661.088228225708, + "relativeCreated": 10670.783996582031, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 97.49674797058105, + "msecs": 678.4296035766602, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10661.224126815796, + "relativeCreated": 10670.921325683594, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013589859008789062 + "time_consumption": 0.0001373291015625 }, { "args": [], - "asctime": "2021-01-11 11:37:40,097", - "created": 1610361460.0978863, + "asctime": "2021-01-14 00:26:22,678", + "created": 1610580382.678827, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -123078,22 +123025,22 @@ "message": "Setting identical Channel names for client and server", "module": "test_communication", "moduleLogger": [], - "msecs": 97.88632392883301, + "msecs": 678.8270473480225, "msg": "Setting identical Channel names for client and server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10661.613702774048, + "relativeCreated": 10671.318769454956, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:40,443", - "created": 1610361460.443479, + "asctime": "2021-01-14 00:26:23,024", + "created": 1610580383.0245082, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -123108,8 +123055,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,098", - "created": 1610361460.0981176, + "asctime": "2021-01-14 00:26:22,679", + "created": 1610580382.6790605, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123119,49 +123066,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 98.11758995056152, + "msecs": 679.0604591369629, "msg": "%s Connection Lost...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10661.844968795776, + "relativeCreated": 10671.552181243896, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:40,098", - "created": 1610361460.0982933, + "asctime": "2021-01-14 00:26:22,679", + "created": 1610580382.6792397, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 98.29330444335938, + "msecs": 679.2397499084473, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10662.020683288574, + "relativeCreated": 10671.73147201538, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,098", - "created": 1610361460.0984354, + "asctime": "2021-01-14 00:26:22,679", + "created": 1610580382.679384, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123171,49 +123118,49 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 98.4354019165039, + "msecs": 679.3839931488037, "msg": "%s Connection Lost...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10662.162780761719, + "relativeCreated": 10671.875715255737, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:40,098", - "created": 1610361460.0985677, + "asctime": "2021-01-14 00:26:22,679", + "created": 1610580382.6795228, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 98.56772422790527, + "msecs": 679.5227527618408, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10662.29510307312, + "relativeCreated": 10672.014474868774, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,098", - "created": 1610361460.098707, + "asctime": "2021-01-14 00:26:22,679", + "created": 1610580382.679667, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123223,23 +123170,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 98.70696067810059, + "msecs": 679.6669960021973, "msg": "%s Connection established...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10662.434339523315, + "relativeCreated": 10672.15871810913, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,098", - "created": 1610361460.0988488, + "asctime": "2021-01-14 00:26:22,679", + "created": 1610580382.6798143, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123249,41 +123196,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 98.84881973266602, + "msecs": 679.814338684082, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10662.57619857788, + "relativeCreated": 10672.306060791016, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:40,098", - "created": 1610361460.098996, + "asctime": "2021-01-14 00:26:22,679", + "created": 1610580382.679963, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 98.99592399597168, + "msecs": 679.9631118774414, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10662.723302841187, + "relativeCreated": 10672.454833984375, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -123294,34 +123241,34 @@ "status: okay", "'unittest'" ], - "asctime": "2021-01-11 11:37:40,099", - "created": 1610361460.0992444, + "asctime": "2021-01-14 00:26:22,680", + "created": 1610580382.6802158, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", "module": "__init__", - "msecs": 99.24435615539551, + "msecs": 680.2158355712891, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10662.97173500061, + "relativeCreated": 10672.707557678223, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,099", - "created": 1610361460.0998354, + "asctime": "2021-01-14 00:26:22,680", + "created": 1610580382.6808023, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123331,23 +123278,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 99.83539581298828, + "msecs": 680.8023452758789, "msg": "%s Connection established...", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10663.562774658203, + "relativeCreated": 10673.294067382812, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,100", - "created": 1610361460.1000147, + "asctime": "2021-01-14 00:26:22,680", + "created": 1610580382.680982, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123357,41 +123304,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 100.01468658447266, + "msecs": 680.9821128845215, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10663.742065429688, + "relativeCreated": 10673.473834991455, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:40,100", - "created": 1610361460.1001618, + "asctime": "2021-01-14 00:26:22,681", + "created": 1610580382.68116, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 100.16179084777832, + "msecs": 681.1599731445312, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10663.889169692993, + "relativeCreated": 10673.651695251465, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -123399,8 +123346,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" ], - "asctime": "2021-01-11 11:37:40,100", - "created": 1610361460.1005783, + "asctime": "2021-01-14 00:26:22,681", + "created": 1610580382.6818736, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123410,15 +123357,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", "module": "__init__", - "msecs": 100.57830810546875, + "msecs": 681.8735599517822, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10664.305686950684, + "relativeCreated": 10674.365282058716, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123426,8 +123373,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" ], - "asctime": "2021-01-11 11:37:40,108", - "created": 1610361460.1089833, + "asctime": "2021-01-14 00:26:22,690", + "created": 1610580382.6903358, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123437,15 +123384,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", "module": "__init__", - "msecs": 108.98327827453613, + "msecs": 690.335750579834, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10672.710657119751, + "relativeCreated": 10682.827472686768, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123453,8 +123400,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.1091518, + "asctime": "2021-01-14 00:26:22,690", + "created": 1610580382.6906385, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123464,15 +123411,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 109.15184020996094, + "msecs": 690.638542175293, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10672.879219055176, + "relativeCreated": 10683.130264282227, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123481,8 +123428,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.1092393, + "asctime": "2021-01-14 00:26:22,690", + "created": 1610580382.6908247, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123492,15 +123439,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 109.23933982849121, + "msecs": 690.8247470855713, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10672.966718673706, + "relativeCreated": 10683.316469192505, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123508,8 +123455,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.1093636, + "asctime": "2021-01-14 00:26:22,691", + "created": 1610580382.6910274, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123519,15 +123466,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 109.36355590820312, + "msecs": 691.0274028778076, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.090934753418, + "relativeCreated": 10683.519124984741, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123536,8 +123483,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.10944, + "asctime": "2021-01-14 00:26:22,691", + "created": 1610580382.691194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123547,15 +123494,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 109.44008827209473, + "msecs": 691.1940574645996, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.16746711731, + "relativeCreated": 10683.685779571533, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123563,8 +123510,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.1095583, + "asctime": "2021-01-14 00:26:22,691", + "created": 1610580382.6914158, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123574,15 +123521,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 109.5583438873291, + "msecs": 691.4157867431641, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.285722732544, + "relativeCreated": 10683.907508850098, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123591,8 +123538,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.109632, + "asctime": "2021-01-14 00:26:22,691", + "created": 1610580382.6915553, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123602,15 +123549,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 109.63201522827148, + "msecs": 691.5552616119385, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.359394073486, + "relativeCreated": 10684.046983718872, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123618,8 +123565,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.1097288, + "asctime": "2021-01-14 00:26:22,691", + "created": 1610580382.6917386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123629,15 +123576,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 109.72881317138672, + "msecs": 691.7386054992676, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.456192016602, + "relativeCreated": 10684.230327606201, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123646,8 +123593,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.109799, + "asctime": "2021-01-14 00:26:22,691", + "created": 1610580382.6918728, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123657,15 +123604,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 109.79890823364258, + "msecs": 691.8728351593018, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.526287078857, + "relativeCreated": 10684.364557266235, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123673,8 +123620,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.1099014, + "asctime": "2021-01-14 00:26:22,692", + "created": 1610580382.6920617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123684,15 +123631,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 109.90142822265625, + "msecs": 692.0616626739502, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.628807067871, + "relativeCreated": 10684.553384780884, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123701,8 +123648,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,109", - "created": 1610361460.1099856, + "asctime": "2021-01-14 00:26:22,692", + "created": 1610580382.692202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123712,15 +123659,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 109.9855899810791, + "msecs": 692.202091217041, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.712968826294, + "relativeCreated": 10684.693813323975, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123728,8 +123675,8 @@ "comm-client:", "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" ], - "asctime": "2021-01-11 11:37:40,110", - "created": 1610361460.1101403, + "asctime": "2021-01-14 00:26:22,692", + "created": 1610580382.6924632, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123739,15 +123686,15 @@ "lineno": 284, "message": "comm-client: TX -> (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", "module": "__init__", - "msecs": 110.14032363891602, + "msecs": 692.4631595611572, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10673.86770248413, + "relativeCreated": 10684.95488166809, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123755,8 +123702,8 @@ "comm-server:", "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" ], - "asctime": "2021-01-11 11:37:40,111", - "created": 1610361460.111927, + "asctime": "2021-01-14 00:26:22,694", + "created": 1610580382.6943834, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123766,15 +123713,15 @@ "lineno": 414, "message": "comm-server: RX <- (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", "module": "__init__", - "msecs": 111.92703247070312, + "msecs": 694.3833827972412, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10675.654411315918, + "relativeCreated": 10686.875104904175, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123782,8 +123729,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,112", - "created": 1610361460.1121368, + "asctime": "2021-01-14 00:26:22,694", + "created": 1610580382.6947424, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123793,15 +123740,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 112.1368408203125, + "msecs": 694.7424411773682, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10675.864219665527, + "relativeCreated": 10687.234163284302, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123810,8 +123757,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:40,112", - "created": 1610361460.1122298, + "asctime": "2021-01-14 00:26:22,694", + "created": 1610580382.6949399, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123821,15 +123768,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 112.22982406616211, + "msecs": 694.9398517608643, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10675.957202911377, + "relativeCreated": 10687.431573867798, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123837,8 +123784,8 @@ "STP:", "(68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9" ], - "asctime": "2021-01-11 11:37:40,112", - "created": 1610361460.1123657, + "asctime": "2021-01-14 00:26:22,695", + "created": 1610580382.6951983, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -123848,15 +123795,15 @@ "lineno": 148, "message": "STP: message identified - (68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9", "module": "stp", - "msecs": 112.36572265625, + "msecs": 695.1982975006104, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10676.093101501465, + "relativeCreated": 10687.690019607544, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123867,26 +123814,26 @@ "status: okay", "'unittest'" ], - "asctime": "2021-01-11 11:37:40,112", - "created": 1610361460.1125832, + "asctime": "2021-01-14 00:26:22,695", + "created": 1610580382.6955986, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", "module": "__init__", - "msecs": 112.58316040039062, + "msecs": 695.5986022949219, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10676.310539245605, + "relativeCreated": 10688.090324401855, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123894,26 +123841,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:40,112", - "created": 1610361460.112684, + "asctime": "2021-01-14 00:26:22,695", + "created": 1610580382.6957822, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 112.68401145935059, + "msecs": 695.7821846008301, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10676.411390304565, + "relativeCreated": 10688.273906707764, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123924,26 +123871,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:40,112", - "created": 1610361460.1128957, + "asctime": "2021-01-14 00:26:22,696", + "created": 1610580382.6961312, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 112.89572715759277, + "msecs": 696.1312294006348, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10676.623106002808, + "relativeCreated": 10688.622951507568, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -123951,8 +123898,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:40,113", - "created": 1610361460.1133387, + "asctime": "2021-01-14 00:26:22,696", + "created": 1610580382.696943, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123962,15 +123909,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 113.33870887756348, + "msecs": 696.9430446624756, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10677.066087722778, + "relativeCreated": 10689.43476676941, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -123978,8 +123925,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:40,121", - "created": 1610361460.1215897, + "asctime": "2021-01-14 00:26:22,705", + "created": 1610580382.7054832, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -123989,15 +123936,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 121.58966064453125, + "msecs": 705.4831981658936, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10685.317039489746, + "relativeCreated": 10697.974920272827, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124005,8 +123952,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,121", - "created": 1610361460.1217606, + "asctime": "2021-01-14 00:26:22,705", + "created": 1610580382.7057784, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124016,15 +123963,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 121.76060676574707, + "msecs": 705.7783603668213, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10685.487985610962, + "relativeCreated": 10698.270082473755, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124033,8 +123980,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:40,121", - "created": 1610361460.1218472, + "asctime": "2021-01-14 00:26:22,705", + "created": 1610580382.7059443, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124044,15 +123991,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 121.84715270996094, + "msecs": 705.944299697876, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10685.574531555176, + "relativeCreated": 10698.43602180481, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124060,8 +124007,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,121", - "created": 1610361460.1219513, + "asctime": "2021-01-14 00:26:22,706", + "created": 1610580382.7061427, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124071,15 +124018,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 121.95134162902832, + "msecs": 706.1426639556885, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10685.678720474243, + "relativeCreated": 10698.634386062622, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124088,8 +124035,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.1220272, + "asctime": "2021-01-14 00:26:22,706", + "created": 1610580382.7062876, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124099,15 +124046,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.02715873718262, + "msecs": 706.2876224517822, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10685.754537582397, + "relativeCreated": 10698.779344558716, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124115,8 +124062,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.1221347, + "asctime": "2021-01-14 00:26:22,706", + "created": 1610580382.706489, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124126,15 +124073,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 122.13468551635742, + "msecs": 706.489086151123, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10685.862064361572, + "relativeCreated": 10698.980808258057, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124143,8 +124090,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.122229, + "asctime": "2021-01-14 00:26:22,706", + "created": 1610580382.7066205, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124154,15 +124101,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.22909927368164, + "msecs": 706.620454788208, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10685.956478118896, + "relativeCreated": 10699.112176895142, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124170,8 +124117,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.1223328, + "asctime": "2021-01-14 00:26:22,706", + "created": 1610580382.7068386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124181,15 +124128,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 122.33281135559082, + "msecs": 706.8386077880859, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10686.060190200806, + "relativeCreated": 10699.33032989502, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124198,8 +124145,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.1224034, + "asctime": "2021-01-14 00:26:22,706", + "created": 1610580382.7069855, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124209,15 +124156,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.40338325500488, + "msecs": 706.9854736328125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10686.13076210022, + "relativeCreated": 10699.477195739746, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124225,8 +124172,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.122495, + "asctime": "2021-01-14 00:26:22,707", + "created": 1610580382.7071598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124236,15 +124183,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 122.49493598937988, + "msecs": 707.1597576141357, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10686.222314834595, + "relativeCreated": 10699.65147972107, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124253,8 +124200,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.122564, + "asctime": "2021-01-14 00:26:22,707", + "created": 1610580382.707292, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124264,15 +124211,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.56407737731934, + "msecs": 707.2920799255371, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10686.291456222534, + "relativeCreated": 10699.78380203247, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124280,8 +124227,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:40,122", - "created": 1610361460.1226938, + "asctime": "2021-01-14 00:26:22,707", + "created": 1610580382.7075293, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124291,15 +124238,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 122.69377708435059, + "msecs": 707.5293064117432, "msg": "%s TX -> %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10686.421155929565, + "relativeCreated": 10700.021028518677, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124307,8 +124254,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:40,123", - "created": 1610361460.1236985, + "asctime": "2021-01-14 00:26:22,708", + "created": 1610580382.7085812, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124318,15 +124265,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 123.69847297668457, + "msecs": 708.5812091827393, "msg": "%s RX <- %s", "name": "root.helpers.unittest", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10687.4258518219, + "relativeCreated": 10701.072931289673, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124334,8 +124281,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,123", - "created": 1610361460.1238992, + "asctime": "2021-01-14 00:26:22,708", + "created": 1610580382.7088172, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124345,15 +124292,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 123.89922142028809, + "msecs": 708.8172435760498, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10687.626600265503, + "relativeCreated": 10701.308965682983, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124362,8 +124309,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:40,123", - "created": 1610361460.1239898, + "asctime": "2021-01-14 00:26:22,708", + "created": 1610580382.7089665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124373,15 +124320,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 123.98982048034668, + "msecs": 708.9664936065674, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10687.717199325562, + "relativeCreated": 10701.458215713501, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124389,8 +124336,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:40,124", - "created": 1610361460.124123, + "asctime": "2021-01-14 00:26:22,709", + "created": 1610580382.7092135, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -124400,15 +124347,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 124.12309646606445, + "msecs": 709.2134952545166, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10687.85047531128, + "relativeCreated": 10701.70521736145, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124419,26 +124366,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:40,124", - "created": 1610361460.1243322, + "asctime": "2021-01-14 00:26:22,709", + "created": 1610580382.7095668, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 124.33218955993652, + "msecs": 709.5668315887451, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10688.059568405151, + "relativeCreated": 10702.058553695679, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -124446,48 +124393,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:40,124", - "created": 1610361460.12443, + "asctime": "2021-01-14 00:26:22,709", + "created": 1610580382.709739, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 124.42994117736816, + "msecs": 709.7389698028564, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 10688.157320022583, + "relativeCreated": 10702.23069190979, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" } ], - "msecs": 443.479061126709, + "msecs": 24.508237838745117, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11007.206439971924, + "relativeCreated": 11016.999959945679, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3190491199493408 + "time_consumption": 0.31476926803588867 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:40,444", - "created": 1610361460.444405, + "asctime": "2021-01-14 00:26:23,025", + "created": 1610580383.025416, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -124504,8 +124451,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:40,444", - "created": 1610361460.4440594, + "asctime": "2021-01-14 00:26:23,025", + "created": 1610580383.0250368, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -124515,15 +124462,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'unittest' ()", "module": "test", - "msecs": 444.0593719482422, + "msecs": 25.03681182861328, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11007.786750793457, + "relativeCreated": 11017.528533935547, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -124532,8 +124479,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:40,444", - "created": 1610361460.4442477, + "asctime": "2021-01-14 00:26:23,025", + "created": 1610580383.0252526, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -124543,37 +124490,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'unittest' ()", "module": "test", - "msecs": 444.2477226257324, + "msecs": 25.252580642700195, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11007.975101470947, + "relativeCreated": 11017.744302749634, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 444.40507888793945, + "msecs": 25.415897369384766, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11008.132457733154, + "relativeCreated": 11017.907619476318, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015735626220703125 + "time_consumption": 0.0001633167266845703 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:40,445", - "created": 1610361460.445028, + "asctime": "2021-01-14 00:26:23,025", + "created": 1610580383.0259655, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -124590,8 +124537,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:40,444", - "created": 1610361460.4446728, + "asctime": "2021-01-14 00:26:23,025", + "created": 1610580383.025684, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -124601,15 +124548,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'unittest' ()", "module": "test", - "msecs": 444.6728229522705, + "msecs": 25.684118270874023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11008.400201797485, + "relativeCreated": 11018.175840377808, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -124618,8 +124565,8 @@ "'unittest'", "" ], - "asctime": "2021-01-11 11:37:40,444", - "created": 1610361460.444883, + "asctime": "2021-01-14 00:26:23,025", + "created": 1610580383.0258284, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -124629,34 +124576,34 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'unittest' ()", "module": "test", - "msecs": 444.8831081390381, + "msecs": 25.82836151123047, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11008.610486984253, + "relativeCreated": 11018.320083618164, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 445.02806663513184, + "msecs": 25.965452194213867, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11008.755445480347, + "relativeCreated": 11018.457174301147, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014495849609375 + "time_consumption": 0.00013709068298339844 }, { "args": [], - "asctime": "2021-01-11 11:37:40,445", - "created": 1610361460.4453878, + "asctime": "2021-01-14 00:26:23,026", + "created": 1610580383.0263312, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -124667,22 +124614,22 @@ "message": "Setting Channel name for client only", "module": "test_communication", "moduleLogger": [], - "msecs": 445.3878402709961, + "msecs": 26.331186294555664, "msg": "Setting Channel name for client only", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11009.115219116211, + "relativeCreated": 11018.82290840149, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7912278, + "asctime": "2021-01-14 00:26:23,372", + "created": 1610580383.372316, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -124697,8 +124644,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,445", - "created": 1610361460.4456222, + "asctime": "2021-01-14 00:26:23,026", + "created": 1610580383.0265517, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124708,49 +124655,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 445.62220573425293, + "msecs": 26.55172348022461, "msg": "%s Connection Lost...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11009.349584579468, + "relativeCreated": 11019.043445587158, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:40,445", - "created": 1610361460.4457824, + "asctime": "2021-01-14 00:26:23,026", + "created": 1610580383.0267262, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 445.7824230194092, + "msecs": 26.726245880126953, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11009.509801864624, + "relativeCreated": 11019.21796798706, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,445", - "created": 1610361460.445936, + "asctime": "2021-01-14 00:26:23,026", + "created": 1610580383.0268762, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124760,49 +124707,49 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 445.9359645843506, + "msecs": 26.876211166381836, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11009.663343429565, + "relativeCreated": 11019.367933273315, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:40,446", - "created": 1610361460.4460876, + "asctime": "2021-01-14 00:26:23,027", + "created": 1610580383.0270183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 446.0875988006592, + "msecs": 27.018308639526367, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11009.814977645874, + "relativeCreated": 11019.51003074646, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,446", - "created": 1610361460.4462345, + "asctime": "2021-01-14 00:26:23,027", + "created": 1610580383.027161, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124812,23 +124759,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 446.23446464538574, + "msecs": 27.1608829498291, "msg": "%s Connection established...", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11009.9618434906, + "relativeCreated": 11019.652605056763, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,446", - "created": 1610361460.4463668, + "asctime": "2021-01-14 00:26:23,027", + "created": 1610580383.0273035, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124838,41 +124785,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 446.3667869567871, + "msecs": 27.303457260131836, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11010.094165802002, + "relativeCreated": 11019.795179367065, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:40,446", - "created": 1610361460.4465032, + "asctime": "2021-01-14 00:26:23,027", + "created": 1610580383.02744, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 446.5031623840332, + "msecs": 27.44007110595703, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11010.230541229248, + "relativeCreated": 11019.93179321289, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -124883,34 +124830,34 @@ "status: okay", "'client'" ], - "asctime": "2021-01-11 11:37:40,447", - "created": 1610361460.4470854, + "asctime": "2021-01-14 00:26:23,028", + "created": 1610580383.0280488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 447.0853805541992, + "msecs": 28.04875373840332, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11010.812759399414, + "relativeCreated": 11020.540475845337, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,447", - "created": 1610361460.4476614, + "asctime": "2021-01-14 00:26:23,028", + "created": 1610580383.0286386, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124920,23 +124867,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 447.6613998413086, + "msecs": 28.638601303100586, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11011.388778686523, + "relativeCreated": 11021.130323410034, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,447", - "created": 1610361460.4478292, + "asctime": "2021-01-14 00:26:23,028", + "created": 1610580383.0288076, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124946,41 +124893,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 447.8292465209961, + "msecs": 28.807640075683594, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11011.556625366211, + "relativeCreated": 11021.299362182617, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:40,447", - "created": 1610361460.4479778, + "asctime": "2021-01-14 00:26:23,028", + "created": 1610580383.0289557, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 447.97778129577637, + "msecs": 28.955698013305664, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11011.705160140991, + "relativeCreated": 11021.44742012024, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -124988,8 +124935,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" ], - "asctime": "2021-01-11 11:37:40,448", - "created": 1610361460.4484096, + "asctime": "2021-01-14 00:26:23,029", + "created": 1610580383.0295572, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -124999,15 +124946,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", "module": "__init__", - "msecs": 448.4095573425293, + "msecs": 29.557228088378906, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11012.136936187744, + "relativeCreated": 11022.048950195312, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125015,8 +124962,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" ], - "asctime": "2021-01-11 11:37:40,456", - "created": 1610361460.4569652, + "asctime": "2021-01-14 00:26:23,038", + "created": 1610580383.0380316, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -125026,15 +124973,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", "module": "__init__", - "msecs": 456.96520805358887, + "msecs": 38.031578063964844, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11020.692586898804, + "relativeCreated": 11030.523300170898, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125042,8 +124989,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,457", - "created": 1610361460.4572487, + "asctime": "2021-01-14 00:26:23,038", + "created": 1610580383.0383182, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125053,15 +125000,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 457.2486877441406, + "msecs": 38.31815719604492, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11020.976066589355, + "relativeCreated": 11030.809879302979, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125070,8 +125017,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:40,457", - "created": 1610361460.4574134, + "asctime": "2021-01-14 00:26:23,038", + "created": 1610580383.0384955, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125081,15 +125028,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 457.4134349822998, + "msecs": 38.495540618896484, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11021.140813827515, + "relativeCreated": 11030.98726272583, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125097,8 +125044,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,457", - "created": 1610361460.4576077, + "asctime": "2021-01-14 00:26:23,038", + "created": 1610580383.0386965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125108,15 +125055,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 457.6077461242676, + "msecs": 38.6965274810791, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11021.335124969482, + "relativeCreated": 11031.188249588013, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125125,8 +125072,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,457", - "created": 1610361460.4577456, + "asctime": "2021-01-14 00:26:23,038", + "created": 1610580383.0388393, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125136,15 +125083,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 457.7455520629883, + "msecs": 38.83934020996094, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11021.472930908203, + "relativeCreated": 11031.331062316895, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125152,8 +125099,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,457", - "created": 1610361460.4579515, + "asctime": "2021-01-14 00:26:23,039", + "created": 1610580383.0390446, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125163,15 +125110,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 457.95154571533203, + "msecs": 39.04461860656738, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11021.678924560547, + "relativeCreated": 11031.536340713501, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125180,8 +125127,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,458", - "created": 1610361460.4580863, + "asctime": "2021-01-14 00:26:23,039", + "created": 1610580383.0391815, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125191,15 +125138,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 458.0862522125244, + "msecs": 39.18147087097168, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11021.81363105774, + "relativeCreated": 11031.673192977905, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125207,8 +125154,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,458", - "created": 1610361460.4582663, + "asctime": "2021-01-14 00:26:23,039", + "created": 1610580383.0393643, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125218,15 +125165,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 458.2662582397461, + "msecs": 39.36433792114258, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11021.993637084961, + "relativeCreated": 11031.856060028076, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125235,8 +125182,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,458", - "created": 1610361460.4583962, + "asctime": "2021-01-14 00:26:23,039", + "created": 1610580383.0394967, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125246,15 +125193,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 458.39619636535645, + "msecs": 39.496660232543945, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11022.123575210571, + "relativeCreated": 11031.988382339478, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125262,8 +125209,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,458", - "created": 1610361460.4585671, + "asctime": "2021-01-14 00:26:23,039", + "created": 1610580383.0396676, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125273,15 +125220,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 458.56714248657227, + "msecs": 39.667606353759766, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11022.294521331787, + "relativeCreated": 11032.159328460693, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125290,8 +125237,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,458", - "created": 1610361460.4586968, + "asctime": "2021-01-14 00:26:23,039", + "created": 1610580383.0397985, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125301,15 +125248,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 458.6968421936035, + "msecs": 39.79849815368652, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11022.424221038818, + "relativeCreated": 11032.29022026062, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125317,8 +125264,8 @@ "comm-client:", "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" ], - "asctime": "2021-01-11 11:37:40,458", - "created": 1610361460.458952, + "asctime": "2021-01-14 00:26:23,040", + "created": 1610580383.0400543, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -125328,15 +125275,15 @@ "lineno": 284, "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", "module": "__init__", - "msecs": 458.9519500732422, + "msecs": 40.0543212890625, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11022.679328918457, + "relativeCreated": 11032.546043395996, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125344,8 +125291,8 @@ "comm-server:", "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" ], - "asctime": "2021-01-11 11:37:40,460", - "created": 1610361460.4605236, + "asctime": "2021-01-14 00:26:23,041", + "created": 1610580383.0417476, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -125355,15 +125302,15 @@ "lineno": 414, "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", "module": "__init__", - "msecs": 460.5236053466797, + "msecs": 41.7475700378418, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11024.250984191895, + "relativeCreated": 11034.239292144775, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125371,8 +125318,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,460", - "created": 1610361460.460795, + "asctime": "2021-01-14 00:26:23,042", + "created": 1610580383.0420144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125382,15 +125329,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 460.79492568969727, + "msecs": 42.014360427856445, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11024.522304534912, + "relativeCreated": 11034.50608253479, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125399,8 +125346,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:40,460", - "created": 1610361460.460941, + "asctime": "2021-01-14 00:26:23,042", + "created": 1610580383.0421555, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125410,15 +125357,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 460.9410762786865, + "msecs": 42.15550422668457, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11024.668455123901, + "relativeCreated": 11034.647226333618, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125426,8 +125373,8 @@ "STP:", "(66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e" ], - "asctime": "2021-01-11 11:37:40,461", - "created": 1610361460.461126, + "asctime": "2021-01-14 00:26:23,042", + "created": 1610580383.042359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125437,15 +125384,15 @@ "lineno": 148, "message": "STP: message identified - (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", "module": "stp", - "msecs": 461.12608909606934, + "msecs": 42.359113693237305, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11024.853467941284, + "relativeCreated": 11034.85083580017, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125456,26 +125403,26 @@ "status: okay", "'client'" ], - "asctime": "2021-01-11 11:37:40,461", - "created": 1610361460.461411, + "asctime": "2021-01-14 00:26:23,042", + "created": 1610580383.0427012, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 461.4109992980957, + "msecs": 42.70124435424805, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11025.13837814331, + "relativeCreated": 11035.192966461182, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125483,26 +125430,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:40,461", - "created": 1610361460.4615474, + "asctime": "2021-01-14 00:26:23,042", + "created": 1610580383.042865, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 461.5473747253418, + "msecs": 42.86503791809082, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11025.274753570557, + "relativeCreated": 11035.356760025024, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125510,26 +125457,26 @@ "prot-server:", "'client'" ], - "asctime": "2021-01-11 11:37:40,461", - "created": 1610361460.461736, + "asctime": "2021-01-14 00:26:23,043", + "created": 1610580383.0430863, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "INFO", "levelno": 20, - "lineno": 420, + "lineno": 432, "message": "prot-server: channel name is now 'client'", "module": "__init__", - "msecs": 461.73596382141113, + "msecs": 43.08629035949707, "msg": "%s channel name is now %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11025.463342666626, + "relativeCreated": 11035.57801246643, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125540,26 +125487,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:40,461", - "created": 1610361460.4619057, + "asctime": "2021-01-14 00:26:23,043", + "created": 1610580383.0432727, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 461.90571784973145, + "msecs": 43.27273368835449, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11025.633096694946, + "relativeCreated": 11035.764455795288, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -125567,8 +125514,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:40,462", - "created": 1610361460.4624982, + "asctime": "2021-01-14 00:26:23,043", + "created": 1610580383.0439496, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -125578,15 +125525,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 462.4981880187988, + "msecs": 43.94960403442383, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11026.225566864014, + "relativeCreated": 11036.441326141357, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125594,8 +125541,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:40,470", - "created": 1610361460.470874, + "asctime": "2021-01-14 00:26:23,052", + "created": 1610580383.052406, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -125605,15 +125552,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 470.8740711212158, + "msecs": 52.40607261657715, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11034.60144996643, + "relativeCreated": 11044.89779472351, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125621,8 +125568,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.471092, + "asctime": "2021-01-14 00:26:23,052", + "created": 1610580383.0526834, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125632,15 +125579,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 471.09198570251465, + "msecs": 52.683353424072266, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11034.81936454773, + "relativeCreated": 11045.175075531006, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125649,8 +125596,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.4712315, + "asctime": "2021-01-14 00:26:23,052", + "created": 1610580383.0528436, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125660,15 +125607,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 471.23146057128906, + "msecs": 52.843570709228516, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11034.958839416504, + "relativeCreated": 11045.335292816162, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125676,8 +125623,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.471378, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.0530107, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125687,15 +125634,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 471.3780879974365, + "msecs": 53.01070213317871, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11035.105466842651, + "relativeCreated": 11045.502424240112, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125704,8 +125651,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.4714813, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.0531595, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125715,15 +125662,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 471.4813232421875, + "msecs": 53.159475326538086, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11035.208702087402, + "relativeCreated": 11045.651197433472, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125731,8 +125678,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.4716282, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.0533254, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125742,15 +125689,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 471.62818908691406, + "msecs": 53.32541465759277, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11035.355567932129, + "relativeCreated": 11045.817136764526, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125759,8 +125706,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.4717245, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.0534337, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125770,15 +125717,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 471.7245101928711, + "msecs": 53.43365669250488, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11035.451889038086, + "relativeCreated": 11045.925378799438, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125786,8 +125733,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.471857, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.053577, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125797,15 +125744,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 471.85707092285156, + "msecs": 53.57694625854492, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11035.584449768066, + "relativeCreated": 11046.068668365479, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125814,8 +125761,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,471", - "created": 1610361460.471953, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.0536816, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125825,15 +125772,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 471.9529151916504, + "msecs": 53.68161201477051, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11035.680294036865, + "relativeCreated": 11046.173334121704, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125841,8 +125788,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,472", - "created": 1610361460.472235, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.053819, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125852,15 +125799,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 472.23496437072754, + "msecs": 53.81894111633301, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11035.962343215942, + "relativeCreated": 11046.310663223267, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125869,8 +125816,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,472", - "created": 1610361460.4723446, + "asctime": "2021-01-14 00:26:23,053", + "created": 1610580383.0539563, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125880,15 +125827,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 472.34463691711426, + "msecs": 53.95627021789551, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11036.07201576233, + "relativeCreated": 11046.44799232483, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125896,8 +125843,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:40,472", - "created": 1610361460.4725187, + "asctime": "2021-01-14 00:26:23,054", + "created": 1610580383.0541494, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -125907,15 +125854,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 472.5186824798584, + "msecs": 54.14938926696777, "msg": "%s TX -> %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11036.246061325073, + "relativeCreated": 11046.641111373901, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125923,8 +125870,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:40,473", - "created": 1610361460.4735255, + "asctime": "2021-01-14 00:26:23,055", + "created": 1610580383.0552492, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -125934,15 +125881,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 473.5255241394043, + "msecs": 55.24921417236328, "msg": "%s RX <- %s", "name": "root.helpers.client", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11037.25290298462, + "relativeCreated": 11047.740936279297, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125950,8 +125897,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,473", - "created": 1610361460.4737039, + "asctime": "2021-01-14 00:26:23,055", + "created": 1610580383.0555167, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125961,15 +125908,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 473.70386123657227, + "msecs": 55.516719818115234, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11037.431240081787, + "relativeCreated": 11048.008441925049, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -125978,8 +125925,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:40,473", - "created": 1610361460.4738379, + "asctime": "2021-01-14 00:26:23,055", + "created": 1610580383.0556662, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -125989,15 +125936,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 473.83785247802734, + "msecs": 55.666208267211914, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11037.565231323242, + "relativeCreated": 11048.157930374146, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -126005,8 +125952,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:40,474", - "created": 1610361460.4740143, + "asctime": "2021-01-14 00:26:23,055", + "created": 1610580383.0558677, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126016,15 +125963,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 474.0142822265625, + "msecs": 55.867671966552734, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11037.741661071777, + "relativeCreated": 11048.359394073486, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -126035,26 +125982,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:40,474", - "created": 1610361460.4742963, + "asctime": "2021-01-14 00:26:23,056", + "created": 1610580383.0561733, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 474.29633140563965, + "msecs": 56.17332458496094, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11038.023710250854, + "relativeCreated": 11048.665046691895, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -126062,48 +126009,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:40,474", - "created": 1610361460.4744327, + "asctime": "2021-01-14 00:26:23,056", + "created": 1610580383.0563233, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 474.43270683288574, + "msecs": 56.32328987121582, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11038.1600856781, + "relativeCreated": 11048.81501197815, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" } ], - "msecs": 791.2278175354004, + "msecs": 372.3158836364746, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11354.955196380615, + "relativeCreated": 11364.807605743408, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.31679511070251465 + "time_consumption": 0.3159925937652588 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7915742, + "asctime": "2021-01-14 00:26:23,373", + "created": 1610580383.3732188, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -126120,8 +126067,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7914524, + "asctime": "2021-01-14 00:26:23,372", + "created": 1610580383.3728476, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -126131,15 +126078,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 791.4524078369141, + "msecs": 372.8475570678711, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.179786682129, + "relativeCreated": 11365.339279174805, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -126148,8 +126095,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7915184, + "asctime": "2021-01-14 00:26:23,373", + "created": 1610580383.373027, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -126159,37 +126106,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 791.5184497833252, + "msecs": 373.02708625793457, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.24582862854, + "relativeCreated": 11365.518808364868, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 791.574239730835, + "msecs": 373.2187747955322, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.30161857605, + "relativeCreated": 11365.710496902466, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 5.5789947509765625e-05 + "time_consumption": 0.00019168853759765625 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7917767, + "asctime": "2021-01-14 00:26:23,373", + "created": 1610580383.3737736, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -126206,8 +126153,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7916617, + "asctime": "2021-01-14 00:26:23,373", + "created": 1610580383.3734648, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -126217,15 +126164,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 791.6617393493652, + "msecs": 373.46482276916504, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.38911819458, + "relativeCreated": 11365.956544876099, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -126234,8 +126181,8 @@ "'client'", "" ], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.791712, + "asctime": "2021-01-14 00:26:23,373", + "created": 1610580383.3736095, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -126245,34 +126192,34 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 791.7120456695557, + "msecs": 373.6095428466797, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.43942451477, + "relativeCreated": 11366.101264953613, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 791.7766571044922, + "msecs": 373.77357482910156, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.504035949707, + "relativeCreated": 11366.265296936035, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 6.461143493652344e-05 + "time_consumption": 0.000164031982421875 }, { "args": [], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7919066, + "asctime": "2021-01-14 00:26:23,374", + "created": 1610580383.3741264, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -126283,22 +126230,22 @@ "message": "Setting Channel name for server only", "module": "test_communication", "moduleLogger": [], - "msecs": 791.9065952301025, + "msecs": 374.1264343261719, "msg": "Setting Channel name for server only", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.633974075317, + "relativeCreated": 11366.618156433105, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:41,136", - "created": 1610361461.136035, + "asctime": "2021-01-14 00:26:23,719", + "created": 1610580383.7197616, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -126313,8 +126260,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,791", - "created": 1610361460.7919896, + "asctime": "2021-01-14 00:26:23,374", + "created": 1610580383.3743541, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126324,49 +126271,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 791.9895648956299, + "msecs": 374.35412406921387, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.716943740845, + "relativeCreated": 11366.845846176147, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.792048, + "asctime": "2021-01-14 00:26:23,374", + "created": 1610580383.3745177, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 792.0479774475098, + "msecs": 374.51767921447754, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.775356292725, + "relativeCreated": 11367.009401321411, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7920992, + "asctime": "2021-01-14 00:26:23,374", + "created": 1610580383.374661, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126376,49 +126323,49 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 792.0992374420166, + "msecs": 374.6609687805176, "msg": "%s Connection Lost...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.826616287231, + "relativeCreated": 11367.152690887451, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7921474, + "asctime": "2021-01-14 00:26:23,374", + "created": 1610580383.3747973, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 792.1473979949951, + "msecs": 374.7973442077637, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.87477684021, + "relativeCreated": 11367.289066314697, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7921994, + "asctime": "2021-01-14 00:26:23,374", + "created": 1610580383.3749413, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126428,23 +126375,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 792.1993732452393, + "msecs": 374.941349029541, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.926752090454, + "relativeCreated": 11367.433071136475, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7922485, + "asctime": "2021-01-14 00:26:23,375", + "created": 1610580383.3750744, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126454,41 +126401,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 792.2484874725342, + "msecs": 375.0743865966797, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11355.975866317749, + "relativeCreated": 11367.566108703613, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7922971, + "asctime": "2021-01-14 00:26:23,375", + "created": 1610580383.37521, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 792.2971248626709, + "msecs": 375.2100467681885, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11356.024503707886, + "relativeCreated": 11367.701768875122, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -126499,34 +126446,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7923942, + "asctime": "2021-01-14 00:26:23,375", + "created": 1610580383.3754663, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 792.3941612243652, + "msecs": 375.46634674072266, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11356.12154006958, + "relativeCreated": 11367.958068847656, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7926168, + "asctime": "2021-01-14 00:26:23,376", + "created": 1610580383.376086, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126536,23 +126483,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 792.6168441772461, + "msecs": 376.0859966278076, "msg": "%s Connection established...", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11356.344223022461, + "relativeCreated": 11368.577718734741, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7926753, + "asctime": "2021-01-14 00:26:23,376", + "created": 1610580383.37625, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126562,41 +126509,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 792.675256729126, + "msecs": 376.2500286102295, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11356.40263557434, + "relativeCreated": 11368.741750717163, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.792734, + "asctime": "2021-01-14 00:26:23,376", + "created": 1610580383.3763952, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 792.733907699585, + "msecs": 376.39522552490234, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11356.4612865448, + "relativeCreated": 11368.886947631836, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -126604,8 +126551,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:40,792", - "created": 1610361460.7929394, + "asctime": "2021-01-14 00:26:23,376", + "created": 1610580383.3767836, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126615,15 +126562,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 792.9394245147705, + "msecs": 376.7836093902588, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11356.666803359985, + "relativeCreated": 11369.275331497192, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126631,8 +126578,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.801153, + "asctime": "2021-01-14 00:26:23,385", + "created": 1610580383.3852992, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126642,15 +126589,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 801.1529445648193, + "msecs": 385.2992057800293, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11364.880323410034, + "relativeCreated": 11377.790927886963, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126658,8 +126605,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.8013082, + "asctime": "2021-01-14 00:26:23,385", + "created": 1610580383.3856354, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126669,15 +126616,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 801.3081550598145, + "msecs": 385.6353759765625, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.03553390503, + "relativeCreated": 11378.127098083496, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126686,8 +126633,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.801397, + "asctime": "2021-01-14 00:26:23,385", + "created": 1610580383.3858142, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126697,15 +126644,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 801.3970851898193, + "msecs": 385.8141899108887, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.124464035034, + "relativeCreated": 11378.305912017822, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126713,8 +126660,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.8014996, + "asctime": "2021-01-14 00:26:23,386", + "created": 1610580383.3860178, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126724,15 +126671,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 801.499605178833, + "msecs": 386.0177993774414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.226984024048, + "relativeCreated": 11378.509521484375, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126741,8 +126688,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.8015714, + "asctime": "2021-01-14 00:26:23,386", + "created": 1610580383.38617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126752,15 +126699,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 801.5713691711426, + "msecs": 386.1699104309082, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.298748016357, + "relativeCreated": 11378.661632537842, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126768,8 +126715,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.8016758, + "asctime": "2021-01-14 00:26:23,386", + "created": 1610580383.3863783, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126779,15 +126726,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 801.6757965087891, + "msecs": 386.37828826904297, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.403175354004, + "relativeCreated": 11378.870010375977, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126796,8 +126743,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.8017433, + "asctime": "2021-01-14 00:26:23,386", + "created": 1610580383.3865144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126807,15 +126754,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 801.7432689666748, + "msecs": 386.51442527770996, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.47064781189, + "relativeCreated": 11379.006147384644, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126823,8 +126770,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.8018334, + "asctime": "2021-01-14 00:26:23,386", + "created": 1610580383.386696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126834,15 +126781,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 801.8333911895752, + "msecs": 386.69610023498535, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.56077003479, + "relativeCreated": 11379.187822341919, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126851,8 +126798,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.801904, + "asctime": "2021-01-14 00:26:23,386", + "created": 1610580383.3868265, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126862,15 +126809,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 801.9039630889893, + "msecs": 386.8265151977539, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.631341934204, + "relativeCreated": 11379.318237304688, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126878,8 +126825,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,801", - "created": 1610361460.801991, + "asctime": "2021-01-14 00:26:23,386", + "created": 1610580383.3869977, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126889,15 +126836,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 801.9909858703613, + "msecs": 386.9976997375488, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.718364715576, + "relativeCreated": 11379.489421844482, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126906,8 +126853,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,802", - "created": 1610361460.8020568, + "asctime": "2021-01-14 00:26:23,387", + "created": 1610580383.387127, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126917,15 +126864,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 802.0567893981934, + "msecs": 387.1269226074219, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.784168243408, + "relativeCreated": 11379.618644714355, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126933,8 +126880,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:40,802", - "created": 1610361460.8021798, + "asctime": "2021-01-14 00:26:23,387", + "created": 1610580383.3873703, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126944,15 +126891,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 802.1798133850098, + "msecs": 387.37034797668457, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11365.907192230225, + "relativeCreated": 11379.862070083618, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126960,8 +126907,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:40,803", - "created": 1610361460.8031743, + "asctime": "2021-01-14 00:26:23,388", + "created": 1610580383.388475, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -126971,15 +126918,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 803.1742572784424, + "msecs": 388.4749412536621, "msg": "%s RX <- %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11366.901636123657, + "relativeCreated": 11380.966663360596, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -126987,8 +126934,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,803", - "created": 1610361460.8033597, + "asctime": "2021-01-14 00:26:23,388", + "created": 1610580383.3887439, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -126998,15 +126945,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 803.3597469329834, + "msecs": 388.7438774108887, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11367.087125778198, + "relativeCreated": 11381.235599517822, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -127015,8 +126962,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:40,803", - "created": 1610361460.8034465, + "asctime": "2021-01-14 00:26:23,388", + "created": 1610580383.3889127, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127026,15 +126973,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 803.4465312957764, + "msecs": 388.9126777648926, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11367.173910140991, + "relativeCreated": 11381.404399871826, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -127042,8 +126989,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:40,803", - "created": 1610361460.803574, + "asctime": "2021-01-14 00:26:23,389", + "created": 1610580383.3891623, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127053,15 +127000,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 803.5740852355957, + "msecs": 389.1623020172119, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11367.30146408081, + "relativeCreated": 11381.654024124146, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -127072,26 +127019,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:40,803", - "created": 1610361460.8037667, + "asctime": "2021-01-14 00:26:23,389", + "created": 1610580383.3894775, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 803.7667274475098, + "msecs": 389.4774913787842, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11367.494106292725, + "relativeCreated": 11381.969213485718, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -127099,26 +127046,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:40,803", - "created": 1610361460.8038664, + "asctime": "2021-01-14 00:26:23,389", + "created": 1610580383.3896322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 803.8663864135742, + "msecs": 389.6322250366211, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11367.593765258789, + "relativeCreated": 11382.123947143555, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -127129,26 +127076,26 @@ "status: okay", "'server'" ], - "asctime": "2021-01-11 11:37:40,803", - "created": 1610361460.8039916, + "asctime": "2021-01-14 00:26:23,389", + "created": 1610580383.3898952, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"'server'\"", "module": "__init__", - "msecs": 803.9915561676025, + "msecs": 389.8952007293701, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11367.718935012817, + "relativeCreated": 11382.386922836304, "stack_info": null, - "thread": 139976473835264, + "thread": 140581451851520, "threadName": "Thread-13" }, { @@ -127156,8 +127103,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" ], - "asctime": "2021-01-11 11:37:40,804", - "created": 1610361460.8044019, + "asctime": "2021-01-14 00:26:23,390", + "created": 1610580383.3908157, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127167,15 +127114,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", "module": "__init__", - "msecs": 804.4018745422363, + "msecs": 390.81573486328125, "msg": "%s TX -> %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11368.129253387451, + "relativeCreated": 11383.307456970215, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127183,8 +127130,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" ], - "asctime": "2021-01-11 11:37:40,812", - "created": 1610361460.8126993, + "asctime": "2021-01-14 00:26:23,399", + "created": 1610580383.3992298, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127194,15 +127141,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", "module": "__init__", - "msecs": 812.6993179321289, + "msecs": 399.2297649383545, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11376.426696777344, + "relativeCreated": 11391.721487045288, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127210,8 +127157,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,812", - "created": 1610361460.8129344, + "asctime": "2021-01-14 00:26:23,399", + "created": 1610580383.3994782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127221,15 +127168,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 812.934398651123, + "msecs": 399.4781970977783, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11376.661777496338, + "relativeCreated": 11391.969919204712, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127238,8 +127185,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.8130543, + "asctime": "2021-01-14 00:26:23,399", + "created": 1610580383.3996122, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127249,15 +127196,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 813.0543231964111, + "msecs": 399.6121883392334, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11376.781702041626, + "relativeCreated": 11392.103910446167, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127265,8 +127212,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.8132195, + "asctime": "2021-01-14 00:26:23,399", + "created": 1610580383.3997748, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127276,15 +127223,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 813.2195472717285, + "msecs": 399.77478981018066, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11376.946926116943, + "relativeCreated": 11392.266511917114, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127293,8 +127240,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.813334, + "asctime": "2021-01-14 00:26:23,399", + "created": 1610580383.399916, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127304,15 +127251,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 813.3339881896973, + "msecs": 399.9159336090088, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.061367034912, + "relativeCreated": 11392.407655715942, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127320,8 +127267,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.8134813, + "asctime": "2021-01-14 00:26:23,400", + "created": 1610580383.400086, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127331,15 +127278,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 813.481330871582, + "msecs": 400.0859260559082, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.208709716797, + "relativeCreated": 11392.577648162842, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127348,8 +127295,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.8135765, + "asctime": "2021-01-14 00:26:23,400", + "created": 1610580383.4001966, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127359,15 +127306,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 813.5764598846436, + "msecs": 400.1965522766113, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.303838729858, + "relativeCreated": 11392.688274383545, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127375,8 +127322,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.8137057, + "asctime": "2021-01-14 00:26:23,400", + "created": 1610580383.4003403, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127386,15 +127333,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 813.7056827545166, + "msecs": 400.34031867980957, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.433061599731, + "relativeCreated": 11392.832040786743, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127403,8 +127350,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.813808, + "asctime": "2021-01-14 00:26:23,400", + "created": 1610580383.4004443, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127414,15 +127361,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 813.8079643249512, + "msecs": 400.44426918029785, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.535343170166, + "relativeCreated": 11392.935991287231, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127430,8 +127377,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,813", - "created": 1610361460.813933, + "asctime": "2021-01-14 00:26:23,400", + "created": 1610580383.4005816, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127441,15 +127388,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 813.9328956604004, + "msecs": 400.58159828186035, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.660274505615, + "relativeCreated": 11393.073320388794, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127458,8 +127405,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:40,814", - "created": 1610361460.814027, + "asctime": "2021-01-14 00:26:23,400", + "created": 1610580383.4006865, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127469,15 +127416,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 814.0270709991455, + "msecs": 400.68650245666504, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.75444984436, + "relativeCreated": 11393.178224563599, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127485,8 +127432,8 @@ "comm-server:", "(10): 65 72 22 7d ac a3 7b cc 3a 3e" ], - "asctime": "2021-01-11 11:37:40,814", - "created": 1610361460.814205, + "asctime": "2021-01-14 00:26:23,400", + "created": 1610580383.4008825, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127496,15 +127443,15 @@ "lineno": 284, "message": "comm-server: TX -> (10): 65 72 22 7d ac a3 7b cc 3a 3e", "module": "__init__", - "msecs": 814.2049312591553, + "msecs": 400.8824825286865, "msg": "%s TX -> %s", "name": "root.helpers.server", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11377.93231010437, + "relativeCreated": 11393.37420463562, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127512,8 +127459,8 @@ "comm-client:", "(10): 65 72 22 7d ac a3 7b cc 3a 3e" ], - "asctime": "2021-01-11 11:37:40,815", - "created": 1610361460.8158066, + "asctime": "2021-01-14 00:26:23,402", + "created": 1610580383.4024844, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127523,15 +127470,15 @@ "lineno": 414, "message": "comm-client: RX <- (10): 65 72 22 7d ac a3 7b cc 3a 3e", "module": "__init__", - "msecs": 815.8066272735596, + "msecs": 402.4844169616699, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11379.534006118774, + "relativeCreated": 11394.976139068604, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127539,8 +127486,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:40,816", - "created": 1610361460.816077, + "asctime": "2021-01-14 00:26:23,402", + "created": 1610580383.402794, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127550,15 +127497,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 816.0769939422607, + "msecs": 402.79388427734375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11379.804372787476, + "relativeCreated": 11395.285606384277, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127567,8 +127514,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:40,816", - "created": 1610361460.8162277, + "asctime": "2021-01-14 00:26:23,402", + "created": 1610580383.4029605, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127578,15 +127525,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 816.2276744842529, + "msecs": 402.96053886413574, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11379.955053329468, + "relativeCreated": 11395.45226097107, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127594,8 +127541,8 @@ "STP:", "(66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc" ], - "asctime": "2021-01-11 11:37:40,816", - "created": 1610361460.816433, + "asctime": "2021-01-14 00:26:23,403", + "created": 1610580383.403179, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -127605,15 +127552,15 @@ "lineno": 148, "message": "STP: message identified - (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc", "module": "stp", - "msecs": 816.4329528808594, + "msecs": 403.1789302825928, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11380.160331726074, + "relativeCreated": 11395.670652389526, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127624,26 +127571,26 @@ "status: okay", "'server'" ], - "asctime": "2021-01-11 11:37:40,816", - "created": 1610361460.816767, + "asctime": "2021-01-14 00:26:23,403", + "created": 1610580383.403517, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"'server'\"", "module": "__init__", - "msecs": 816.7669773101807, + "msecs": 403.5170078277588, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11380.494356155396, + "relativeCreated": 11396.008729934692, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127651,26 +127598,26 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:40,816", - "created": 1610361460.8169222, + "asctime": "2021-01-14 00:26:23,403", + "created": 1610580383.4036787, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 816.9221878051758, + "msecs": 403.67865562438965, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11380.64956665039, + "relativeCreated": 11396.170377731323, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" }, { @@ -127678,48 +127625,48 @@ "prot-client:", "'server'" ], - "asctime": "2021-01-11 11:37:40,817", - "created": 1610361460.8171277, + "asctime": "2021-01-14 00:26:23,403", + "created": 1610580383.403897, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_response__", "levelname": "INFO", "levelno": 20, - "lineno": 407, + "lineno": 419, "message": "prot-client: channel name is now 'server'", "module": "__init__", - "msecs": 817.1277046203613, + "msecs": 403.8970470428467, "msg": "%s channel name is now %s", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11380.855083465576, + "relativeCreated": 11396.38876914978, "stack_info": null, - "thread": 139976465442560, + "thread": 140581443458816, "threadName": "Thread-14" } ], - "msecs": 136.03496551513672, + "msecs": 719.7616100311279, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11699.762344360352, + "relativeCreated": 11712.253332138062, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3189072608947754 + "time_consumption": 0.31586456298828125 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-11 11:37:41,136", - "created": 1610361461.136957, + "asctime": "2021-01-14 00:26:23,720", + "created": 1610580383.7206788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -127736,8 +127683,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:41,136", - "created": 1610361461.1365728, + "asctime": "2021-01-14 00:26:23,720", + "created": 1610580383.7203414, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -127747,15 +127694,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'server' ()", "module": "test", - "msecs": 136.57283782958984, + "msecs": 720.3414440155029, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11700.300216674805, + "relativeCreated": 11712.833166122437, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -127764,8 +127711,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:41,136", - "created": 1610361461.13679, + "asctime": "2021-01-14 00:26:23,720", + "created": 1610580383.7205236, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -127775,37 +127722,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'server' ()", "module": "test", - "msecs": 136.79003715515137, + "msecs": 720.5235958099365, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11700.517416000366, + "relativeCreated": 11713.01531791687, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 136.95693016052246, + "msecs": 720.6788063049316, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11700.684309005737, + "relativeCreated": 11713.170528411865, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016689300537109375 + "time_consumption": 0.0001552104949951172 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-11 11:37:41,137", - "created": 1610361461.1375084, + "asctime": "2021-01-14 00:26:23,721", + "created": 1610580383.7212567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -127822,8 +127769,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:41,137", - "created": 1610361461.1372035, + "asctime": "2021-01-14 00:26:23,720", + "created": 1610580383.72092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -127833,15 +127780,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'server' ()", "module": "test", - "msecs": 137.20345497131348, + "msecs": 720.9200859069824, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11700.930833816528, + "relativeCreated": 11713.411808013916, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -127850,8 +127797,8 @@ "'server'", "" ], - "asctime": "2021-01-11 11:37:41,137", - "created": 1610361461.1373453, + "asctime": "2021-01-14 00:26:23,721", + "created": 1610580383.7210593, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -127861,41 +127808,41 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'server' ()", "module": "test", - "msecs": 137.3453140258789, + "msecs": 721.0593223571777, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11701.072692871094, + "relativeCreated": 11713.551044464111, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 137.50839233398438, + "msecs": 721.2567329406738, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11701.2357711792, + "relativeCreated": 11713.748455047607, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016307830810546875 + "time_consumption": 0.00019741058349609375 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 1.7426109313964844, - "time_finished": "2021-01-11 11:37:41,137", - "time_start": "2021-01-11 11:37:39,394" + "time_consumption": 1.7460036277770996, + "time_finished": "2021-01-14 00:26:23,721", + "time_start": "2021-01-14 00:26:21,975" }, "_Pn3WgE0NEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:34,939", - "created": 1610361454.9392314, + "asctime": "2021-01-14 00:26:17,520", + "created": 1610580377.5208645, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127906,19 +127853,19 @@ "message": "_Pn3WgE0NEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 939.2313957214355, + "msecs": 520.8644866943359, "msg": "_Pn3WgE0NEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5502.95877456665, + "relativeCreated": 5513.3562088012695, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:34,949", - "created": 1610361454.949694, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5307202, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -127933,8 +127880,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:34,943", - "created": 1610361454.9439487, + "asctime": "2021-01-14 00:26:17,526", + "created": 1610580377.5267477, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127944,23 +127891,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 943.9487457275391, + "msecs": 526.7477035522461, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5507.676124572754, + "relativeCreated": 5519.23942565918, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:34,944", - "created": 1610361454.9446049, + "asctime": "2021-01-14 00:26:17,527", + "created": 1610580377.527643, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127970,23 +127917,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 944.6048736572266, + "msecs": 527.6429653167725, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5508.332252502441, + "relativeCreated": 5520.134687423706, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:34,944", - "created": 1610361454.9448078, + "asctime": "2021-01-14 00:26:17,527", + "created": 1610580377.5278518, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -127996,41 +127943,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 944.807767868042, + "msecs": 527.8518199920654, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5508.535146713257, + "relativeCreated": 5520.343542098999, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.9450812, + "asctime": "2021-01-14 00:26:17,528", + "created": 1610580377.5281572, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 945.0812339782715, + "msecs": 528.1572341918945, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5508.808612823486, + "relativeCreated": 5520.648956298828, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128039,26 +127986,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.9452147, + "asctime": "2021-01-14 00:26:17,528", + "created": 1610580377.5283346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 945.2147483825684, + "msecs": 528.3346176147461, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5508.942127227783, + "relativeCreated": 5520.82633972168, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128066,26 +128013,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.945377, + "asctime": "2021-01-14 00:26:17,528", + "created": 1610580377.5285459, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 945.3771114349365, + "msecs": 528.5458564758301, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.104490280151, + "relativeCreated": 5521.037578582764, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128093,26 +128040,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.9454908, + "asctime": "2021-01-14 00:26:17,528", + "created": 1610580377.5286882, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 945.490837097168, + "msecs": 528.6881923675537, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.218215942383, + "relativeCreated": 5521.179914474487, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128120,26 +128067,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.9455972, + "asctime": "2021-01-14 00:26:17,528", + "created": 1610580377.5288215, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 945.5971717834473, + "msecs": 528.8214683532715, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.324550628662, + "relativeCreated": 5521.313190460205, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128147,26 +128094,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.9457006, + "asctime": "2021-01-14 00:26:17,528", + "created": 1610580377.5289505, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 945.7006454467773, + "msecs": 528.9504528045654, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.428024291992, + "relativeCreated": 5521.442174911499, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128176,8 +128123,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.9458177, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5290964, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128187,15 +128134,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 945.8177089691162, + "msecs": 529.0963649749756, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.545087814331, + "relativeCreated": 5521.588087081909, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128205,8 +128152,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:34,945", - "created": 1610361454.9459417, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5292022, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128216,15 +128163,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 945.941686630249, + "msecs": 529.2022228240967, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.669065475464, + "relativeCreated": 5521.69394493103, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128234,8 +128181,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.9460566, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.529252, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128245,15 +128192,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 946.056604385376, + "msecs": 529.2520523071289, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.783983230591, + "relativeCreated": 5521.7437744140625, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128263,8 +128210,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.9461696, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5293012, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128274,41 +128221,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 946.1696147918701, + "msecs": 529.3011665344238, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.896993637085, + "relativeCreated": 5521.792888641357, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.9462698, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5293436, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 946.2697505950928, + "msecs": 529.3436050415039, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5509.997129440308, + "relativeCreated": 5521.8353271484375, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128317,26 +128264,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.9463804, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5293915, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 946.3803768157959, + "msecs": 529.3915271759033, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.107755661011, + "relativeCreated": 5521.883249282837, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128344,26 +128291,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.94651, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5294435, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 946.5100765228271, + "msecs": 529.4435024261475, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.237455368042, + "relativeCreated": 5521.935224533081, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128371,26 +128318,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.946615, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5294888, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 946.6149806976318, + "msecs": 529.4888019561768, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.342359542847, + "relativeCreated": 5521.98052406311, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128400,8 +128347,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.9467332, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5295424, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128411,15 +128358,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 946.7332363128662, + "msecs": 529.5424461364746, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.460615158081, + "relativeCreated": 5522.034168243408, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128429,8 +128376,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.946854, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.529594, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128440,15 +128387,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 946.8541145324707, + "msecs": 529.5939445495605, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.581493377686, + "relativeCreated": 5522.085666656494, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128457,26 +128404,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:34,946", - "created": 1610361454.9469619, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.52964, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 946.9618797302246, + "msecs": 529.6399593353271, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.689258575439, + "relativeCreated": 5522.131681442261, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128485,26 +128432,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.947063, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.529683, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 947.0629692077637, + "msecs": 529.6831130981445, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.7903480529785, + "relativeCreated": 5522.174835205078, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128513,78 +128460,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.9471629, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.529726, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 947.1628665924072, + "msecs": 529.7260284423828, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.890245437622, + "relativeCreated": 5522.217750549316, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.9472637, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.529769, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 947.2637176513672, + "msecs": 529.7689437866211, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5510.991096496582, + "relativeCreated": 5522.260665893555, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.9474652, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5298564, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 947.465181350708, + "msecs": 529.8564434051514, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.192560195923, + "relativeCreated": 5522.348165512085, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128593,26 +128540,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.9475782, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.529905, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 947.5781917572021, + "msecs": 529.9050807952881, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.305570602417, + "relativeCreated": 5522.396802902222, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128620,26 +128567,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.9477212, + "asctime": "2021-01-14 00:26:17,529", + "created": 1610580377.5299668, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 947.7212429046631, + "msecs": 529.9668312072754, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.448621749878, + "relativeCreated": 5522.458553314209, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128647,26 +128594,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.9478314, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.530013, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 947.831392288208, + "msecs": 530.0130844116211, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.558771133423, + "relativeCreated": 5522.504806518555, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128674,26 +128621,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:34,947", - "created": 1610361454.947934, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5300574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 947.9339122772217, + "msecs": 530.057430267334, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.6612911224365, + "relativeCreated": 5522.549152374268, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128701,26 +128648,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9480348, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5301063, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 948.0347633361816, + "msecs": 530.1063060760498, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.7621421813965, + "relativeCreated": 5522.598028182983, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128730,8 +128677,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9481409, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5301466, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128741,15 +128688,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 948.1408596038818, + "msecs": 530.146598815918, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.868238449097, + "relativeCreated": 5522.638320922852, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128759,8 +128706,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9482605, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5301912, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128770,15 +128717,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 948.2605457305908, + "msecs": 530.19118309021, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5511.987924575806, + "relativeCreated": 5522.682905197144, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128788,8 +128735,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9483793, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5302355, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128799,15 +128746,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 948.3792781829834, + "msecs": 530.2355289459229, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.106657028198, + "relativeCreated": 5522.727251052856, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128817,8 +128764,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.948489, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5302768, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128828,41 +128775,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 948.4889507293701, + "msecs": 530.2767753601074, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.216329574585, + "relativeCreated": 5522.768497467041, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9485867, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.530313, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 948.5867023468018, + "msecs": 530.3130149841309, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.314081192017, + "relativeCreated": 5522.804737091064, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128871,26 +128818,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9486938, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5303543, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 948.6937522888184, + "msecs": 530.3542613983154, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.421131134033, + "relativeCreated": 5522.845983505249, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128898,26 +128845,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9488373, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5303981, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 948.8372802734375, + "msecs": 530.3981304168701, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.564659118652, + "relativeCreated": 5522.889852523804, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128925,26 +128872,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:34,948", - "created": 1610361454.9489555, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5304377, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 948.9555358886719, + "msecs": 530.437707901001, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.682914733887, + "relativeCreated": 5522.929430007935, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128954,8 +128901,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:34,949", - "created": 1610361454.9490643, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.530478, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128965,15 +128912,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 949.0642547607422, + "msecs": 530.4780006408691, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.791633605957, + "relativeCreated": 5522.969722747803, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -128983,8 +128930,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:34,949", - "created": 1610361454.9491756, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.530525, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -128994,15 +128941,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 949.1755962371826, + "msecs": 530.5249691009521, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5512.9029750823975, + "relativeCreated": 5523.016691207886, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -129011,26 +128958,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:34,949", - "created": 1610361454.9492812, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5305653, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 949.2812156677246, + "msecs": 530.5652618408203, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5513.008594512939, + "relativeCreated": 5523.056983947754, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -129039,26 +128986,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:34,949", - "created": 1610361454.949382, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5306032, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 949.3820667266846, + "msecs": 530.6031703948975, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5513.109445571899, + "relativeCreated": 5523.094892501831, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -129067,71 +129014,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:34,949", - "created": 1610361454.949489, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5306406, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 949.4891166687012, + "msecs": 530.6406021118164, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5513.216495513916, + "relativeCreated": 5523.13232421875, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:34,949", - "created": 1610361454.9495988, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5306838, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 949.5987892150879, + "msecs": 530.6837558746338, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5513.326168060303, + "relativeCreated": 5523.175477981567, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 949.6939182281494, + "msecs": 530.7202339172363, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5513.421297073364, + "relativeCreated": 5523.21195602417, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 9.512901306152344e-05 + "time_consumption": 3.647804260253906e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:35,294", - "created": 1610361455.294621, + "asctime": "2021-01-14 00:26:17,874", + "created": 1610580377.8743398, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -129146,8 +129093,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:34,950", - "created": 1610361454.9502404, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5308073, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129157,23 +129104,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 950.2403736114502, + "msecs": 530.8072566986084, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5513.967752456665, + "relativeCreated": 5523.298978805542, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:34,950", - "created": 1610361454.9503992, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5308485, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129183,41 +129130,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 950.3991603851318, + "msecs": 530.848503112793, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5514.126539230347, + "relativeCreated": 5523.340225219727, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:34,950", - "created": 1610361454.9505272, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.5308864, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 950.5271911621094, + "msecs": 530.8864116668701, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5514.254570007324, + "relativeCreated": 5523.378133773804, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -129228,34 +129175,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:34,950", - "created": 1610361454.9507186, + "asctime": "2021-01-14 00:26:17,530", + "created": 1610580377.530957, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 950.7186412811279, + "msecs": 530.9569835662842, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5514.446020126343, + "relativeCreated": 5523.448705673218, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:34,951", - "created": 1610361454.9511242, + "asctime": "2021-01-14 00:26:17,531", + "created": 1610580377.531134, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129265,23 +129212,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 951.1241912841797, + "msecs": 531.1338901519775, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5514.8515701293945, + "relativeCreated": 5523.625612258911, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:34,951", - "created": 1610361454.9512477, + "asctime": "2021-01-14 00:26:17,531", + "created": 1610580377.531183, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129291,41 +129238,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 951.2476921081543, + "msecs": 531.1830043792725, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5514.975070953369, + "relativeCreated": 5523.674726486206, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:34,951", - "created": 1610361454.9513576, + "asctime": "2021-01-14 00:26:17,531", + "created": 1610580377.5312197, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 951.3576030731201, + "msecs": 531.2197208404541, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5515.084981918335, + "relativeCreated": 5523.711442947388, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -129333,8 +129280,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,951", - "created": 1610361454.951559, + "asctime": "2021-01-14 00:26:17,531", + "created": 1610580377.531341, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129344,15 +129291,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 951.5590667724609, + "msecs": 531.3410758972168, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5515.286445617676, + "relativeCreated": 5523.83279800415, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129360,8 +129307,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,959", - "created": 1610361454.9597044, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5395334, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129371,15 +129318,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 959.7043991088867, + "msecs": 539.5333766937256, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.431777954102, + "relativeCreated": 5532.025098800659, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129387,8 +129334,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,959", - "created": 1610361454.959834, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5396695, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129398,15 +129345,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 959.834098815918, + "msecs": 539.6695137023926, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.561477661133, + "relativeCreated": 5532.161235809326, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129415,8 +129362,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:34,959", - "created": 1610361454.959887, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5397236, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129426,15 +129373,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 959.8870277404785, + "msecs": 539.7236347198486, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.614406585693, + "relativeCreated": 5532.215356826782, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129442,8 +129389,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,959", - "created": 1610361454.9599495, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5397868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129453,15 +129400,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 959.9494934082031, + "msecs": 539.7868156433105, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.676872253418, + "relativeCreated": 5532.278537750244, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129470,8 +129417,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,959", - "created": 1610361454.9599934, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5398333, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129481,15 +129428,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 959.9933624267578, + "msecs": 539.8333072662354, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.720741271973, + "relativeCreated": 5532.325029373169, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129497,8 +129444,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,960", - "created": 1610361454.9600554, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5398965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129508,15 +129455,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.0553512573242, + "msecs": 539.8964881896973, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.782730102539, + "relativeCreated": 5532.388210296631, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129525,8 +129472,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,960", - "created": 1610361454.9601007, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5399404, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129536,15 +129483,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.1006507873535, + "msecs": 539.940357208252, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.828029632568, + "relativeCreated": 5532.432079315186, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129552,8 +129499,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,960", - "created": 1610361454.9601564, + "asctime": "2021-01-14 00:26:17,539", + "created": 1610580377.5399964, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129563,15 +129510,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.1564407348633, + "msecs": 539.9963855743408, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.883819580078, + "relativeCreated": 5532.488107681274, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129580,8 +129527,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,960", - "created": 1610361454.9601958, + "asctime": "2021-01-14 00:26:17,540", + "created": 1610580377.5400407, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129591,15 +129538,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.195779800415, + "msecs": 540.0407314300537, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.92315864563, + "relativeCreated": 5532.532453536987, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129607,8 +129554,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,960", - "created": 1610361454.9602497, + "asctime": "2021-01-14 00:26:17,540", + "created": 1610580377.5400958, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129618,15 +129565,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.249662399292, + "msecs": 540.0958061218262, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5523.977041244507, + "relativeCreated": 5532.58752822876, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129635,8 +129582,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,960", - "created": 1610361454.9603205, + "asctime": "2021-01-14 00:26:17,540", + "created": 1610580377.5401444, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129646,15 +129593,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.3204727172852, + "msecs": 540.1444435119629, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5524.0478515625, + "relativeCreated": 5532.6361656188965, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129662,8 +129609,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:34,960", - "created": 1610361454.9604077, + "asctime": "2021-01-14 00:26:17,540", + "created": 1610580377.540224, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129673,15 +129620,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 960.4077339172363, + "msecs": 540.2240753173828, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5524.135112762451, + "relativeCreated": 5532.715797424316, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129689,8 +129636,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.9612865, + "asctime": "2021-01-14 00:26:17,541", + "created": 1610580377.5411851, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129700,15 +129647,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 961.2865447998047, + "msecs": 541.1851406097412, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.0139236450195, + "relativeCreated": 5533.676862716675, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129716,8 +129663,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.961342, + "asctime": "2021-01-14 00:26:17,541", + "created": 1610580377.5413084, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129727,15 +129674,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 961.3420963287354, + "msecs": 541.3084030151367, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.06947517395, + "relativeCreated": 5533.80012512207, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129744,8 +129691,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.9613886, + "asctime": "2021-01-14 00:26:17,541", + "created": 1610580377.5413687, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129755,15 +129702,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 961.3885879516602, + "msecs": 541.3687229156494, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.115966796875, + "relativeCreated": 5533.860445022583, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129771,8 +129718,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.9614627, + "asctime": "2021-01-14 00:26:17,541", + "created": 1610580377.5414457, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129782,15 +129729,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 961.4627361297607, + "msecs": 541.4457321166992, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.190114974976, + "relativeCreated": 5533.937454223633, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129801,26 +129748,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.96159, + "asctime": "2021-01-14 00:26:17,541", + "created": 1610580377.541587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 961.590051651001, + "msecs": 541.5871143341064, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.317430496216, + "relativeCreated": 5534.07883644104, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129828,26 +129775,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.961647, + "asctime": "2021-01-14 00:26:17,541", + "created": 1610580377.5416474, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 961.6470336914062, + "msecs": 541.6474342346191, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.374412536621, + "relativeCreated": 5534.139156341553, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129858,26 +129805,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.9617245, + "asctime": "2021-01-14 00:26:17,541", + "created": 1610580377.5417304, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 961.7245197296143, + "msecs": 541.7304039001465, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.451898574829, + "relativeCreated": 5534.22212600708, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -129885,8 +129832,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,961", - "created": 1610361454.9619775, + "asctime": "2021-01-14 00:26:17,542", + "created": 1610580377.542005, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129896,15 +129843,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 961.977481842041, + "msecs": 542.0050621032715, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5525.704860687256, + "relativeCreated": 5534.496784210205, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -129912,8 +129859,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9701817, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5501986, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -129923,15 +129870,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 970.1817035675049, + "msecs": 550.1985549926758, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5533.90908241272, + "relativeCreated": 5542.690277099609, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -129939,8 +129886,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9702964, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5503304, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129950,15 +129897,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 970.2963829040527, + "msecs": 550.330400466919, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.023761749268, + "relativeCreated": 5542.8221225738525, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -129967,8 +129914,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.970347, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5503883, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -129978,15 +129925,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 970.3469276428223, + "msecs": 550.3883361816406, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.074306488037, + "relativeCreated": 5542.880058288574, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -129994,8 +129941,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.970408, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5504687, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130005,15 +129952,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 970.4079627990723, + "msecs": 550.4686832427979, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.135341644287, + "relativeCreated": 5542.960405349731, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130022,8 +129969,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9704525, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5505145, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130033,15 +129980,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 970.4525470733643, + "msecs": 550.5144596099854, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.179925918579, + "relativeCreated": 5543.006181716919, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130049,8 +129996,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9705255, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.550577, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130060,15 +130007,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 970.5255031585693, + "msecs": 550.57692527771, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.252882003784, + "relativeCreated": 5543.068647384644, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130077,8 +130024,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9705725, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5506237, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130088,15 +130035,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 970.5724716186523, + "msecs": 550.6236553192139, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.299850463867, + "relativeCreated": 5543.1153774261475, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130104,8 +130051,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9706318, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5506837, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130115,15 +130062,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 970.6318378448486, + "msecs": 550.6837368011475, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.3592166900635, + "relativeCreated": 5543.175458908081, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130132,8 +130079,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9706745, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5507307, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130143,15 +130090,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 970.6745147705078, + "msecs": 550.7307052612305, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.401893615723, + "relativeCreated": 5543.222427368164, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130159,8 +130106,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9707277, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.550787, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130170,15 +130117,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 970.7276821136475, + "msecs": 550.7869720458984, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.455060958862, + "relativeCreated": 5543.278694152832, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130187,8 +130134,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9707673, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5508294, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130198,15 +130145,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 970.7672595977783, + "msecs": 550.8294105529785, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.494638442993, + "relativeCreated": 5543.321132659912, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130214,8 +130161,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:34,970", - "created": 1610361454.9708514, + "asctime": "2021-01-14 00:26:17,550", + "created": 1610580377.5509183, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -130225,15 +130172,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 970.8514213562012, + "msecs": 550.9183406829834, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5534.578800201416, + "relativeCreated": 5543.410062789917, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130241,8 +130188,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:34,971", - "created": 1610361454.9717944, + "asctime": "2021-01-14 00:26:17,551", + "created": 1610580377.551864, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -130252,15 +130199,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 971.7943668365479, + "msecs": 551.8639087677002, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5535.521745681763, + "relativeCreated": 5544.355630874634, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130268,8 +130215,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:34,971", - "created": 1610361454.9719174, + "asctime": "2021-01-14 00:26:17,551", + "created": 1610580377.5519981, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130279,15 +130226,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 971.9173908233643, + "msecs": 551.9981384277344, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5535.644769668579, + "relativeCreated": 5544.489860534668, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130296,8 +130243,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:34,971", - "created": 1610361454.9719684, + "asctime": "2021-01-14 00:26:17,552", + "created": 1610580377.5520527, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130307,15 +130254,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 971.968412399292, + "msecs": 552.0527362823486, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5535.695791244507, + "relativeCreated": 5544.544458389282, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130323,8 +130270,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:34,972", - "created": 1610361454.9720426, + "asctime": "2021-01-14 00:26:17,552", + "created": 1610580377.5521307, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130334,15 +130281,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 972.0425605773926, + "msecs": 552.1306991577148, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5535.769939422607, + "relativeCreated": 5544.622421264648, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130353,26 +130300,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:34,972", - "created": 1610361454.972186, + "asctime": "2021-01-14 00:26:17,552", + "created": 1610580377.5522604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 972.1860885620117, + "msecs": 552.2603988647461, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5535.913467407227, + "relativeCreated": 5544.75212097168, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -130380,45 +130327,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:34,972", - "created": 1610361454.9722457, + "asctime": "2021-01-14 00:26:17,552", + "created": 1610580377.552322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 972.2456932067871, + "msecs": 552.3219108581543, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5535.973072052002, + "relativeCreated": 5544.813632965088, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" } ], - "msecs": 294.6209907531738, + "msecs": 874.3398189544678, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5858.348369598389, + "relativeCreated": 5866.831541061401, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3223752975463867 + "time_consumption": 0.3220179080963135 }, { "args": [], - "asctime": "2021-01-11 11:37:35,295", - "created": 1610361455.2950804, + "asctime": "2021-01-14 00:26:17,874", + "created": 1610580377.874694, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -130429,22 +130376,22 @@ "message": "Setting a Server secret and no Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 295.08042335510254, + "msecs": 874.6941089630127, "msg": "Setting a Server secret and no Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5858.807802200317, + "relativeCreated": 5867.185831069946, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:35,496", - "created": 1610361455.4966488, + "asctime": "2021-01-14 00:26:18,076", + "created": 1610580378.0761373, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -130463,26 +130410,26 @@ "status: okay", "'msg3_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:35,295", - "created": 1610361455.2954452, + "asctime": "2021-01-14 00:26:17,874", + "created": 1610580377.874964, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", "module": "__init__", - "msecs": 295.44520378112793, + "msecs": 874.9639987945557, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5859.172582626343, + "relativeCreated": 5867.455720901489, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -130490,8 +130437,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:35,296", - "created": 1610361455.2963586, + "asctime": "2021-01-14 00:26:17,875", + "created": 1610580377.875748, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -130501,15 +130448,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 296.358585357666, + "msecs": 875.7479190826416, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5860.085964202881, + "relativeCreated": 5868.239641189575, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130517,8 +130464,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:35,304", - "created": 1610361455.304874, + "asctime": "2021-01-14 00:26:17,884", + "created": 1610580377.884208, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -130528,15 +130475,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 304.8739433288574, + "msecs": 884.2079639434814, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5868.601322174072, + "relativeCreated": 5876.699686050415, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130544,8 +130491,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,305", - "created": 1610361455.3051596, + "asctime": "2021-01-14 00:26:17,884", + "created": 1610580377.8844833, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130555,15 +130502,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 305.1595687866211, + "msecs": 884.4833374023438, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5868.886947631836, + "relativeCreated": 5876.975059509277, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130572,8 +130519,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:35,305", - "created": 1610361455.3053474, + "asctime": "2021-01-14 00:26:17,884", + "created": 1610580377.884657, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130583,15 +130530,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 305.3474426269531, + "msecs": 884.6569061279297, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5869.074821472168, + "relativeCreated": 5877.148628234863, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130599,8 +130546,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,305", - "created": 1610361455.3055527, + "asctime": "2021-01-14 00:26:17,884", + "created": 1610580377.8848426, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130610,15 +130557,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 305.55272102355957, + "msecs": 884.8426342010498, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5869.280099868774, + "relativeCreated": 5877.334356307983, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130627,8 +130574,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,305", - "created": 1610361455.3056958, + "asctime": "2021-01-14 00:26:17,884", + "created": 1610580377.8849719, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130638,15 +130585,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 305.6957721710205, + "msecs": 884.9718570709229, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5869.423151016235, + "relativeCreated": 5877.463579177856, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130654,8 +130601,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,305", - "created": 1610361455.3059046, + "asctime": "2021-01-14 00:26:17,885", + "created": 1610580377.885211, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130665,15 +130612,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 305.9046268463135, + "msecs": 885.2109909057617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5869.632005691528, + "relativeCreated": 5877.702713012695, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130682,8 +130629,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,306", - "created": 1610361455.3060472, + "asctime": "2021-01-14 00:26:17,885", + "created": 1610580377.8853471, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130693,15 +130640,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 306.0472011566162, + "msecs": 885.3471279144287, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5869.774580001831, + "relativeCreated": 5877.838850021362, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130709,8 +130656,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,306", - "created": 1610361455.3062525, + "asctime": "2021-01-14 00:26:17,885", + "created": 1610580377.8855724, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130720,15 +130667,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 306.25247955322266, + "msecs": 885.5724334716797, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5869.9798583984375, + "relativeCreated": 5878.064155578613, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130737,8 +130684,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,306", - "created": 1610361455.306402, + "asctime": "2021-01-14 00:26:17,885", + "created": 1610580377.8857095, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130748,15 +130695,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 306.40196800231934, + "msecs": 885.7095241546631, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5870.129346847534, + "relativeCreated": 5878.201246261597, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130764,8 +130711,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,306", - "created": 1610361455.3065772, + "asctime": "2021-01-14 00:26:17,885", + "created": 1610580377.8858676, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130775,15 +130722,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 306.577205657959, + "msecs": 885.8675956726074, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5870.304584503174, + "relativeCreated": 5878.359317779541, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130792,8 +130739,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,306", - "created": 1610361455.3067095, + "asctime": "2021-01-14 00:26:17,885", + "created": 1610580377.8859868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130803,15 +130750,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 306.70952796936035, + "msecs": 885.9868049621582, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5870.436906814575, + "relativeCreated": 5878.478527069092, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130819,8 +130766,8 @@ "comm-client:", "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" ], - "asctime": "2021-01-11 11:37:35,306", - "created": 1610361455.3069751, + "asctime": "2021-01-14 00:26:17,886", + "created": 1610580377.8862252, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -130830,15 +130777,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", "module": "__init__", - "msecs": 306.9751262664795, + "msecs": 886.2252235412598, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5870.702505111694, + "relativeCreated": 5878.716945648193, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130846,8 +130793,8 @@ "comm-server:", "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" ], - "asctime": "2021-01-11 11:37:35,311", - "created": 1610361455.3114138, + "asctime": "2021-01-14 00:26:17,890", + "created": 1610580377.8905787, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -130857,15 +130804,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", "module": "__init__", - "msecs": 311.4137649536133, + "msecs": 890.5787467956543, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5875.141143798828, + "relativeCreated": 5883.070468902588, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130873,8 +130820,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,311", - "created": 1610361455.3117309, + "asctime": "2021-01-14 00:26:17,890", + "created": 1610580377.8909879, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130884,15 +130831,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 311.73086166381836, + "msecs": 890.9878730773926, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5875.458240509033, + "relativeCreated": 5883.479595184326, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130901,8 +130848,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:35,311", - "created": 1610361455.3118553, + "asctime": "2021-01-14 00:26:17,891", + "created": 1610580377.8911397, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130912,15 +130859,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 311.8553161621094, + "msecs": 891.1397457122803, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5875.582695007324, + "relativeCreated": 5883.631467819214, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130928,8 +130875,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d" ], - "asctime": "2021-01-11 11:37:35,312", - "created": 1610361455.3120668, + "asctime": "2021-01-14 00:26:17,891", + "created": 1610580377.8913999, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -130939,15 +130886,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d", "module": "stp", - "msecs": 312.06679344177246, + "msecs": 891.3998603820801, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5875.794172286987, + "relativeCreated": 5883.891582489014, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -130958,52 +130905,52 @@ "status: okay", "'msg3_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:35,312", - "created": 1610361455.3123498, + "asctime": "2021-01-14 00:26:17,891", + "created": 1610580377.8917472, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", "module": "__init__", - "msecs": 312.349796295166, + "msecs": 891.747236251831, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5876.077175140381, + "relativeCreated": 5884.238958358765, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:35,312", - "created": 1610361455.3124738, + "asctime": "2021-01-14 00:26:17,891", + "created": 1610580377.8919013, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 459, + "lineno": 471, "message": "prot-server: Authentification is required. Just sending negative response.", "module": "__init__", - "msecs": 312.4737739562988, + "msecs": 891.9012546539307, "msg": "%s Authentification is required. Just sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5876.201152801514, + "relativeCreated": 5884.392976760864, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -131014,26 +130961,26 @@ "status: authentification required", "None" ], - "asctime": "2021-01-11 11:37:35,312", - "created": 1610361455.312658, + "asctime": "2021-01-14 00:26:17,892", + "created": 1610580377.8921287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: execute response, data_id: 36, status: authentification required, data: \"None\"", "module": "__init__", - "msecs": 312.65807151794434, + "msecs": 892.1287059783936, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5876.385450363159, + "relativeCreated": 5884.620428085327, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -131041,8 +130988,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-01-11 11:37:35,313", - "created": 1610361455.3132982, + "asctime": "2021-01-14 00:26:17,892", + "created": 1610580377.8927636, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -131052,15 +130999,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", "module": "__init__", - "msecs": 313.29822540283203, + "msecs": 892.763614654541, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5877.025604248047, + "relativeCreated": 5885.255336761475, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131068,8 +131015,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-01-11 11:37:35,321", - "created": 1610361455.321648, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9010384, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -131079,15 +131026,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", "module": "__init__", - "msecs": 321.64788246154785, + "msecs": 901.038408279419, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5885.375261306763, + "relativeCreated": 5893.5301303863525, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131095,8 +131042,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,321", - "created": 1610361455.321868, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9012167, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131106,15 +131053,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 321.8679428100586, + "msecs": 901.2167453765869, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5885.595321655273, + "relativeCreated": 5893.7084674835205, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131123,8 +131070,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:35,321", - "created": 1610361455.3219974, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9012923, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131134,15 +131081,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 321.99740409851074, + "msecs": 901.2923240661621, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5885.724782943726, + "relativeCreated": 5893.784046173096, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131150,8 +131097,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,322", - "created": 1610361455.3221633, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.901383, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131161,15 +131108,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 322.16334342956543, + "msecs": 901.3829231262207, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5885.89072227478, + "relativeCreated": 5893.874645233154, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131178,8 +131125,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,322", - "created": 1610361455.3222828, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9014516, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131189,15 +131136,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 322.2827911376953, + "msecs": 901.451587677002, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5886.01016998291, + "relativeCreated": 5893.943309783936, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131205,8 +131152,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,322", - "created": 1610361455.3224607, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.901544, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131216,15 +131163,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 322.4606513977051, + "msecs": 901.5440940856934, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5886.18803024292, + "relativeCreated": 5894.035816192627, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131233,8 +131180,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,322", - "created": 1610361455.3225737, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9016047, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131244,15 +131191,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 322.5736618041992, + "msecs": 901.6046524047852, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5886.301040649414, + "relativeCreated": 5894.096374511719, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131260,8 +131207,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,322", - "created": 1610361455.3227353, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9016876, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131271,15 +131218,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 322.7353096008301, + "msecs": 901.6876220703125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5886.462688446045, + "relativeCreated": 5894.179344177246, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131288,8 +131235,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,322", - "created": 1610361455.322846, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9017484, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131299,15 +131246,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 322.8459358215332, + "msecs": 901.7484188079834, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5886.573314666748, + "relativeCreated": 5894.240140914917, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131315,8 +131262,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,322", - "created": 1610361455.3229923, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.901825, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131326,15 +131273,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 322.99232482910156, + "msecs": 901.824951171875, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5886.719703674316, + "relativeCreated": 5894.316673278809, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131343,8 +131290,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,323", - "created": 1610361455.323101, + "asctime": "2021-01-14 00:26:17,901", + "created": 1610580377.9018836, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131354,15 +131301,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 323.1010437011719, + "msecs": 901.883602142334, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5886.828422546387, + "relativeCreated": 5894.375324249268, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131370,8 +131317,8 @@ "comm-server:", "(8): 6c 7d 5d 78 af a4 3a 3e" ], - "asctime": "2021-01-11 11:37:35,323", - "created": 1610361455.3233058, + "asctime": "2021-01-14 00:26:17,902", + "created": 1610580377.9020102, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -131381,15 +131328,15 @@ "lineno": 284, "message": "comm-server: TX -> (8): 6c 7d 5d 78 af a4 3a 3e", "module": "__init__", - "msecs": 323.3058452606201, + "msecs": 902.0102024078369, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5887.033224105835, + "relativeCreated": 5894.5019245147705, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131397,8 +131344,8 @@ "comm-client:", "(8): 6c 7d 5d 78 af a4 3a 3e" ], - "asctime": "2021-01-11 11:37:35,324", - "created": 1610361455.32463, + "asctime": "2021-01-14 00:26:17,903", + "created": 1610580377.9032216, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -131408,15 +131355,15 @@ "lineno": 414, "message": "comm-client: RX <- (8): 6c 7d 5d 78 af a4 3a 3e", "module": "__init__", - "msecs": 324.6300220489502, + "msecs": 903.221607208252, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5888.357400894165, + "relativeCreated": 5895.713329315186, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131424,8 +131371,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,324", - "created": 1610361455.324953, + "asctime": "2021-01-14 00:26:17,903", + "created": 1610580377.9034102, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131435,15 +131382,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 324.9530792236328, + "msecs": 903.4101963043213, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5888.680458068848, + "relativeCreated": 5895.901918411255, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131452,8 +131399,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:35,325", - "created": 1610361455.3251505, + "asctime": "2021-01-14 00:26:17,903", + "created": 1610580377.903508, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131463,15 +131410,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 325.1504898071289, + "msecs": 903.5079479217529, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5888.877868652344, + "relativeCreated": 5895.9996700286865, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131479,8 +131426,8 @@ "STP:", "(64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4" ], - "asctime": "2021-01-11 11:37:35,325", - "created": 1610361455.3254032, + "asctime": "2021-01-14 00:26:17,903", + "created": 1610580377.903625, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131490,15 +131437,15 @@ "lineno": 148, "message": "STP: message identified - (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4", "module": "stp", - "msecs": 325.40321350097656, + "msecs": 903.6250114440918, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5889.130592346191, + "relativeCreated": 5896.116733551025, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131509,74 +131456,74 @@ "status: authentification required", "None" ], - "asctime": "2021-01-11 11:37:35,325", - "created": 1610361455.3257713, + "asctime": "2021-01-14 00:26:17,903", + "created": 1610580377.9038265, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", "module": "__init__", - "msecs": 325.7713317871094, + "msecs": 903.8264751434326, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5889.498710632324, + "relativeCreated": 5896.318197250366, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:35,325", - "created": 1610361455.325991, + "asctime": "2021-01-14 00:26:17,903", + "created": 1610580377.9039333, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 325.9909152984619, + "msecs": 903.9332866668701, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 5889.718294143677, + "relativeCreated": 5896.425008773804, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" } ], - "msecs": 496.64878845214844, + "msecs": 76.13730430603027, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6060.376167297363, + "relativeCreated": 6068.629026412964, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.17065787315368652 + "time_consumption": 0.17220401763916016 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:35,498", - "created": 1610361455.4981089, + "asctime": "2021-01-14 00:26:18,076", + "created": 1610580378.0769567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -131593,8 +131540,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:35,497", - "created": 1610361455.497607, + "asctime": "2021-01-14 00:26:18,076", + "created": 1610580378.0766253, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -131604,15 +131551,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 497.6069927215576, + "msecs": 76.62534713745117, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6061.3343715667725, + "relativeCreated": 6069.117069244385, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -131621,8 +131568,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:35,497", - "created": 1610361455.4979103, + "asctime": "2021-01-14 00:26:18,076", + "created": 1610580378.0768006, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -131632,37 +131579,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 497.9102611541748, + "msecs": 76.80058479309082, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6061.63763999939, + "relativeCreated": 6069.292306900024, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 498.1088638305664, + "msecs": 76.95674896240234, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6061.836242675781, + "relativeCreated": 6069.448471069336, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00019860267639160156 + "time_consumption": 0.00015616416931152344 }, { "args": [ "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:35,498", - "created": 1610361455.4988189, + "asctime": "2021-01-14 00:26:18,077", + "created": 1610580378.0775788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -131679,8 +131626,8 @@ "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:35,498", - "created": 1610361455.4984155, + "asctime": "2021-01-14 00:26:18,077", + "created": 1610580378.0772417, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -131690,15 +131637,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 36, 'service_id': 31, 'status': 3, 'data': None} ()", "module": "test", - "msecs": 498.415470123291, + "msecs": 77.24165916442871, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6062.142848968506, + "relativeCreated": 6069.733381271362, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -131707,8 +131654,8 @@ "{'service_id': 31, 'data_id': 36, 'status': 3, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:35,498", - "created": 1610361455.4986227, + "asctime": "2021-01-14 00:26:18,077", + "created": 1610580378.077419, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -131718,34 +131665,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 31, 'data_id': 36, 'status': 3, 'data': None} ()", "module": "test", - "msecs": 498.6226558685303, + "msecs": 77.41904258728027, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6062.350034713745, + "relativeCreated": 6069.910764694214, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 498.81887435913086, + "msecs": 77.57878303527832, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6062.546253204346, + "relativeCreated": 6070.070505142212, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00019621849060058594 + "time_consumption": 0.00015974044799804688 }, { "args": [], - "asctime": "2021-01-11 11:37:35,499", - "created": 1610361455.499086, + "asctime": "2021-01-14 00:26:18,077", + "created": 1610580378.0777836, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -131756,22 +131703,22 @@ "message": "Setting no Server secret but a Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 499.0859031677246, + "msecs": 77.78358459472656, "msg": "Setting no Server secret but a Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6062.813282012939, + "relativeCreated": 6070.27530670166, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:35,801", - "created": 1610361455.8015249, + "asctime": "2021-01-14 00:26:18,380", + "created": 1610580378.3801565, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -131790,26 +131737,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:35,499", - "created": 1610361455.49952, + "asctime": "2021-01-14 00:26:18,078", + "created": 1610580378.0781183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 499.52006340026855, + "msecs": 78.11832427978516, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6063.247442245483, + "relativeCreated": 6070.610046386719, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -131817,8 +131764,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:35,500", - "created": 1610361455.5006528, + "asctime": "2021-01-14 00:26:18,079", + "created": 1610580378.0790796, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -131828,15 +131775,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 500.6527900695801, + "msecs": 79.07962799072266, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6064.380168914795, + "relativeCreated": 6071.571350097656, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131844,8 +131791,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:35,508", - "created": 1610361455.5088792, + "asctime": "2021-01-14 00:26:18,087", + "created": 1610580378.0875907, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -131855,15 +131802,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 508.8791847229004, + "msecs": 87.59069442749023, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6072.606563568115, + "relativeCreated": 6080.082416534424, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131871,8 +131818,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5090005, + "asctime": "2021-01-14 00:26:18,087", + "created": 1610580378.0879142, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131882,15 +131829,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 509.0005397796631, + "msecs": 87.91422843933105, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6072.727918624878, + "relativeCreated": 6080.405950546265, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131899,8 +131846,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5090802, + "asctime": "2021-01-14 00:26:18,088", + "created": 1610580378.0880866, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131910,15 +131857,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 509.080171585083, + "msecs": 88.08660507202148, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6072.807550430298, + "relativeCreated": 6080.578327178955, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131926,8 +131873,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.509174, + "asctime": "2021-01-14 00:26:18,088", + "created": 1610580378.0882883, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131937,15 +131884,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 509.174108505249, + "msecs": 88.2883071899414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6072.901487350464, + "relativeCreated": 6080.780029296875, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131954,8 +131901,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.509239, + "asctime": "2021-01-14 00:26:18,088", + "created": 1610580378.0884316, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131965,15 +131912,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 509.23895835876465, + "msecs": 88.43159675598145, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6072.9663372039795, + "relativeCreated": 6080.923318862915, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -131981,8 +131928,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5093348, + "asctime": "2021-01-14 00:26:18,088", + "created": 1610580378.0886366, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -131992,15 +131939,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 509.3348026275635, + "msecs": 88.63663673400879, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6073.062181472778, + "relativeCreated": 6081.128358840942, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132009,8 +131956,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.509397, + "asctime": "2021-01-14 00:26:18,088", + "created": 1610580378.088769, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132020,15 +131967,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 509.397029876709, + "msecs": 88.76895904541016, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6073.124408721924, + "relativeCreated": 6081.260681152344, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132036,8 +131983,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5094857, + "asctime": "2021-01-14 00:26:18,088", + "created": 1610580378.0889635, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132047,15 +131994,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 509.48572158813477, + "msecs": 88.96350860595703, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6073.21310043335, + "relativeCreated": 6081.455230712891, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132064,8 +132011,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5095582, + "asctime": "2021-01-14 00:26:18,089", + "created": 1610580378.0890963, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132075,15 +132022,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 509.55820083618164, + "msecs": 89.0963077545166, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6073.2855796813965, + "relativeCreated": 6081.58802986145, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132091,8 +132038,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5096555, + "asctime": "2021-01-14 00:26:18,089", + "created": 1610580378.0893207, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132102,15 +132049,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 509.6554756164551, + "msecs": 89.32065963745117, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6073.38285446167, + "relativeCreated": 6081.812381744385, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132119,8 +132066,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5097234, + "asctime": "2021-01-14 00:26:18,089", + "created": 1610580378.089465, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132130,15 +132077,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 509.723424911499, + "msecs": 89.46490287780762, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6073.450803756714, + "relativeCreated": 6081.956624984741, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132146,8 +132093,8 @@ "comm-server:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:35,509", - "created": 1610361455.5098517, + "asctime": "2021-01-14 00:26:18,089", + "created": 1610580378.0897381, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -132157,15 +132104,15 @@ "lineno": 284, "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 509.85169410705566, + "msecs": 89.73813056945801, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6073.5790729522705, + "relativeCreated": 6082.229852676392, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132173,8 +132120,8 @@ "comm-client:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:35,514", - "created": 1610361455.5141156, + "asctime": "2021-01-14 00:26:18,094", + "created": 1610580378.0941741, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -132184,15 +132131,15 @@ "lineno": 414, "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 514.115571975708, + "msecs": 94.17414665222168, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6077.842950820923, + "relativeCreated": 6086.665868759155, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132200,8 +132147,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:35,514", - "created": 1610361455.5144277, + "asctime": "2021-01-14 00:26:18,094", + "created": 1610580378.0946417, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132211,15 +132158,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 514.427661895752, + "msecs": 94.64168548583984, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6078.155040740967, + "relativeCreated": 6087.133407592773, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132228,8 +132175,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:35,514", - "created": 1610361455.514547, + "asctime": "2021-01-14 00:26:18,094", + "created": 1610580378.0948133, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132239,15 +132186,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 514.5471096038818, + "msecs": 94.81334686279297, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6078.274488449097, + "relativeCreated": 6087.305068969727, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132255,8 +132202,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" ], - "asctime": "2021-01-11 11:37:35,514", - "created": 1610361455.5147812, + "asctime": "2021-01-14 00:26:18,095", + "created": 1610580378.0951161, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -132266,15 +132213,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", "module": "stp", - "msecs": 514.7812366485596, + "msecs": 95.11613845825195, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6078.508615493774, + "relativeCreated": 6087.607860565186, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132285,52 +132232,52 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:35,515", - "created": 1610361455.515074, + "asctime": "2021-01-14 00:26:18,095", + "created": 1610580378.0955455, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 515.0740146636963, + "msecs": 95.54553031921387, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6078.801393508911, + "relativeCreated": 6088.0372524261475, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:35,515", - "created": 1610361455.5151994, + "asctime": "2021-01-14 00:26:18,095", + "created": 1610580378.0957215, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 463, + "lineno": 475, "message": "prot-client: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 515.1994228363037, + "msecs": 95.72148323059082, "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6078.926801681519, + "relativeCreated": 6088.213205337524, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -132340,48 +132287,48 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:35,801", - "created": 1610361455.8012452, + "asctime": "2021-01-14 00:26:18,379", + "created": 1610580378.3798642, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 801.2452125549316, + "msecs": 379.8642158508301, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6364.9725914001465, + "relativeCreated": 6372.355937957764, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 801.5248775482178, + "msecs": 380.1565170288086, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6365.252256393433, + "relativeCreated": 6372.648239135742, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0002796649932861328 + "time_consumption": 0.0002923011779785156 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:35,802", - "created": 1610361455.8022106, + "asctime": "2021-01-14 00:26:18,380", + "created": 1610580378.3808467, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132398,8 +132345,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:35,801", - "created": 1610361455.8019059, + "asctime": "2021-01-14 00:26:18,380", + "created": 1610580378.3805385, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132409,15 +132356,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 801.9058704376221, + "msecs": 380.5384635925293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6365.633249282837, + "relativeCreated": 6373.030185699463, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -132426,8 +132373,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:35,802", - "created": 1610361455.8020637, + "asctime": "2021-01-14 00:26:18,380", + "created": 1610580378.3806996, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132437,37 +132384,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 802.0637035369873, + "msecs": 380.69963455200195, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6365.791082382202, + "relativeCreated": 6373.191356658936, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 802.2105693817139, + "msecs": 380.8467388153076, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6365.937948226929, + "relativeCreated": 6373.338460922241, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001468658447265625 + "time_consumption": 0.00014710426330566406 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:35,802", - "created": 1610361455.8027017, + "asctime": "2021-01-14 00:26:18,381", + "created": 1610580378.3813891, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132484,8 +132431,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:35,802", - "created": 1610361455.8024318, + "asctime": "2021-01-14 00:26:18,381", + "created": 1610580378.3810723, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132495,15 +132442,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 802.4318218231201, + "msecs": 381.0722827911377, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6366.159200668335, + "relativeCreated": 6373.564004898071, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -132512,8 +132459,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:35,802", - "created": 1610361455.8025682, + "asctime": "2021-01-14 00:26:18,381", + "created": 1610580378.3812518, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132523,34 +132470,34 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 802.5681972503662, + "msecs": 381.2518119812012, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6366.295576095581, + "relativeCreated": 6373.743534088135, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 802.7017116546631, + "msecs": 381.3891410827637, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6366.429090499878, + "relativeCreated": 6373.880863189697, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000133514404296875 + "time_consumption": 0.0001373291015625 }, { "args": [], - "asctime": "2021-01-11 11:37:35,802", - "created": 1610361455.8029, + "asctime": "2021-01-14 00:26:18,381", + "created": 1610580378.3815885, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -132561,22 +132508,22 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 802.9000759124756, + "msecs": 381.5884590148926, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6366.62745475769, + "relativeCreated": 6374.080181121826, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:36,104", - "created": 1610361456.1045132, + "asctime": "2021-01-14 00:26:18,682", + "created": 1610580378.682941, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -132594,26 +132541,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:35,803", - "created": 1610361455.8031678, + "asctime": "2021-01-14 00:26:18,381", + "created": 1610580378.3818574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 803.1678199768066, + "msecs": 381.85739517211914, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6366.8951988220215, + "relativeCreated": 6374.349117279053, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -132623,48 +132570,48 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:36,104", - "created": 1610361456.104229, + "asctime": "2021-01-14 00:26:18,682", + "created": 1610580378.682807, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 104.22897338867188, + "msecs": 682.8069686889648, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6667.956352233887, + "relativeCreated": 6675.298690795898, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 104.51316833496094, + "msecs": 682.9409599304199, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6668.240547180176, + "relativeCreated": 6675.4326820373535, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0002841949462890625 + "time_consumption": 0.00013399124145507812 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:36,105", - "created": 1610361456.105348, + "asctime": "2021-01-14 00:26:18,683", + "created": 1610580378.6831803, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132681,8 +132628,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:36,104", - "created": 1610361456.104953, + "asctime": "2021-01-14 00:26:18,683", + "created": 1610580378.6830714, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132692,15 +132639,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 104.95305061340332, + "msecs": 683.0713748931885, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6668.680429458618, + "relativeCreated": 6675.563097000122, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -132709,8 +132656,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:36,105", - "created": 1610361456.1051552, + "asctime": "2021-01-14 00:26:18,683", + "created": 1610580378.6831284, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132720,37 +132667,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 105.15522956848145, + "msecs": 683.1283569335938, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6668.882608413696, + "relativeCreated": 6675.620079040527, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 105.34811019897461, + "msecs": 683.1803321838379, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6669.075489044189, + "relativeCreated": 6675.6720542907715, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00019288063049316406 + "time_consumption": 5.1975250244140625e-05 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:36,105", - "created": 1610361456.1059043, + "asctime": "2021-01-14 00:26:18,683", + "created": 1610580378.683344, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132767,8 +132714,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:36,105", - "created": 1610361456.1056168, + "asctime": "2021-01-14 00:26:18,683", + "created": 1610580378.6832566, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132778,15 +132725,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 105.61680793762207, + "msecs": 683.2566261291504, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6669.344186782837, + "relativeCreated": 6675.748348236084, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -132795,8 +132742,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:36,105", - "created": 1610361456.1057658, + "asctime": "2021-01-14 00:26:18,683", + "created": 1610580378.683299, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132806,34 +132753,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 105.76581954956055, + "msecs": 683.2990646362305, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6669.493198394775, + "relativeCreated": 6675.790786743164, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 105.90434074401855, + "msecs": 683.3438873291016, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6669.631719589233, + "relativeCreated": 6675.835609436035, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001385211944580078 + "time_consumption": 4.482269287109375e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:36,407", - "created": 1610361456.407648, + "asctime": "2021-01-14 00:26:18,984", + "created": 1610580378.9847038, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -132851,26 +132798,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:36,106", - "created": 1610361456.1062233, + "asctime": "2021-01-14 00:26:18,683", + "created": 1610580378.6834397, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 739, + "lineno": 751, "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 106.22334480285645, + "msecs": 683.4397315979004, "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6669.950723648071, + "relativeCreated": 6675.931453704834, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -132880,48 +132827,48 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:36,407", - "created": 1610361456.407371, + "asctime": "2021-01-14 00:26:18,984", + "created": 1610580378.984407, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 407.37104415893555, + "msecs": 984.4069480895996, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6971.09842300415, + "relativeCreated": 6976.898670196533, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 407.64808654785156, + "msecs": 984.703779220581, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6971.375465393066, + "relativeCreated": 6977.195501327515, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0002770423889160156 + "time_consumption": 0.0002968311309814453 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:36,408", - "created": 1610361456.4082494, + "asctime": "2021-01-14 00:26:18,985", + "created": 1610580378.9853742, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132938,8 +132885,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:36,407", - "created": 1610361456.407944, + "asctime": "2021-01-14 00:26:18,985", + "created": 1610580378.9850073, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132949,15 +132896,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 407.9439640045166, + "msecs": 985.0072860717773, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6971.671342849731, + "relativeCreated": 6977.499008178711, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -132966,8 +132913,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:36,408", - "created": 1610361456.4081025, + "asctime": "2021-01-14 00:26:18,985", + "created": 1610580378.9852004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -132977,37 +132924,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 408.10251235961914, + "msecs": 985.2004051208496, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6971.829891204834, + "relativeCreated": 6977.692127227783, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 408.2493782043457, + "msecs": 985.3742122650146, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6971.976757049561, + "relativeCreated": 6977.865934371948, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001468658447265625 + "time_consumption": 0.00017380714416503906 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:36,408", - "created": 1610361456.4088054, + "asctime": "2021-01-14 00:26:18,985", + "created": 1610580378.9858913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -133024,8 +132971,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:36,408", - "created": 1610361456.4084694, + "asctime": "2021-01-14 00:26:18,985", + "created": 1610580378.9856045, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -133035,15 +132982,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 408.46943855285645, + "msecs": 985.6045246124268, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6972.196817398071, + "relativeCreated": 6978.09624671936, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -133052,8 +132999,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:36,408", - "created": 1610361456.4086058, + "asctime": "2021-01-14 00:26:18,985", + "created": 1610580378.9857454, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -133063,34 +133010,34 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 408.60581398010254, + "msecs": 985.7454299926758, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6972.333192825317, + "relativeCreated": 6978.237152099609, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 408.80537033081055, + "msecs": 985.8913421630859, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6972.532749176025, + "relativeCreated": 6978.3830642700195, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001995563507080078 + "time_consumption": 0.00014591217041015625 }, { "args": [], - "asctime": "2021-01-11 11:37:36,509", - "created": 1610361456.5099707, + "asctime": "2021-01-14 00:26:19,087", + "created": 1610580379.0872004, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -133109,26 +133056,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:36,409", - "created": 1610361456.40915, + "asctime": "2021-01-14 00:26:18,986", + "created": 1610580378.986249, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 409.1498851776123, + "msecs": 986.2489700317383, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6972.877264022827, + "relativeCreated": 6978.740692138672, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -133136,8 +133083,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:36,409", - "created": 1610361456.4099576, + "asctime": "2021-01-14 00:26:18,987", + "created": 1610580378.9871664, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -133147,15 +133094,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 409.9576473236084, + "msecs": 987.1664047241211, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6973.685026168823, + "relativeCreated": 6979.658126831055, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133163,8 +133110,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:36,418", - "created": 1610361456.4184453, + "asctime": "2021-01-14 00:26:18,995", + "created": 1610580378.9956057, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -133174,15 +133121,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 418.445348739624, + "msecs": 995.6057071685791, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6982.172727584839, + "relativeCreated": 6988.097429275513, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133190,8 +133137,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,418", - "created": 1610361456.4187279, + "asctime": "2021-01-14 00:26:18,995", + "created": 1610580378.9958549, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133201,15 +133148,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 418.7278747558594, + "msecs": 995.8548545837402, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6982.455253601074, + "relativeCreated": 6988.346576690674, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133218,8 +133165,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,418", - "created": 1610361456.4188902, + "asctime": "2021-01-14 00:26:18,995", + "created": 1610580378.9959888, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133229,15 +133176,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 418.89023780822754, + "msecs": 995.9888458251953, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6982.617616653442, + "relativeCreated": 6988.480567932129, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133245,8 +133192,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,419", - "created": 1610361456.4190862, + "asctime": "2021-01-14 00:26:18,996", + "created": 1610580378.9961512, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133256,15 +133203,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 419.086217880249, + "msecs": 996.1512088775635, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6982.813596725464, + "relativeCreated": 6988.642930984497, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133273,8 +133220,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,419", - "created": 1610361456.4192524, + "asctime": "2021-01-14 00:26:18,996", + "created": 1610580378.9962647, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133284,15 +133231,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 419.2523956298828, + "msecs": 996.2646961212158, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6982.979774475098, + "relativeCreated": 6988.756418228149, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133300,8 +133247,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,419", - "created": 1610361456.4194548, + "asctime": "2021-01-14 00:26:18,996", + "created": 1610580378.9964278, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133311,15 +133258,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 419.45481300354004, + "msecs": 996.4277744293213, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6983.182191848755, + "relativeCreated": 6988.919496536255, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133328,8 +133275,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,419", - "created": 1610361456.4195883, + "asctime": "2021-01-14 00:26:18,996", + "created": 1610580378.9965374, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133339,15 +133286,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 419.5883274078369, + "msecs": 996.537446975708, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6983.315706253052, + "relativeCreated": 6989.029169082642, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133355,8 +133302,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,419", - "created": 1610361456.4197688, + "asctime": "2021-01-14 00:26:18,996", + "created": 1610580378.9966857, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133366,15 +133313,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 419.7688102722168, + "msecs": 996.6857433319092, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6983.496189117432, + "relativeCreated": 6989.177465438843, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133383,8 +133330,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,419", - "created": 1610361456.4198992, + "asctime": "2021-01-14 00:26:18,996", + "created": 1610580378.996792, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133394,15 +133341,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 419.89922523498535, + "msecs": 996.7920780181885, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6983.6266040802, + "relativeCreated": 6989.283800125122, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133410,8 +133357,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,420", - "created": 1610361456.4200854, + "asctime": "2021-01-14 00:26:18,996", + "created": 1610580378.9969602, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133421,15 +133368,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 420.0854301452637, + "msecs": 996.9601631164551, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6983.8128089904785, + "relativeCreated": 6989.451885223389, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133438,8 +133385,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,420", - "created": 1610361456.4202194, + "asctime": "2021-01-14 00:26:18,997", + "created": 1610580378.9970665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133449,15 +133396,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 420.21942138671875, + "msecs": 997.0664978027344, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6983.946800231934, + "relativeCreated": 6989.558219909668, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133465,8 +133412,8 @@ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:36,420", - "created": 1610361456.420464, + "asctime": "2021-01-14 00:26:18,997", + "created": 1610580378.9972906, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -133476,15 +133423,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 420.46403884887695, + "msecs": 997.2906112670898, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6984.191417694092, + "relativeCreated": 6989.782333374023, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133492,8 +133439,8 @@ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:36,421", - "created": 1610361456.4215465, + "asctime": "2021-01-14 00:26:18,998", + "created": 1610580378.998348, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -133503,15 +133450,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 421.54645919799805, + "msecs": 998.3479976654053, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6985.273838043213, + "relativeCreated": 6990.839719772339, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133519,8 +133466,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,421", - "created": 1610361456.4217653, + "asctime": "2021-01-14 00:26:18,998", + "created": 1610580378.9986103, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133530,15 +133477,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 421.7653274536133, + "msecs": 998.610258102417, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6985.492706298828, + "relativeCreated": 6991.101980209351, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133547,8 +133494,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,421", - "created": 1610361456.4219093, + "asctime": "2021-01-14 00:26:18,998", + "created": 1610580378.9987464, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133558,15 +133505,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 421.9093322753906, + "msecs": 998.746395111084, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6985.6367111206055, + "relativeCreated": 6991.238117218018, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133574,8 +133521,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" ], - "asctime": "2021-01-11 11:37:36,422", - "created": 1610361456.4221263, + "asctime": "2021-01-14 00:26:18,998", + "created": 1610580378.9989462, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133585,15 +133532,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", "module": "stp", - "msecs": 422.12629318237305, + "msecs": 998.9461898803711, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6985.853672027588, + "relativeCreated": 6991.437911987305, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133604,26 +133551,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:36,422", - "created": 1610361456.4224653, + "asctime": "2021-01-14 00:26:18,999", + "created": 1610580378.9992645, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 422.46532440185547, + "msecs": 999.2644786834717, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6986.19270324707, + "relativeCreated": 6991.756200790405, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133631,26 +133578,26 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:36,422", - "created": 1610361456.4226253, + "asctime": "2021-01-14 00:26:18,999", + "created": 1610580378.9994183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 422.6253032684326, + "msecs": 999.4182586669922, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6986.3526821136475, + "relativeCreated": 6991.909980773926, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -133659,37 +133606,37 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'ab2545298eeef3183baf42611c8b3ee3ebad2ab2b7cb0d0190e5abdeea641f86'" + "'b6080a2dd0172fde98ba6270f5d2c08c412d0e4d21af4de23f219a4013bd9e9c'" ], - "asctime": "2021-01-11 11:37:36,422", - "created": 1610361456.422873, + "asctime": "2021-01-14 00:26:18,999", + "created": 1610580378.9996588, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'ab2545298eeef3183baf42611c8b3ee3ebad2ab2b7cb0d0190e5abdeea641f86'\"", + "lineno": 450, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'b6080a2dd0172fde98ba6270f5d2c08c412d0e4d21af4de23f219a4013bd9e9c'\"", "module": "__init__", - "msecs": 422.87302017211914, + "msecs": 999.6588230133057, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6986.600399017334, + "relativeCreated": 6992.150545120239, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 62 32 35" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 36 30 38" ], - "asctime": "2021-01-11 11:37:36,423", - "created": 1610361456.4237103, + "asctime": "2021-01-14 00:26:19,000", + "created": 1610580379.0004435, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -133697,26 +133644,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 62 32 35", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 36 30 38", "module": "__init__", - "msecs": 423.7103462219238, + "msecs": 0.44345855712890625, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6987.437725067139, + "relativeCreated": 6992.9351806640625, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 62 32 35" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 36 30 38" ], - "asctime": "2021-01-11 11:37:36,432", - "created": 1610361456.4321542, + "asctime": "2021-01-14 00:26:19,008", + "created": 1610580379.0088644, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -133724,17 +133671,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 62 32 35", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 36 30 38", "module": "__init__", - "msecs": 432.15417861938477, + "msecs": 8.864402770996094, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6995.8815574646, + "relativeCreated": 7001.35612487793, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133742,8 +133689,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,432", - "created": 1610361456.4324145, + "asctime": "2021-01-14 00:26:19,009", + "created": 1610580379.009111, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133753,15 +133700,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 432.4145317077637, + "msecs": 9.11092758178711, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6996.1419105529785, + "relativeCreated": 7001.602649688721, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133770,8 +133717,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,432", - "created": 1610361456.4325607, + "asctime": "2021-01-14 00:26:19,009", + "created": 1610580379.0092769, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133781,15 +133728,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 432.56068229675293, + "msecs": 9.276866912841797, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6996.288061141968, + "relativeCreated": 7001.768589019775, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133797,8 +133744,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,432", - "created": 1610361456.4327345, + "asctime": "2021-01-14 00:26:19,009", + "created": 1610580379.0094383, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133808,15 +133755,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 432.73448944091797, + "msecs": 9.438276290893555, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6996.461868286133, + "relativeCreated": 7001.929998397827, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133825,8 +133772,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,432", - "created": 1610361456.432896, + "asctime": "2021-01-14 00:26:19,009", + "created": 1610580379.0095558, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133836,15 +133783,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 432.8958988189697, + "msecs": 9.555816650390625, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6996.623277664185, + "relativeCreated": 7002.047538757324, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133852,8 +133799,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,433", - "created": 1610361456.4330778, + "asctime": "2021-01-14 00:26:19,009", + "created": 1610580379.0097194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133863,15 +133810,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 433.0778121948242, + "msecs": 9.719371795654297, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6996.805191040039, + "relativeCreated": 7002.211093902588, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133880,8 +133827,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,433", - "created": 1610361456.4332235, + "asctime": "2021-01-14 00:26:19,009", + "created": 1610580379.0098255, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133891,15 +133838,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 433.2234859466553, + "msecs": 9.825468063354492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6996.95086479187, + "relativeCreated": 7002.317190170288, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133907,8 +133854,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,433", - "created": 1610361456.4334002, + "asctime": "2021-01-14 00:26:19,009", + "created": 1610580379.0099943, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133918,15 +133865,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 433.40015411376953, + "msecs": 9.994268417358398, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6997.127532958984, + "relativeCreated": 7002.485990524292, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133935,8 +133882,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,433", - "created": 1610361456.4335203, + "asctime": "2021-01-14 00:26:19,010", + "created": 1610580379.0100992, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133946,15 +133893,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 433.5203170776367, + "msecs": 10.099172592163086, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6997.247695922852, + "relativeCreated": 7002.590894699097, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133962,8 +133909,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,433", - "created": 1610361456.4336734, + "asctime": "2021-01-14 00:26:19,010", + "created": 1610580379.0102386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -133973,15 +133920,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 433.6733818054199, + "msecs": 10.2386474609375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6997.400760650635, + "relativeCreated": 7002.730369567871, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -133990,8 +133937,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,433", - "created": 1610361456.4337883, + "asctime": "2021-01-14 00:26:19,010", + "created": 1610580379.010351, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134001,24 +133948,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 433.7882995605469, + "msecs": 10.350942611694336, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6997.515678405762, + "relativeCreated": 7002.842664718628, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "comm-server:", - "(64): 34 35 32 39 38 65 65 65 66 33 31 38 33 62 61 66 34 32 36 31 31 63 38 62 33 65 65 33 65 62 61 64 32 61 62 32 62 37 63 62 30 64 30 31 39 30 65 35 61 62 64 65 65 61 36 34 31 66 38 36 22 7d 81 14" + "(64): 30 61 32 64 64 30 31 37 32 66 64 65 39 38 62 61 36 32 37 30 66 35 64 32 63 30 38 63 34 31 32 64 30 65 34 64 32 31 61 66 34 64 65 32 33 66 32 31 39 61 34 30 31 33 62 64 39 65 39 63 22 7d 0d c9" ], - "asctime": "2021-01-11 11:37:36,434", - "created": 1610361456.4340844, + "asctime": "2021-01-14 00:26:19,010", + "created": 1610580379.0106287, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134026,26 +133973,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 34 35 32 39 38 65 65 65 66 33 31 38 33 62 61 66 34 32 36 31 31 63 38 62 33 65 65 33 65 62 61 64 32 61 62 32 62 37 63 62 30 64 30 31 39 30 65 35 61 62 64 65 65 61 36 34 31 66 38 36 22 7d 81 14", + "message": "comm-server: TX -> (64): 30 61 32 64 64 30 31 37 32 66 64 65 39 38 62 61 36 32 37 30 66 35 64 32 63 30 38 63 34 31 32 64 30 65 34 64 32 31 61 66 34 64 65 32 33 66 32 31 39 61 34 30 31 33 62 64 39 65 39 63 22 7d 0d c9", "module": "__init__", - "msecs": 434.084415435791, + "msecs": 10.628700256347656, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 6997.811794281006, + "relativeCreated": 7003.120422363281, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(64): 34 35 32 39 38 65 65 65 66 33 31 38 33 62 61 66 34 32 36 31 31 63 38 62 33 65 65 33 65 62 61 64 32 61 62 32 62 37 63 62 30 64 30 31 39 30 65 35 61 62 64 65 65 61 36 34 31 66 38 36 22 7d 81 14" + "(64): 30 61 32 64 64 30 31 37 32 66 64 65 39 38 62 61 36 32 37 30 66 35 64 32 63 30 38 63 34 31 32 64 30 65 34 64 32 31 61 66 34 64 65 32 33 66 32 31 39 61 34 30 31 33 62 64 39 65 39 63 22 7d 0d c9" ], - "asctime": "2021-01-11 11:37:36,442", - "created": 1610361456.4424677, + "asctime": "2021-01-14 00:26:19,018", + "created": 1610580379.0189872, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134053,26 +134000,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 34 35 32 39 38 65 65 65 66 33 31 38 33 62 61 66 34 32 36 31 31 63 38 62 33 65 65 33 65 62 61 64 32 61 62 32 62 37 63 62 30 64 30 31 39 30 65 35 61 62 64 65 65 61 36 34 31 66 38 36 22 7d 81 14", + "message": "comm-client: RX <- (64): 30 61 32 64 64 30 31 37 32 66 64 65 39 38 62 61 36 32 37 30 66 35 64 32 63 30 38 63 34 31 32 64 30 65 34 64 32 31 61 66 34 64 65 32 33 66 32 31 39 61 34 30 31 33 62 64 39 65 39 63 22 7d 0d c9", "module": "__init__", - "msecs": 442.46768951416016, + "msecs": 18.987178802490234, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7006.195068359375, + "relativeCreated": 7011.478900909424, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "comm-server:", - "(4): 65 3c 3a 3e" + "(4): bf a4 3a 3e" ], - "asctime": "2021-01-11 11:37:36,443", - "created": 1610361456.4431353, + "asctime": "2021-01-14 00:26:19,019", + "created": 1610580379.019551, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134080,26 +134027,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): 65 3c 3a 3e", + "message": "comm-server: TX -> (4): bf a4 3a 3e", "module": "__init__", - "msecs": 443.13526153564453, + "msecs": 19.55103874206543, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7006.862640380859, + "relativeCreated": 7012.042760848999, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(4): 65 3c 3a 3e" + "(4): bf a4 3a 3e" ], - "asctime": "2021-01-11 11:37:36,444", - "created": 1610361456.444001, + "asctime": "2021-01-14 00:26:19,020", + "created": 1610580379.0203183, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134107,17 +134054,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): 65 3c 3a 3e", + "message": "comm-client: RX <- (4): bf a4 3a 3e", "module": "__init__", - "msecs": 444.0009593963623, + "msecs": 20.318269729614258, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7007.728338241577, + "relativeCreated": 7012.809991836548, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -134125,8 +134072,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,444", - "created": 1610361456.4442134, + "asctime": "2021-01-14 00:26:19,020", + "created": 1610580379.0204718, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134136,15 +134083,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 444.2133903503418, + "msecs": 20.471811294555664, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7007.940769195557, + "relativeCreated": 7012.963533401489, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -134153,8 +134100,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,444", - "created": 1610361456.4443603, + "asctime": "2021-01-14 00:26:19,020", + "created": 1610580379.0205896, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134164,24 +134111,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 444.36025619506836, + "msecs": 20.589590072631836, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7008.087635040283, + "relativeCreated": 7013.081312179565, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "STP:", - "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 61 62 32 35 34 35 32 39 38 65 65 65 66 33 31 38 33 62 61 66 34 32 36 31 31 63 38 62 33 65 65 33 65 62 61 64 32 61 62 32 62 37 63 62 30 64 30 31 39 30 65 35 61 62 64 65 65 61 36 34 31 66 38 36 22 7d 81 14 65 3c" + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 36 30 38 30 61 32 64 64 30 31 37 32 66 64 65 39 38 62 61 36 32 37 30 66 35 64 32 63 30 38 63 34 31 32 64 30 65 34 64 32 31 61 66 34 64 65 32 33 66 32 31 39 61 34 30 31 33 62 64 39 65 39 63 22 7d 0d c9 bf a4" ], - "asctime": "2021-01-11 11:37:36,444", - "created": 1610361456.444673, + "asctime": "2021-01-14 00:26:19,020", + "created": 1610580379.020868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134189,17 +134136,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 61 62 32 35 34 35 32 39 38 65 65 65 66 33 31 38 33 62 61 66 34 32 36 31 31 63 38 62 33 65 65 33 65 62 61 64 32 61 62 32 62 37 63 62 30 64 30 31 39 30 65 35 61 62 64 65 65 61 36 34 31 66 38 36 22 7d 81 14 65 3c", + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 36 30 38 30 61 32 64 64 30 31 37 32 66 64 65 39 38 62 61 36 32 37 30 66 35 64 32 63 30 38 63 34 31 32 64 30 65 34 64 32 31 61 66 34 64 65 32 33 66 32 31 39 61 34 30 31 33 62 64 39 65 39 63 22 7d 0d c9 bf a4", "module": "stp", - "msecs": 444.6730613708496, + "msecs": 20.86806297302246, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7008.400440216064, + "relativeCreated": 7013.359785079956, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -134208,28 +134155,28 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "'ab2545298eeef3183baf42611c8b3ee3ebad2ab2b7cb0d0190e5abdeea641f86'" + "'b6080a2dd0172fde98ba6270f5d2c08c412d0e4d21af4de23f219a4013bd9e9c'" ], - "asctime": "2021-01-11 11:37:36,445", - "created": 1610361456.445046, + "asctime": "2021-01-14 00:26:19,021", + "created": 1610580379.02123, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'ab2545298eeef3183baf42611c8b3ee3ebad2ab2b7cb0d0190e5abdeea641f86'\"", + "lineno": 450, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'b6080a2dd0172fde98ba6270f5d2c08c412d0e4d21af4de23f219a4013bd9e9c'\"", "module": "__init__", - "msecs": 445.04594802856445, + "msecs": 21.229982376098633, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7008.773326873779, + "relativeCreated": 7013.721704483032, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -134237,26 +134184,26 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:36,445", - "created": 1610361456.445215, + "asctime": "2021-01-14 00:26:19,021", + "created": 1610580379.0213816, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 445.21498680114746, + "msecs": 21.381616592407227, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7008.942365646362, + "relativeCreated": 7013.873338699341, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -134265,37 +134212,37 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'527e1784aa2f70426452454803aef468e8d67e173152c5750c37ba37c1fdbc4204d01412a10daa5d20678ceed22cf3d47d6d59440758628e52ef238423f2dfaa'" + "'c37648c08b6b21da5dc2a8ca1d38c3f287f0363e6c48ee0ebee0cdf45c5abd8379e0ea8b32fbec7aa0f0dfacd4038beedfd395858c4412586c0fdc6f46ee79bb'" ], - "asctime": "2021-01-11 11:37:36,445", - "created": 1610361456.445458, + "asctime": "2021-01-14 00:26:19,021", + "created": 1610580379.0216074, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'527e1784aa2f70426452454803aef468e8d67e173152c5750c37ba37c1fdbc4204d01412a10daa5d20678ceed22cf3d47d6d59440758628e52ef238423f2dfaa'\"", + "lineno": 450, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'c37648c08b6b21da5dc2a8ca1d38c3f287f0363e6c48ee0ebee0cdf45c5abd8379e0ea8b32fbec7aa0f0dfacd4038beedfd395858c4412586c0fdc6f46ee79bb'\"", "module": "__init__", - "msecs": 445.45793533325195, + "msecs": 21.607398986816406, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7009.185314178467, + "relativeCreated": 7014.09912109375, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 32 37 65" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 33 37 36" ], - "asctime": "2021-01-11 11:37:36,446", - "created": 1610361456.4464633, + "asctime": "2021-01-14 00:26:19,022", + "created": 1610580379.0225344, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134303,26 +134250,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 32 37 65", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 33 37 36", "module": "__init__", - "msecs": 446.46334648132324, + "msecs": 22.53437042236328, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7010.190725326538, + "relativeCreated": 7015.026092529297, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 32 37 65" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 33 37 36" ], - "asctime": "2021-01-11 11:37:36,454", - "created": 1610361456.4548295, + "asctime": "2021-01-14 00:26:19,030", + "created": 1610580379.0309343, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134330,17 +134277,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 32 37 65", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 33 37 36", "module": "__init__", - "msecs": 454.82945442199707, + "msecs": 30.93433380126953, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7018.556833267212, + "relativeCreated": 7023.426055908203, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134348,8 +134295,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.455037, + "asctime": "2021-01-14 00:26:19,031", + "created": 1610580379.0311558, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134359,15 +134306,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 455.03711700439453, + "msecs": 31.155824661254883, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7018.764495849609, + "relativeCreated": 7023.6475467681885, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134376,8 +134323,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.4551578, + "asctime": "2021-01-14 00:26:19,031", + "created": 1610580379.0312798, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134387,15 +134334,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 455.1577568054199, + "msecs": 31.279802322387695, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7018.885135650635, + "relativeCreated": 7023.771524429321, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134403,8 +134350,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.4553056, + "asctime": "2021-01-14 00:26:19,031", + "created": 1610580379.0314324, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134414,15 +134361,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 455.3055763244629, + "msecs": 31.432390213012695, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.032955169678, + "relativeCreated": 7023.924112319946, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134431,8 +134378,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.4554088, + "asctime": "2021-01-14 00:26:19,031", + "created": 1610580379.0315378, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134442,15 +134389,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 455.40881156921387, + "msecs": 31.537771224975586, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.136190414429, + "relativeCreated": 7024.029493331909, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134458,8 +134405,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.4555562, + "asctime": "2021-01-14 00:26:19,031", + "created": 1610580379.0316863, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134469,15 +134416,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 455.55615425109863, + "msecs": 31.68630599975586, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.2835330963135, + "relativeCreated": 7024.178028106689, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134486,8 +134433,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.4556544, + "asctime": "2021-01-14 00:26:19,031", + "created": 1610580379.0317855, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134497,15 +134444,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 455.6543827056885, + "msecs": 31.78548812866211, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.381761550903, + "relativeCreated": 7024.277210235596, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134513,8 +134460,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.4557889, + "asctime": "2021-01-14 00:26:19,031", + "created": 1610580379.0319197, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134524,15 +134471,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 455.78885078430176, + "msecs": 31.91971778869629, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.516229629517, + "relativeCreated": 7024.41143989563, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134541,8 +134488,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,455", - "created": 1610361456.455902, + "asctime": "2021-01-14 00:26:19,032", + "created": 1610580379.032017, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134552,15 +134499,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 455.902099609375, + "msecs": 32.01699256896973, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.62947845459, + "relativeCreated": 7024.508714675903, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134568,8 +134515,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,456", - "created": 1610361456.4561, + "asctime": "2021-01-14 00:26:19,032", + "created": 1610580379.032143, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134579,15 +134526,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 456.0999870300293, + "msecs": 32.14311599731445, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.827365875244, + "relativeCreated": 7024.634838104248, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134596,8 +134543,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,456", - "created": 1610361456.456204, + "asctime": "2021-01-14 00:26:19,032", + "created": 1610580379.0322385, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134607,24 +134554,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 456.2039375305176, + "msecs": 32.23848342895508, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7019.931316375732, + "relativeCreated": 7024.730205535889, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-client:", - "(64): 31 37 38 34 61 61 32 66 37 30 34 32 36 34 35 32 34 35 34 38 30 33 61 65 66 34 36 38 65 38 64 36 37 65 31 37 33 31 35 32 63 35 37 35 30 63 33 37 62 61 33 37 63 31 66 64 62 63 34 32 30 34 64 30" + "(64): 34 38 63 30 38 62 36 62 32 31 64 61 35 64 63 32 61 38 63 61 31 64 33 38 63 33 66 32 38 37 66 30 33 36 33 65 36 63 34 38 65 65 30 65 62 65 65 30 63 64 66 34 35 63 35 61 62 64 38 33 37 39 65 30" ], - "asctime": "2021-01-11 11:37:36,456", - "created": 1610361456.456452, + "asctime": "2021-01-14 00:26:19,032", + "created": 1610580379.0324955, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134632,26 +134579,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 31 37 38 34 61 61 32 66 37 30 34 32 36 34 35 32 34 35 34 38 30 33 61 65 66 34 36 38 65 38 64 36 37 65 31 37 33 31 35 32 63 35 37 35 30 63 33 37 62 61 33 37 63 31 66 64 62 63 34 32 30 34 64 30", + "message": "comm-client: TX -> (64): 34 38 63 30 38 62 36 62 32 31 64 61 35 64 63 32 61 38 63 61 31 64 33 38 63 33 66 32 38 37 66 30 33 36 33 65 36 63 34 38 65 65 30 65 62 65 65 30 63 64 66 34 35 63 35 61 62 64 38 33 37 39 65 30", "module": "__init__", - "msecs": 456.4518928527832, + "msecs": 32.49549865722656, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7020.179271697998, + "relativeCreated": 7024.98722076416, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 31 37 38 34 61 61 32 66 37 30 34 32 36 34 35 32 34 35 34 38 30 33 61 65 66 34 36 38 65 38 64 36 37 65 31 37 33 31 35 32 63 35 37 35 30 63 33 37 62 61 33 37 63 31 66 64 62 63 34 32 30 34 64 30" + "(64): 34 38 63 30 38 62 36 62 32 31 64 61 35 64 63 32 61 38 63 61 31 64 33 38 63 33 66 32 38 37 66 30 33 36 33 65 36 63 34 38 65 65 30 65 62 65 65 30 63 64 66 34 35 63 35 61 62 64 38 33 37 39 65 30" ], - "asctime": "2021-01-11 11:37:36,464", - "created": 1610361456.4648194, + "asctime": "2021-01-14 00:26:19,040", + "created": 1610580379.040857, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134659,26 +134606,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 31 37 38 34 61 61 32 66 37 30 34 32 36 34 35 32 34 35 34 38 30 33 61 65 66 34 36 38 65 38 64 36 37 65 31 37 33 31 35 32 63 35 37 35 30 63 33 37 62 61 33 37 63 31 66 64 62 63 34 32 30 34 64 30", + "message": "comm-server: RX <- (64): 34 38 63 30 38 62 36 62 32 31 64 61 35 64 63 32 61 38 63 61 31 64 33 38 63 33 66 32 38 37 66 30 33 36 33 65 36 63 34 38 65 65 30 65 62 65 65 30 63 64 66 34 35 63 35 61 62 64 38 33 37 39 65 30", "module": "__init__", - "msecs": 464.81943130493164, + "msecs": 40.85707664489746, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7028.5468101501465, + "relativeCreated": 7033.348798751831, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-client:", - "(64): 31 34 31 32 61 31 30 64 61 61 35 64 32 30 36 37 38 63 65 65 64 32 32 63 66 33 64 34 37 64 36 64 35 39 34 34 30 37 35 38 36 32 38 65 35 32 65 66 32 33 38 34 32 33 66 32 64 66 61 61 22 7d 19 ae" + "(64): 65 61 38 62 33 32 66 62 65 63 37 61 61 30 66 30 64 66 61 63 64 34 30 33 38 62 65 65 64 66 64 33 39 35 38 35 38 63 34 34 31 32 35 38 36 63 30 66 64 63 36 66 34 36 65 65 37 39 62 62 22 7d e1 21" ], - "asctime": "2021-01-11 11:37:36,465", - "created": 1610361456.4653628, + "asctime": "2021-01-14 00:26:19,041", + "created": 1610580379.0414295, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134686,26 +134633,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 31 34 31 32 61 31 30 64 61 61 35 64 32 30 36 37 38 63 65 65 64 32 32 63 66 33 64 34 37 64 36 64 35 39 34 34 30 37 35 38 36 32 38 65 35 32 65 66 32 33 38 34 32 33 66 32 64 66 61 61 22 7d 19 ae", + "message": "comm-client: TX -> (64): 65 61 38 62 33 32 66 62 65 63 37 61 61 30 66 30 64 66 61 63 64 34 30 33 38 62 65 65 64 66 64 33 39 35 38 35 38 63 34 34 31 32 35 38 36 63 30 66 64 63 36 66 34 36 65 65 37 39 62 62 22 7d e1 21", "module": "__init__", - "msecs": 465.3627872467041, + "msecs": 41.42951965332031, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7029.090166091919, + "relativeCreated": 7033.921241760254, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(64): 31 34 31 32 61 31 30 64 61 61 35 64 32 30 36 37 38 63 65 65 64 32 32 63 66 33 64 34 37 64 36 64 35 39 34 34 30 37 35 38 36 32 38 65 35 32 65 66 32 33 38 34 32 33 66 32 64 66 61 61 22 7d 19 ae" + "(64): 65 61 38 62 33 32 66 62 65 63 37 61 61 30 66 30 64 66 61 63 64 34 30 33 38 62 65 65 64 66 64 33 39 35 38 35 38 63 34 34 31 32 35 38 36 63 30 66 64 63 36 66 34 36 65 65 37 39 62 62 22 7d e1 21" ], - "asctime": "2021-01-11 11:37:36,473", - "created": 1610361456.4736662, + "asctime": "2021-01-14 00:26:19,049", + "created": 1610580379.0497582, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134713,26 +134660,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 31 34 31 32 61 31 30 64 61 61 35 64 32 30 36 37 38 63 65 65 64 32 32 63 66 33 64 34 37 64 36 64 35 39 34 34 30 37 35 38 36 32 38 65 35 32 65 66 32 33 38 34 32 33 66 32 64 66 61 61 22 7d 19 ae", + "message": "comm-server: RX <- (64): 65 61 38 62 33 32 66 62 65 63 37 61 61 30 66 30 64 66 61 63 64 34 30 33 38 62 65 65 64 66 64 33 39 35 38 35 38 63 34 34 31 32 35 38 36 63 30 66 64 63 36 66 34 36 65 65 37 39 62 62 22 7d e1 21", "module": "__init__", - "msecs": 473.6661911010742, + "msecs": 49.758195877075195, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7037.393569946289, + "relativeCreated": 7042.249917984009, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-client:", - "(4): 02 1b 3a 3e" + "(4): 7c 4a 3a 3e" ], - "asctime": "2021-01-11 11:37:36,474", - "created": 1610361456.4741433, + "asctime": "2021-01-14 00:26:19,050", + "created": 1610580379.0502796, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134740,26 +134687,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 02 1b 3a 3e", + "message": "comm-client: TX -> (4): 7c 4a 3a 3e", "module": "__init__", - "msecs": 474.14326667785645, + "msecs": 50.27961730957031, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7037.870645523071, + "relativeCreated": 7042.771339416504, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "comm-server:", - "(4): 02 1b 3a 3e" + "(4): 7c 4a 3a 3e" ], - "asctime": "2021-01-11 11:37:36,474", - "created": 1610361456.4748757, + "asctime": "2021-01-14 00:26:19,051", + "created": 1610580379.0510526, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134767,17 +134714,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 02 1b 3a 3e", + "message": "comm-server: RX <- (4): 7c 4a 3a 3e", "module": "__init__", - "msecs": 474.87568855285645, + "msecs": 51.05257034301758, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7038.603067398071, + "relativeCreated": 7043.544292449951, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134785,8 +134732,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,475", - "created": 1610361456.4750106, + "asctime": "2021-01-14 00:26:19,051", + "created": 1610580379.0512297, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134796,15 +134743,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 475.01063346862793, + "msecs": 51.22971534729004, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7038.738012313843, + "relativeCreated": 7043.721437454224, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134813,8 +134760,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,475", - "created": 1610361456.4751165, + "asctime": "2021-01-14 00:26:19,051", + "created": 1610580379.0513494, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134824,24 +134771,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 475.116491317749, + "msecs": 51.34940147399902, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7038.843870162964, + "relativeCreated": 7043.841123580933, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 32 37 65 31 37 38 34 61 61 32 66 37 30 34 32 36 34 35 32 34 35 34 38 30 33 61 65 66 34 36 38 65 38 64 36 37 65 31 37 33 31 35 32 63 35 37 35 30 63 33 37 62 61 33 37 63 31 66 64 62 63 34 32 30 34 64 30 31 34 31 32 61 31 30 64 61 61 35 64 32 30 36 37 38 63 65 65 64 32 32 63 66 33 64 34 37 64 36 64 35 39 34 34 30 37 35 38 36 32 38 65 35 32 65 66 32 33 38 34 32 33 66 32 64 66 61 61 22 7d 19 ae 02 1b" + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 33 37 36 34 38 63 30 38 62 36 62 32 31 64 61 35 64 63 32 61 38 63 61 31 64 33 38 63 33 66 32 38 37 66 30 33 36 33 65 36 63 34 38 65 65 30 65 62 65 65 30 63 64 66 34 35 63 35 61 62 64 38 33 37 39 65 30 65 61 38 62 33 32 66 62 65 63 37 61 61 30 66 30 64 66 61 63 64 34 30 33 38 62 65 65 64 66 64 33 39 35 38 35 38 63 34 34 31 32 35 38 36 63 30 66 64 63 36 66 34 36 65 65 37 39 62 62 22 7d e1 21 7c 4a" ], - "asctime": "2021-01-11 11:37:36,475", - "created": 1610361456.4754436, + "asctime": "2021-01-14 00:26:19,051", + "created": 1610580379.0516815, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -134849,17 +134796,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 32 37 65 31 37 38 34 61 61 32 66 37 30 34 32 36 34 35 32 34 35 34 38 30 33 61 65 66 34 36 38 65 38 64 36 37 65 31 37 33 31 35 32 63 35 37 35 30 63 33 37 62 61 33 37 63 31 66 64 62 63 34 32 30 34 64 30 31 34 31 32 61 31 30 64 61 61 35 64 32 30 36 37 38 63 65 65 64 32 32 63 66 33 64 34 37 64 36 64 35 39 34 34 30 37 35 38 36 32 38 65 35 32 65 66 32 33 38 34 32 33 66 32 64 66 61 61 22 7d 19 ae 02 1b", + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 33 37 36 34 38 63 30 38 62 36 62 32 31 64 61 35 64 63 32 61 38 63 61 31 64 33 38 63 33 66 32 38 37 66 30 33 36 33 65 36 63 34 38 65 65 30 65 62 65 65 30 63 64 66 34 35 63 35 61 62 64 38 33 37 39 65 30 65 61 38 62 33 32 66 62 65 63 37 61 61 30 66 30 64 66 61 63 64 34 30 33 38 62 65 65 64 66 64 33 39 35 38 35 38 63 34 34 31 32 35 38 36 63 30 66 64 63 36 66 34 36 65 65 37 39 62 62 22 7d e1 21 7c 4a", "module": "stp", - "msecs": 475.44360160827637, + "msecs": 51.6815185546875, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7039.170980453491, + "relativeCreated": 7044.173240661621, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134868,28 +134815,28 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "'527e1784aa2f70426452454803aef468e8d67e173152c5750c37ba37c1fdbc4204d01412a10daa5d20678ceed22cf3d47d6d59440758628e52ef238423f2dfaa'" + "'c37648c08b6b21da5dc2a8ca1d38c3f287f0363e6c48ee0ebee0cdf45c5abd8379e0ea8b32fbec7aa0f0dfacd4038beedfd395858c4412586c0fdc6f46ee79bb'" ], - "asctime": "2021-01-11 11:37:36,475", - "created": 1610361456.4757335, + "asctime": "2021-01-14 00:26:19,051", + "created": 1610580379.0519774, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'527e1784aa2f70426452454803aef468e8d67e173152c5750c37ba37c1fdbc4204d01412a10daa5d20678ceed22cf3d47d6d59440758628e52ef238423f2dfaa'\"", + "lineno": 450, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'c37648c08b6b21da5dc2a8ca1d38c3f287f0363e6c48ee0ebee0cdf45c5abd8379e0ea8b32fbec7aa0f0dfacd4038beedfd395858c4412586c0fdc6f46ee79bb'\"", "module": "__init__", - "msecs": 475.73351860046387, + "msecs": 51.97739601135254, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7039.460897445679, + "relativeCreated": 7044.469118118286, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134897,26 +134844,26 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:36,475", - "created": 1610361456.4758687, + "asctime": "2021-01-14 00:26:19,052", + "created": 1610580379.0521157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 475.86870193481445, + "msecs": 52.115678787231445, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7039.596080780029, + "relativeCreated": 7044.607400894165, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134927,26 +134874,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:36,476", - "created": 1610361456.4760737, + "asctime": "2021-01-14 00:26:19,052", + "created": 1610580379.052325, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 476.0737419128418, + "msecs": 52.32501029968262, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7039.801120758057, + "relativeCreated": 7044.816732406616, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -134954,8 +134901,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:36,476", - "created": 1610361456.4767966, + "asctime": "2021-01-14 00:26:19,052", + "created": 1610580379.0529058, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134965,15 +134912,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 476.79662704467773, + "msecs": 52.90579795837402, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7040.524005889893, + "relativeCreated": 7045.397520065308, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -134981,8 +134928,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:36,485", - "created": 1610361456.4851587, + "asctime": "2021-01-14 00:26:19,061", + "created": 1610580379.0613012, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -134992,15 +134939,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 485.15868186950684, + "msecs": 61.301231384277344, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7048.886060714722, + "relativeCreated": 7053.792953491211, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135008,8 +134955,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,485", - "created": 1610361456.4853973, + "asctime": "2021-01-14 00:26:19,061", + "created": 1610580379.0616174, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135019,15 +134966,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 485.3973388671875, + "msecs": 61.617374420166016, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7049.124717712402, + "relativeCreated": 7054.1090965271, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135036,8 +134983,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,485", - "created": 1610361456.4855494, + "asctime": "2021-01-14 00:26:19,061", + "created": 1610580379.061856, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135047,15 +134994,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 485.5494499206543, + "msecs": 61.85603141784668, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7049.276828765869, + "relativeCreated": 7054.34775352478, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135063,8 +135010,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,485", - "created": 1610361456.485709, + "asctime": "2021-01-14 00:26:19,062", + "created": 1610580379.0620656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135074,15 +135021,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 485.70895195007324, + "msecs": 62.06560134887695, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7049.436330795288, + "relativeCreated": 7054.557323455811, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135091,8 +135038,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,485", - "created": 1610361456.4858212, + "asctime": "2021-01-14 00:26:19,062", + "created": 1610580379.0623548, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135102,15 +135049,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 485.8212471008301, + "msecs": 62.35480308532715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7049.548625946045, + "relativeCreated": 7054.846525192261, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135118,8 +135065,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,485", - "created": 1610361456.4859827, + "asctime": "2021-01-14 00:26:19,062", + "created": 1610580379.0626426, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135129,15 +135076,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 485.98265647888184, + "msecs": 62.642574310302734, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7049.710035324097, + "relativeCreated": 7055.134296417236, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135146,8 +135093,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,486", - "created": 1610361456.48609, + "asctime": "2021-01-14 00:26:19,062", + "created": 1610580379.0628655, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135157,15 +135104,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 486.08994483947754, + "msecs": 62.865495681762695, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7049.817323684692, + "relativeCreated": 7055.357217788696, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135173,8 +135120,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,486", - "created": 1610361456.4862347, + "asctime": "2021-01-14 00:26:19,063", + "created": 1610580379.0630088, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135184,15 +135131,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 486.2346649169922, + "msecs": 63.008785247802734, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7049.962043762207, + "relativeCreated": 7055.500507354736, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135201,8 +135148,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,486", - "created": 1610361456.4863586, + "asctime": "2021-01-14 00:26:19,063", + "created": 1610580379.0631182, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135212,15 +135159,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 486.358642578125, + "msecs": 63.11821937561035, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7050.08602142334, + "relativeCreated": 7055.609941482544, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135228,8 +135175,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,486", - "created": 1610361456.4864995, + "asctime": "2021-01-14 00:26:19,063", + "created": 1610580379.063251, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135239,15 +135186,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 486.499547958374, + "msecs": 63.25101852416992, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7050.226926803589, + "relativeCreated": 7055.7427406311035, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135256,8 +135203,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,486", - "created": 1610361456.4866037, + "asctime": "2021-01-14 00:26:19,063", + "created": 1610580379.0633664, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135267,15 +135214,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 486.6037368774414, + "msecs": 63.36641311645508, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7050.331115722656, + "relativeCreated": 7055.858135223389, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135283,8 +135230,8 @@ "comm-server:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:36,486", - "created": 1610361456.4868002, + "asctime": "2021-01-14 00:26:19,063", + "created": 1610580379.063637, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -135294,15 +135241,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 486.8001937866211, + "msecs": 63.63701820373535, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7050.527572631836, + "relativeCreated": 7056.128740310669, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135310,8 +135257,8 @@ "comm-client:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:36,487", - "created": 1610361456.4878788, + "asctime": "2021-01-14 00:26:19,064", + "created": 1610580379.0646827, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -135321,15 +135268,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 487.87879943847656, + "msecs": 64.6827220916748, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7051.606178283691, + "relativeCreated": 7057.174444198608, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135337,8 +135284,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,488", - "created": 1610361456.4881551, + "asctime": "2021-01-14 00:26:19,064", + "created": 1610580379.0648758, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135348,15 +135295,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 488.1551265716553, + "msecs": 64.87584114074707, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7051.88250541687, + "relativeCreated": 7057.367563247681, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135365,8 +135312,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,488", - "created": 1610361456.4882882, + "asctime": "2021-01-14 00:26:19,064", + "created": 1610580379.0649776, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135376,15 +135323,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 488.28816413879395, + "msecs": 64.97764587402344, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7052.015542984009, + "relativeCreated": 7057.469367980957, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135392,8 +135339,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" ], - "asctime": "2021-01-11 11:37:36,488", - "created": 1610361456.4884822, + "asctime": "2021-01-14 00:26:19,065", + "created": 1610580379.0652037, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135403,15 +135350,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", "module": "stp", - "msecs": 488.4822368621826, + "msecs": 65.20366668701172, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7052.2096157073975, + "relativeCreated": 7057.695388793945, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135422,26 +135369,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:36,488", - "created": 1610361456.4888215, + "asctime": "2021-01-14 00:26:19,065", + "created": 1610580379.0655468, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 488.82150650024414, + "msecs": 65.54675102233887, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7052.548885345459, + "relativeCreated": 7058.0384731292725, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -135449,71 +135396,71 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:36,488", - "created": 1610361456.4889748, + "asctime": "2021-01-14 00:26:19,065", + "created": 1610580379.0656967, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 488.97480964660645, + "msecs": 65.69671630859375, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7052.702188491821, + "relativeCreated": 7058.188438415527, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:36,489", - "created": 1610361456.489097, + "asctime": "2021-01-14 00:26:19,065", + "created": 1610580379.0658126, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 489.09711837768555, + "msecs": 65.81258773803711, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7052.8244972229, + "relativeCreated": 7058.304309844971, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" } ], - "msecs": 509.97066497802734, + "msecs": 87.20040321350098, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7073.698043823242, + "relativeCreated": 7079.692125320435, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.020873546600341797 + "time_consumption": 0.021387815475463867 }, { "args": [], - "asctime": "2021-01-11 11:37:36,711", - "created": 1610361456.7115235, + "asctime": "2021-01-14 00:26:19,289", + "created": 1610580379.2891436, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -135532,26 +135479,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:36,510", - "created": 1610361456.5105338, + "asctime": "2021-01-14 00:26:19,087", + "created": 1610580379.087886, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 510.53380966186523, + "msecs": 87.88609504699707, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7074.26118850708, + "relativeCreated": 7080.377817153931, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -135559,8 +135506,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:36,511", - "created": 1610361456.5112753, + "asctime": "2021-01-14 00:26:19,088", + "created": 1610580379.088851, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -135570,15 +135517,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 511.2752914428711, + "msecs": 88.8509750366211, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7075.002670288086, + "relativeCreated": 7081.342697143555, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135586,8 +135533,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:36,519", - "created": 1610361456.519728, + "asctime": "2021-01-14 00:26:19,097", + "created": 1610580379.0973685, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -135597,15 +135544,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 519.7279453277588, + "msecs": 97.36847877502441, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7083.455324172974, + "relativeCreated": 7089.860200881958, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135613,8 +135560,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,520", - "created": 1610361456.5200145, + "asctime": "2021-01-14 00:26:19,097", + "created": 1610580379.0976617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135624,15 +135571,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 520.0145244598389, + "msecs": 97.66173362731934, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7083.741903305054, + "relativeCreated": 7090.153455734253, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135641,8 +135588,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,520", - "created": 1610361456.5201757, + "asctime": "2021-01-14 00:26:19,097", + "created": 1610580379.0978286, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135652,15 +135599,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 520.1756954193115, + "msecs": 97.82862663269043, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7083.903074264526, + "relativeCreated": 7090.320348739624, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135668,8 +135615,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,520", - "created": 1610361456.5204012, + "asctime": "2021-01-14 00:26:19,098", + "created": 1610580379.0980515, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135679,15 +135626,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 520.4012393951416, + "msecs": 98.05154800415039, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7084.128618240356, + "relativeCreated": 7090.543270111084, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135696,8 +135643,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,520", - "created": 1610361456.5205424, + "asctime": "2021-01-14 00:26:19,098", + "created": 1610580379.098197, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135707,15 +135654,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 520.5423831939697, + "msecs": 98.19698333740234, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7084.269762039185, + "relativeCreated": 7090.688705444336, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135723,8 +135670,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,520", - "created": 1610361456.5207915, + "asctime": "2021-01-14 00:26:19,098", + "created": 1610580379.0984037, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135734,15 +135681,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 520.7915306091309, + "msecs": 98.4036922454834, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7084.518909454346, + "relativeCreated": 7090.895414352417, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135751,8 +135698,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,520", - "created": 1610361456.5209827, + "asctime": "2021-01-14 00:26:19,098", + "created": 1610580379.0985382, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135762,15 +135709,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 520.9827423095703, + "msecs": 98.53816032409668, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7084.710121154785, + "relativeCreated": 7091.02988243103, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135778,8 +135725,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,521", - "created": 1610361456.5211813, + "asctime": "2021-01-14 00:26:19,098", + "created": 1610580379.0987272, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135789,15 +135736,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 521.1813449859619, + "msecs": 98.72722625732422, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7084.908723831177, + "relativeCreated": 7091.218948364258, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135806,8 +135753,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,521", - "created": 1610361456.5213168, + "asctime": "2021-01-14 00:26:19,098", + "created": 1610580379.0988607, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135817,15 +135764,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 521.3167667388916, + "msecs": 98.8607406616211, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7085.044145584106, + "relativeCreated": 7091.352462768555, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135833,8 +135780,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,521", - "created": 1610361456.521515, + "asctime": "2021-01-14 00:26:19,099", + "created": 1610580379.0990329, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135844,15 +135791,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 521.514892578125, + "msecs": 99.03287887573242, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7085.24227142334, + "relativeCreated": 7091.524600982666, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135861,8 +135808,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,521", - "created": 1610361456.5216513, + "asctime": "2021-01-14 00:26:19,099", + "created": 1610580379.099164, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135872,15 +135819,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 521.6512680053711, + "msecs": 99.16400909423828, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7085.378646850586, + "relativeCreated": 7091.655731201172, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135888,8 +135835,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:36,521", - "created": 1610361456.5219188, + "asctime": "2021-01-14 00:26:19,099", + "created": 1610580379.0994422, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -135899,15 +135846,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 521.918773651123, + "msecs": 99.4422435760498, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7085.646152496338, + "relativeCreated": 7091.933965682983, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135915,8 +135862,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:36,526", - "created": 1610361456.5262876, + "asctime": "2021-01-14 00:26:19,103", + "created": 1610580379.1039019, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -135926,15 +135873,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 526.2875556945801, + "msecs": 103.90186309814453, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7090.014934539795, + "relativeCreated": 7096.393585205078, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135942,8 +135889,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,526", - "created": 1610361456.5266626, + "asctime": "2021-01-14 00:26:19,104", + "created": 1610580379.1043658, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135953,15 +135900,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 526.6625881195068, + "msecs": 104.36582565307617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7090.389966964722, + "relativeCreated": 7096.85754776001, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135970,8 +135917,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,526", - "created": 1610361456.5268126, + "asctime": "2021-01-14 00:26:19,104", + "created": 1610580379.104542, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -135981,15 +135928,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 526.8125534057617, + "msecs": 104.54201698303223, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7090.539932250977, + "relativeCreated": 7097.033739089966, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -135997,8 +135944,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" ], - "asctime": "2021-01-11 11:37:36,527", - "created": 1610361456.5270922, + "asctime": "2021-01-14 00:26:19,104", + "created": 1610580379.1048596, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136008,15 +135955,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", "module": "stp", - "msecs": 527.0922183990479, + "msecs": 104.85959053039551, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7090.819597244263, + "relativeCreated": 7097.351312637329, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { @@ -136027,74 +135974,74 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:36,527", - "created": 1610361456.527426, + "asctime": "2021-01-14 00:26:19,105", + "created": 1610580379.1053207, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 527.42600440979, + "msecs": 105.32069206237793, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7091.153383255005, + "relativeCreated": 7097.8124141693115, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:36,527", - "created": 1610361456.5276232, + "asctime": "2021-01-14 00:26:19,105", + "created": 1610580379.1055453, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 527.623176574707, + "msecs": 105.5452823638916, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7091.350555419922, + "relativeCreated": 7098.037004470825, "stack_info": null, - "thread": 139976985528064, + "thread": 140582030653184, "threadName": "Thread-9" } ], - "msecs": 711.5235328674316, + "msecs": 289.14356231689453, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7275.2509117126465, + "relativeCreated": 7281.635284423828, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.1839003562927246 + "time_consumption": 0.18359827995300293 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:36,711", - "created": 1610361456.7119796, + "asctime": "2021-01-14 00:26:19,289", + "created": 1610580379.289853, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136111,8 +136058,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:36,711", - "created": 1610361456.7118013, + "asctime": "2021-01-14 00:26:19,289", + "created": 1610580379.2895575, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136122,15 +136069,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 711.801290512085, + "msecs": 289.55745697021484, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7275.5286693573, + "relativeCreated": 7282.049179077148, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -136139,8 +136086,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:36,711", - "created": 1610361456.7118962, + "asctime": "2021-01-14 00:26:19,289", + "created": 1610580379.289714, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136150,37 +136097,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 711.8961811065674, + "msecs": 289.71409797668457, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7275.623559951782, + "relativeCreated": 7282.205820083618, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 711.9796276092529, + "msecs": 289.8530960083008, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7275.707006454468, + "relativeCreated": 7282.344818115234, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 8.344650268554688e-05 + "time_consumption": 0.00013899803161621094 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:36,712", - "created": 1610361456.7122838, + "asctime": "2021-01-14 00:26:19,290", + "created": 1610580379.2903402, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136197,8 +136144,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:36,712", - "created": 1610361456.7121098, + "asctime": "2021-01-14 00:26:19,290", + "created": 1610580379.2900722, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136208,15 +136155,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 712.1098041534424, + "msecs": 290.0722026824951, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7275.837182998657, + "relativeCreated": 7282.563924789429, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -136225,8 +136172,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:36,712", - "created": 1610361456.7121909, + "asctime": "2021-01-14 00:26:19,290", + "created": 1610580379.290207, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136236,34 +136183,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 712.1908664703369, + "msecs": 290.2069091796875, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7275.918245315552, + "relativeCreated": 7282.698631286621, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 712.2838497161865, + "msecs": 290.3401851654053, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7276.011228561401, + "relativeCreated": 7282.831907272339, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 9.298324584960938e-05 + "time_consumption": 0.00013327598571777344 }, { "args": [], - "asctime": "2021-01-11 11:37:36,913", - "created": 1610361456.9134457, + "asctime": "2021-01-14 00:26:19,491", + "created": 1610580379.4919147, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -136282,26 +136229,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:36,712", - "created": 1610361456.7124732, + "asctime": "2021-01-14 00:26:19,290", + "created": 1610580379.2906604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 712.4731540679932, + "msecs": 290.6603813171387, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7276.200532913208, + "relativeCreated": 7283.152103424072, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -136309,8 +136256,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:36,712", - "created": 1610361456.712976, + "asctime": "2021-01-14 00:26:19,291", + "created": 1610580379.2916179, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -136320,15 +136267,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 712.9759788513184, + "msecs": 291.61787033081055, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7276.703357696533, + "relativeCreated": 7284.109592437744, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136336,8 +136283,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:36,721", - "created": 1610361456.7212875, + "asctime": "2021-01-14 00:26:19,300", + "created": 1610580379.3001049, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -136347,15 +136294,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 721.2874889373779, + "msecs": 300.10485649108887, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7285.014867782593, + "relativeCreated": 7292.5965785980225, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136363,8 +136310,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,721", - "created": 1610361456.7215483, + "asctime": "2021-01-14 00:26:19,300", + "created": 1610580379.3004029, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136374,15 +136321,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 721.548318862915, + "msecs": 300.4028797149658, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7285.27569770813, + "relativeCreated": 7292.894601821899, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136391,8 +136338,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:36,721", - "created": 1610361456.7216916, + "asctime": "2021-01-14 00:26:19,300", + "created": 1610580379.300552, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136402,15 +136349,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 721.6916084289551, + "msecs": 300.5518913269043, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7285.41898727417, + "relativeCreated": 7293.043613433838, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136418,8 +136365,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,721", - "created": 1610361456.721902, + "asctime": "2021-01-14 00:26:19,300", + "created": 1610580379.3007553, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136429,15 +136376,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 721.9018936157227, + "msecs": 300.75526237487793, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7285.6292724609375, + "relativeCreated": 7293.2469844818115, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136446,8 +136393,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,722", - "created": 1610361456.7220285, + "asctime": "2021-01-14 00:26:19,300", + "created": 1610580379.3008847, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136457,15 +136404,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 722.0284938812256, + "msecs": 300.8847236633301, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7285.75587272644, + "relativeCreated": 7293.376445770264, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136473,8 +136420,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,722", - "created": 1610361456.7222118, + "asctime": "2021-01-14 00:26:19,301", + "created": 1610580379.3010685, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136484,15 +136431,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 722.2118377685547, + "msecs": 301.0685443878174, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7285.9392166137695, + "relativeCreated": 7293.560266494751, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136501,8 +136448,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,722", - "created": 1610361456.7223423, + "asctime": "2021-01-14 00:26:19,301", + "created": 1610580379.3012407, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136512,15 +136459,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 722.3422527313232, + "msecs": 301.2406826019287, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7286.069631576538, + "relativeCreated": 7293.732404708862, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136528,8 +136475,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,722", - "created": 1610361456.7225232, + "asctime": "2021-01-14 00:26:19,301", + "created": 1610580379.3014412, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136539,15 +136486,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 722.5232124328613, + "msecs": 301.4411926269531, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7286.250591278076, + "relativeCreated": 7293.932914733887, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136556,8 +136503,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,722", - "created": 1610361456.7226722, + "asctime": "2021-01-14 00:26:19,301", + "created": 1610580379.3015769, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136567,15 +136514,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 722.6722240447998, + "msecs": 301.5768527984619, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7286.399602890015, + "relativeCreated": 7294.0685749053955, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136583,8 +136530,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,722", - "created": 1610361456.722826, + "asctime": "2021-01-14 00:26:19,301", + "created": 1610580379.3017592, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136594,15 +136541,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 722.8260040283203, + "msecs": 301.7592430114746, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7286.553382873535, + "relativeCreated": 7294.250965118408, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136611,8 +136558,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:36,722", - "created": 1610361456.7229419, + "asctime": "2021-01-14 00:26:19,301", + "created": 1610580379.3018904, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136622,15 +136569,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 722.9418754577637, + "msecs": 301.89037322998047, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7286.6692543029785, + "relativeCreated": 7294.382095336914, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136638,8 +136585,8 @@ "comm-server:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:36,723", - "created": 1610361456.7231815, + "asctime": "2021-01-14 00:26:19,302", + "created": 1610580379.3021626, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -136649,15 +136596,15 @@ "lineno": 284, "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 723.1814861297607, + "msecs": 302.16264724731445, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7286.908864974976, + "relativeCreated": 7294.654369354248, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136665,8 +136612,8 @@ "comm-client:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:36,727", - "created": 1610361456.7275934, + "asctime": "2021-01-14 00:26:19,306", + "created": 1610580379.3065126, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -136676,15 +136623,15 @@ "lineno": 414, "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 727.5934219360352, + "msecs": 306.51259422302246, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7291.32080078125, + "relativeCreated": 7299.004316329956, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136692,8 +136639,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:36,727", - "created": 1610361456.7279701, + "asctime": "2021-01-14 00:26:19,306", + "created": 1610580379.306898, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136703,15 +136650,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 727.9701232910156, + "msecs": 306.8981170654297, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7291.6975021362305, + "relativeCreated": 7299.389839172363, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136720,8 +136667,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:36,728", - "created": 1610361456.7281334, + "asctime": "2021-01-14 00:26:19,307", + "created": 1610580379.3070488, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136731,15 +136678,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 728.1334400177002, + "msecs": 307.0487976074219, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7291.860818862915, + "relativeCreated": 7299.5405197143555, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136747,8 +136694,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" ], - "asctime": "2021-01-11 11:37:36,728", - "created": 1610361456.7284021, + "asctime": "2021-01-14 00:26:19,307", + "created": 1610580379.3073335, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -136758,15 +136705,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", "module": "stp", - "msecs": 728.4021377563477, + "msecs": 307.33346939086914, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7292.1295166015625, + "relativeCreated": 7299.825191497803, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { @@ -136777,74 +136724,74 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:36,728", - "created": 1610361456.7287362, + "asctime": "2021-01-14 00:26:19,307", + "created": 1610580379.3076751, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 728.736162185669, + "msecs": 307.6751232147217, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7292.463541030884, + "relativeCreated": 7300.166845321655, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:36,728", - "created": 1610361456.7289777, + "asctime": "2021-01-14 00:26:19,307", + "created": 1610580379.307874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 728.9776802062988, + "msecs": 307.8739643096924, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7292.705059051514, + "relativeCreated": 7300.365686416626, "stack_info": null, - "thread": 139976977135360, + "thread": 140582022260480, "threadName": "Thread-10" } ], - "msecs": 913.4457111358643, + "msecs": 491.9147491455078, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7477.173089981079, + "relativeCreated": 7484.406471252441, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.18446803092956543 + "time_consumption": 0.18404078483581543 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:36,914", - "created": 1610361456.9142253, + "asctime": "2021-01-14 00:26:19,492", + "created": 1610580379.4927049, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136861,8 +136808,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:36,913", - "created": 1610361456.9138942, + "asctime": "2021-01-14 00:26:19,492", + "created": 1610580379.4923706, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136872,15 +136819,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 913.8941764831543, + "msecs": 492.37060546875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7477.621555328369, + "relativeCreated": 7484.862327575684, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -136889,8 +136836,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:36,914", - "created": 1610361456.9140718, + "asctime": "2021-01-14 00:26:19,492", + "created": 1610580379.492547, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136900,37 +136847,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 914.071798324585, + "msecs": 492.54703521728516, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7477.7991771698, + "relativeCreated": 7485.038757324219, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 914.2253398895264, + "msecs": 492.7048683166504, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7477.952718734741, + "relativeCreated": 7485.196590423584, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015354156494140625 + "time_consumption": 0.00015783309936523438 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:36,914", - "created": 1610361456.914809, + "asctime": "2021-01-14 00:26:19,493", + "created": 1610580379.4933312, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136947,8 +136894,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:36,914", - "created": 1610361456.914491, + "asctime": "2021-01-14 00:26:19,492", + "created": 1610580379.4929748, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136958,15 +136905,15 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 914.4909381866455, + "msecs": 492.97475814819336, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7478.21831703186, + "relativeCreated": 7485.466480255127, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -136975,8 +136922,8 @@ "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:36,914", - "created": 1610361456.9146523, + "asctime": "2021-01-14 00:26:19,493", + "created": 1610580379.4931672, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -136986,41 +136933,41 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 914.6523475646973, + "msecs": 493.1671619415283, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7478.379726409912, + "relativeCreated": 7485.658884048462, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 914.808988571167, + "msecs": 493.3311939239502, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 7478.536367416382, + "relativeCreated": 7485.822916030884, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015664100646972656 + "time_consumption": 0.000164031982421875 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 1.9755775928497314, - "time_finished": "2021-01-11 11:37:36,914", - "time_start": "2021-01-11 11:37:34,939" + "time_consumption": 1.9724667072296143, + "time_finished": "2021-01-14 00:26:19,493", + "time_start": "2021-01-14 00:26:17,520" }, "_Tb-78E4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:43,315", - "created": 1610361463.315275, + "asctime": "2021-01-14 00:26:25,902", + "created": 1610580385.9029105, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137031,19 +136978,19 @@ "message": "_Tb-78E4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 315.2749538421631, + "msecs": 902.9104709625244, "msg": "_Tb-78E4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13879.002332687378, + "relativeCreated": 13895.402193069458, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.322334, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.9120247, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -137058,8 +137005,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:43,316", - "created": 1610361463.3162572, + "asctime": "2021-01-14 00:26:25,904", + "created": 1610580385.904134, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137069,23 +137016,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 316.2572383880615, + "msecs": 904.1340351104736, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13879.984617233276, + "relativeCreated": 13896.625757217407, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,316", - "created": 1610361463.3169086, + "asctime": "2021-01-14 00:26:25,905", + "created": 1610580385.9050024, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137095,23 +137042,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 316.908597946167, + "msecs": 905.0023555755615, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13880.635976791382, + "relativeCreated": 13897.494077682495, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,317", - "created": 1610361463.3170612, + "asctime": "2021-01-14 00:26:25,905", + "created": 1610580385.9052484, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137121,41 +137068,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 317.061185836792, + "msecs": 905.2484035491943, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13880.788564682007, + "relativeCreated": 13897.740125656128, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,317", - "created": 1610361463.3172977, + "asctime": "2021-01-14 00:26:25,905", + "created": 1610580385.9055839, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 317.29769706726074, + "msecs": 905.5838584899902, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.025075912476, + "relativeCreated": 13898.075580596924, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137164,26 +137111,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:43,317", - "created": 1610361463.317428, + "asctime": "2021-01-14 00:26:25,905", + "created": 1610580385.9057653, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 317.4281120300293, + "msecs": 905.7652950286865, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.155490875244, + "relativeCreated": 13898.25701713562, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137191,26 +137138,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,317", - "created": 1610361463.3175862, + "asctime": "2021-01-14 00:26:25,905", + "created": 1610580385.9059856, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 317.58618354797363, + "msecs": 905.9855937957764, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.313562393188, + "relativeCreated": 13898.47731590271, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137218,26 +137165,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,317", - "created": 1610361463.317699, + "asctime": "2021-01-14 00:26:25,906", + "created": 1610580385.906143, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 317.6989555358887, + "msecs": 906.1429500579834, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.426334381104, + "relativeCreated": 13898.634672164917, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137245,26 +137192,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:43,317", - "created": 1610361463.317804, + "asctime": "2021-01-14 00:26:25,906", + "created": 1610580385.9062903, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 317.80409812927246, + "msecs": 906.2902927398682, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.531476974487, + "relativeCreated": 13898.782014846802, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137272,26 +137219,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:43,317", - "created": 1610361463.3179057, + "asctime": "2021-01-14 00:26:25,906", + "created": 1610580385.906478, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 317.9056644439697, + "msecs": 906.4779281616211, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.633043289185, + "relativeCreated": 13898.969650268555, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137301,8 +137248,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.3180199, + "asctime": "2021-01-14 00:26:25,906", + "created": 1610580385.9066381, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137312,15 +137259,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 318.0198669433594, + "msecs": 906.6381454467773, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.747245788574, + "relativeCreated": 13899.129867553711, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137330,8 +137277,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.318145, + "asctime": "2021-01-14 00:26:25,906", + "created": 1610580385.906811, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137341,15 +137288,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 318.1450366973877, + "msecs": 906.810998916626, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.872415542603, + "relativeCreated": 13899.30272102356, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137359,8 +137306,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.318259, + "asctime": "2021-01-14 00:26:25,906", + "created": 1610580385.9069703, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137370,15 +137317,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 318.25900077819824, + "msecs": 906.9702625274658, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13881.986379623413, + "relativeCreated": 13899.4619846344, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137388,8 +137335,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.3183675, + "asctime": "2021-01-14 00:26:25,907", + "created": 1610580385.9071243, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137399,41 +137346,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 318.36748123168945, + "msecs": 907.1242809295654, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.094860076904, + "relativeCreated": 13899.616003036499, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.3184655, + "asctime": "2021-01-14 00:26:25,907", + "created": 1610580385.9072614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 318.4654712677002, + "msecs": 907.2613716125488, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.192850112915, + "relativeCreated": 13899.753093719482, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137442,26 +137389,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.3185751, + "asctime": "2021-01-14 00:26:25,907", + "created": 1610580385.9074132, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 318.5751438140869, + "msecs": 907.4132442474365, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.302522659302, + "relativeCreated": 13899.90496635437, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137469,26 +137416,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.3187177, + "asctime": "2021-01-14 00:26:25,907", + "created": 1610580385.9075797, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 318.71771812438965, + "msecs": 907.5796604156494, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.445096969604, + "relativeCreated": 13900.071382522583, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137496,26 +137443,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.318848, + "asctime": "2021-01-14 00:26:25,907", + "created": 1610580385.9077253, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 318.8478946685791, + "msecs": 907.7253341674805, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.575273513794, + "relativeCreated": 13900.217056274414, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137525,8 +137472,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:43,318", - "created": 1610361463.3189783, + "asctime": "2021-01-14 00:26:25,907", + "created": 1610580385.907877, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137536,15 +137483,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 318.97830963134766, + "msecs": 907.8769683837891, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.705688476562, + "relativeCreated": 13900.368690490723, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137554,8 +137501,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3190942, + "asctime": "2021-01-14 00:26:25,908", + "created": 1610580385.9080336, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137565,15 +137512,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 319.094181060791, + "msecs": 908.0336093902588, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.821559906006, + "relativeCreated": 13900.525331497192, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137582,26 +137529,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3192012, + "asctime": "2021-01-14 00:26:25,908", + "created": 1610580385.9081964, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 319.2012310028076, + "msecs": 908.1964492797852, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13882.928609848022, + "relativeCreated": 13900.688171386719, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137610,26 +137557,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3193095, + "asctime": "2021-01-14 00:26:25,908", + "created": 1610580385.9083552, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 319.3094730377197, + "msecs": 908.3552360534668, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.036851882935, + "relativeCreated": 13900.8469581604, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137638,78 +137585,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3194165, + "asctime": "2021-01-14 00:26:25,908", + "created": 1610580385.9084947, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 319.4165229797363, + "msecs": 908.4947109222412, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.143901824951, + "relativeCreated": 13900.986433029175, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3195262, + "asctime": "2021-01-14 00:26:25,908", + "created": 1610580385.9086437, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 319.52619552612305, + "msecs": 908.6437225341797, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.253574371338, + "relativeCreated": 13901.135444641113, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3197255, + "asctime": "2021-01-14 00:26:25,908", + "created": 1610580385.9089289, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 319.72551345825195, + "msecs": 908.9288711547852, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.452892303467, + "relativeCreated": 13901.420593261719, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137718,26 +137665,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3198438, + "asctime": "2021-01-14 00:26:25,909", + "created": 1610580385.9091005, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 319.8437690734863, + "msecs": 909.1005325317383, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.571147918701, + "relativeCreated": 13901.592254638672, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137745,26 +137692,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,319", - "created": 1610361463.3199952, + "asctime": "2021-01-14 00:26:25,909", + "created": 1610580385.909331, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 319.9951648712158, + "msecs": 909.3310832977295, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.72254371643, + "relativeCreated": 13901.822805404663, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137772,26 +137719,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3201036, + "asctime": "2021-01-14 00:26:25,909", + "created": 1610580385.9094896, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 320.10364532470703, + "msecs": 909.489631652832, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.831024169922, + "relativeCreated": 13901.981353759766, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137799,26 +137746,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3202066, + "asctime": "2021-01-14 00:26:25,909", + "created": 1610580385.9096339, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 320.2066421508789, + "msecs": 909.6338748931885, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13883.934020996094, + "relativeCreated": 13902.125597000122, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137826,26 +137773,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3203073, + "asctime": "2021-01-14 00:26:25,909", + "created": 1610580385.9097743, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 320.30725479125977, + "msecs": 909.7743034362793, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.034633636475, + "relativeCreated": 13902.266025543213, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137855,8 +137802,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3204136, + "asctime": "2021-01-14 00:26:25,909", + "created": 1610580385.9099252, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137866,15 +137813,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 320.41358947753906, + "msecs": 909.9252223968506, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.140968322754, + "relativeCreated": 13902.416944503784, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137884,8 +137831,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3205304, + "asctime": "2021-01-14 00:26:25,910", + "created": 1610580385.9100883, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137895,15 +137842,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 320.5304145812988, + "msecs": 910.088300704956, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.257793426514, + "relativeCreated": 13902.58002281189, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137913,8 +137860,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3206413, + "asctime": "2021-01-14 00:26:25,910", + "created": 1610580385.910242, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137924,15 +137871,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 320.64127922058105, + "msecs": 910.2420806884766, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.368658065796, + "relativeCreated": 13902.73380279541, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137942,8 +137889,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3207731, + "asctime": "2021-01-14 00:26:25,910", + "created": 1610580385.9104104, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -137953,41 +137900,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 320.7731246948242, + "msecs": 910.4104042053223, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.500503540039, + "relativeCreated": 13902.902126312256, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,320", - "created": 1610361463.3208916, + "asctime": "2021-01-14 00:26:25,910", + "created": 1610580385.910548, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 320.8916187286377, + "msecs": 910.5479717254639, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.618997573853, + "relativeCreated": 13903.039693832397, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -137996,26 +137943,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:43,321", - "created": 1610361463.3210025, + "asctime": "2021-01-14 00:26:25,910", + "created": 1610580385.9106994, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 321.0024833679199, + "msecs": 910.6993675231934, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.729862213135, + "relativeCreated": 13903.191089630127, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138023,26 +137970,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:43,321", - "created": 1610361463.3211215, + "asctime": "2021-01-14 00:26:25,910", + "created": 1610580385.910873, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 321.1214542388916, + "msecs": 910.8729362487793, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.848833084106, + "relativeCreated": 13903.364658355713, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138050,26 +137997,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:43,321", - "created": 1610361463.3212519, + "asctime": "2021-01-14 00:26:25,911", + "created": 1610580385.9110265, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 321.25186920166016, + "msecs": 911.0264778137207, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13884.979248046875, + "relativeCreated": 13903.518199920654, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138079,8 +138026,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:43,321", - "created": 1610361463.3213599, + "asctime": "2021-01-14 00:26:25,911", + "created": 1610580385.9111753, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138090,15 +138037,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 321.35987281799316, + "msecs": 911.1752510070801, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13885.087251663208, + "relativeCreated": 13903.666973114014, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138108,8 +138055,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:43,321", - "created": 1610361463.3215141, + "asctime": "2021-01-14 00:26:25,911", + "created": 1610580385.9113357, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138119,15 +138066,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 321.5141296386719, + "msecs": 911.3357067108154, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13885.241508483887, + "relativeCreated": 13903.827428817749, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138136,26 +138083,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:43,321", - "created": 1610361463.3216364, + "asctime": "2021-01-14 00:26:25,911", + "created": 1610580385.9117923, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 321.636438369751, + "msecs": 911.7922782897949, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13885.363817214966, + "relativeCreated": 13904.284000396729, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138164,26 +138111,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.3220248, + "asctime": "2021-01-14 00:26:25,911", + "created": 1610580385.9118748, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 322.0248222351074, + "msecs": 911.8747711181641, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13885.752201080322, + "relativeCreated": 13904.366493225098, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138192,71 +138139,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.3221302, + "asctime": "2021-01-14 00:26:25,911", + "created": 1610580385.9119344, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 322.1302032470703, + "msecs": 911.9343757629395, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13885.857582092285, + "relativeCreated": 13904.426097869873, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.3222344, + "asctime": "2021-01-14 00:26:25,911", + "created": 1610580385.9119813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 322.2343921661377, + "msecs": 911.9813442230225, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13885.961771011353, + "relativeCreated": 13904.473066329956, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 322.33405113220215, + "msecs": 912.024736404419, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13886.061429977417, + "relativeCreated": 13904.516458511353, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 9.965896606445312e-05 + "time_consumption": 4.3392181396484375e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:43,666", - "created": 1610361463.6668735, + "asctime": "2021-01-14 00:26:26,255", + "created": 1610580386.255819, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -138271,8 +138218,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.3225446, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.9121187, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138282,23 +138229,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 322.5445747375488, + "msecs": 912.118673324585, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13886.271953582764, + "relativeCreated": 13904.610395431519, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.322646, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.9121635, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138308,41 +138255,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 322.645902633667, + "msecs": 912.163496017456, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13886.373281478882, + "relativeCreated": 13904.65521812439, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.3227448, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.9122071, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 322.74484634399414, + "msecs": 912.2071266174316, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13886.472225189209, + "relativeCreated": 13904.698848724365, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138353,34 +138300,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,322", - "created": 1610361463.3229241, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.9122891, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 322.9241371154785, + "msecs": 912.2891426086426, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13886.651515960693, + "relativeCreated": 13904.780864715576, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,323", - "created": 1610361463.3233376, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.9124715, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138390,23 +138337,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 323.3375549316406, + "msecs": 912.4715328216553, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13887.064933776855, + "relativeCreated": 13904.963254928589, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,323", - "created": 1610361463.323457, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.912525, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138416,41 +138363,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 323.4570026397705, + "msecs": 912.524938583374, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13887.184381484985, + "relativeCreated": 13905.016660690308, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,323", - "created": 1610361463.323575, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.91257, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 323.5750198364258, + "msecs": 912.5699996948242, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13887.30239868164, + "relativeCreated": 13905.061721801758, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -138458,8 +138405,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,324", - "created": 1610361463.3242717, + "asctime": "2021-01-14 00:26:25,912", + "created": 1610580385.9127653, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138469,15 +138416,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 324.27167892456055, + "msecs": 912.7652645111084, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13887.999057769775, + "relativeCreated": 13905.256986618042, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138485,8 +138432,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,332", - "created": 1610361463.3326898, + "asctime": "2021-01-14 00:26:25,920", + "created": 1610580385.9209805, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138496,15 +138443,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 332.6897621154785, + "msecs": 920.9804534912109, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13896.417140960693, + "relativeCreated": 13913.472175598145, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138512,8 +138459,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,332", - "created": 1610361463.3329432, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9211023, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138523,15 +138470,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 332.9432010650635, + "msecs": 921.1022853851318, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13896.670579910278, + "relativeCreated": 13913.594007492065, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138540,8 +138487,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.3330827, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9211802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138551,15 +138498,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 333.0826759338379, + "msecs": 921.180248260498, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13896.810054779053, + "relativeCreated": 13913.671970367432, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138567,8 +138514,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.33323, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9212446, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138578,15 +138525,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 333.23001861572266, + "msecs": 921.2446212768555, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13896.957397460938, + "relativeCreated": 13913.736343383789, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138595,8 +138542,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.333333, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9212937, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138606,15 +138553,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 333.33301544189453, + "msecs": 921.2937355041504, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.06039428711, + "relativeCreated": 13913.785457611084, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138622,8 +138569,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.3334801, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9213576, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138633,15 +138580,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 333.4801197052002, + "msecs": 921.3576316833496, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.207498550415, + "relativeCreated": 13913.849353790283, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138650,8 +138597,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.3335783, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9213996, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138661,15 +138608,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 333.57834815979004, + "msecs": 921.3995933532715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.305727005005, + "relativeCreated": 13913.891315460205, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138677,8 +138624,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.3337216, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9214563, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138688,15 +138635,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 333.7216377258301, + "msecs": 921.4563369750977, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.449016571045, + "relativeCreated": 13913.948059082031, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138705,8 +138652,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.3338244, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9215035, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138716,15 +138663,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 333.82439613342285, + "msecs": 921.5035438537598, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.551774978638, + "relativeCreated": 13913.995265960693, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138732,8 +138679,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,333", - "created": 1610361463.3339608, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.92156, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138743,15 +138690,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 333.96077156066895, + "msecs": 921.5600490570068, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.688150405884, + "relativeCreated": 13914.05177116394, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138760,8 +138707,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,334", - "created": 1610361463.334058, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9216015, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138771,15 +138718,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 334.0580463409424, + "msecs": 921.6015338897705, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.785425186157, + "relativeCreated": 13914.093255996704, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138787,8 +138734,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:43,334", - "created": 1610361463.3342338, + "asctime": "2021-01-14 00:26:25,921", + "created": 1610580385.9216835, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138798,15 +138745,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 334.23376083374023, + "msecs": 921.6835498809814, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13897.961139678955, + "relativeCreated": 13914.175271987915, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138814,8 +138761,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:43,335", - "created": 1610361463.3352995, + "asctime": "2021-01-14 00:26:25,922", + "created": 1610580385.9225779, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -138825,15 +138772,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 335.2994918823242, + "msecs": 922.5778579711914, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13899.026870727539, + "relativeCreated": 13915.069580078125, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138841,8 +138788,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,335", - "created": 1610361463.335531, + "asctime": "2021-01-14 00:26:25,922", + "created": 1610580385.9226553, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138852,15 +138799,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 335.53099632263184, + "msecs": 922.6553440093994, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13899.258375167847, + "relativeCreated": 13915.147066116333, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138869,8 +138816,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,335", - "created": 1610361463.3356757, + "asctime": "2021-01-14 00:26:25,922", + "created": 1610580385.9227064, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138880,15 +138827,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 335.6757164001465, + "msecs": 922.7063655853271, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13899.403095245361, + "relativeCreated": 13915.19808769226, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138896,8 +138843,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:43,335", - "created": 1610361463.3358538, + "asctime": "2021-01-14 00:26:25,922", + "created": 1610580385.9227808, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -138907,15 +138854,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 335.85381507873535, + "msecs": 922.7807521820068, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13899.58119392395, + "relativeCreated": 13915.27247428894, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138926,26 +138873,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,336", - "created": 1610361463.3361924, + "asctime": "2021-01-14 00:26:25,922", + "created": 1610580385.9229074, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 336.19236946105957, + "msecs": 922.9073524475098, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13899.919748306274, + "relativeCreated": 13915.399074554443, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138953,26 +138900,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:43,336", - "created": 1610361463.3363338, + "asctime": "2021-01-14 00:26:25,922", + "created": 1610580385.9229717, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 336.3337516784668, + "msecs": 922.9717254638672, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13900.061130523682, + "relativeCreated": 13915.4634475708, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -138983,26 +138930,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,336", - "created": 1610361463.3365211, + "asctime": "2021-01-14 00:26:25,923", + "created": 1610580385.92305, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 336.5211486816406, + "msecs": 923.0499267578125, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13900.248527526855, + "relativeCreated": 13915.541648864746, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139010,8 +138957,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,337", - "created": 1610361463.3372538, + "asctime": "2021-01-14 00:26:25,923", + "created": 1610580385.923299, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139021,15 +138968,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 337.2538089752197, + "msecs": 923.2990741729736, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13900.981187820435, + "relativeCreated": 13915.790796279907, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139037,8 +138984,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,345", - "created": 1610361463.3455637, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.9315202, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139048,15 +138995,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 345.5636501312256, + "msecs": 931.5202236175537, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13909.29102897644, + "relativeCreated": 13924.011945724487, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139064,8 +139011,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,345", - "created": 1610361463.3457623, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.9316425, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139075,15 +139022,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 345.7622528076172, + "msecs": 931.6425323486328, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13909.489631652832, + "relativeCreated": 13924.134254455566, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139092,8 +139039,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,345", - "created": 1610361463.345872, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.9316947, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139103,15 +139050,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 345.8719253540039, + "msecs": 931.694746017456, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13909.599304199219, + "relativeCreated": 13924.18646812439, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139119,8 +139066,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3460014, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.931759, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139130,15 +139077,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 346.00138664245605, + "msecs": 931.7591190338135, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13909.72876548767, + "relativeCreated": 13924.250841140747, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139147,8 +139094,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3460937, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.9318047, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139158,15 +139105,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 346.09365463256836, + "msecs": 931.8046569824219, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13909.821033477783, + "relativeCreated": 13924.296379089355, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139174,8 +139121,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3462274, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.931866, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139185,15 +139132,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 346.22740745544434, + "msecs": 931.865930557251, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13909.95478630066, + "relativeCreated": 13924.357652664185, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139202,8 +139149,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3463151, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.931909, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139213,15 +139160,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 346.3151454925537, + "msecs": 931.9090843200684, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13910.042524337769, + "relativeCreated": 13924.400806427002, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139229,8 +139176,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3464353, + "asctime": "2021-01-14 00:26:25,931", + "created": 1610580385.9319644, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139240,15 +139187,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 346.4353084564209, + "msecs": 931.9643974304199, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13910.162687301636, + "relativeCreated": 13924.456119537354, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139257,8 +139204,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3465245, + "asctime": "2021-01-14 00:26:25,932", + "created": 1610580385.9320087, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139268,15 +139215,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 346.5244770050049, + "msecs": 932.0087432861328, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13910.25185585022, + "relativeCreated": 13924.500465393066, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139284,8 +139231,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3466384, + "asctime": "2021-01-14 00:26:25,932", + "created": 1610580385.9320643, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139295,15 +139242,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 346.63844108581543, + "msecs": 932.0642948150635, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13910.36581993103, + "relativeCreated": 13924.556016921997, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139312,8 +139259,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.3467236, + "asctime": "2021-01-14 00:26:25,932", + "created": 1610580385.932105, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139323,15 +139270,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 346.7235565185547, + "msecs": 932.1050643920898, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13910.45093536377, + "relativeCreated": 13924.596786499023, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139339,8 +139286,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:43,346", - "created": 1610361463.346875, + "asctime": "2021-01-14 00:26:25,932", + "created": 1610580385.9321845, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139350,15 +139297,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 346.8749523162842, + "msecs": 932.1844577789307, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13910.602331161499, + "relativeCreated": 13924.676179885864, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139366,8 +139313,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:43,347", - "created": 1610361463.3479512, + "asctime": "2021-01-14 00:26:25,933", + "created": 1610580385.9331536, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139377,15 +139324,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 347.95117378234863, + "msecs": 933.1536293029785, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13911.678552627563, + "relativeCreated": 13925.645351409912, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139393,8 +139340,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,348", - "created": 1610361463.3481753, + "asctime": "2021-01-14 00:26:25,933", + "created": 1610580385.93329, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139404,15 +139351,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 348.1752872467041, + "msecs": 933.2900047302246, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13911.902666091919, + "relativeCreated": 13925.781726837158, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139421,8 +139368,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,348", - "created": 1610361463.3482914, + "asctime": "2021-01-14 00:26:25,933", + "created": 1610580385.9333525, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139432,15 +139379,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 348.29139709472656, + "msecs": 933.3524703979492, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13912.018775939941, + "relativeCreated": 13925.844192504883, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139448,8 +139395,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:43,348", - "created": 1610361463.3484552, + "asctime": "2021-01-14 00:26:25,933", + "created": 1610580385.933435, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139459,15 +139406,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 348.45519065856934, + "msecs": 933.4349632263184, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13912.182569503784, + "relativeCreated": 13925.926685333252, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139478,26 +139425,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,348", - "created": 1610361463.3487158, + "asctime": "2021-01-14 00:26:25,933", + "created": 1610580385.933574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 348.71578216552734, + "msecs": 933.5739612579346, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13912.443161010742, + "relativeCreated": 13926.065683364868, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -139505,45 +139452,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:43,348", - "created": 1610361463.3488624, + "asctime": "2021-01-14 00:26:25,933", + "created": 1610580385.9336362, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 348.8624095916748, + "msecs": 933.6361885070801, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13912.58978843689, + "relativeCreated": 13926.127910614014, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" } ], - "msecs": 666.8734550476074, + "msecs": 255.81908226013184, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14230.600833892822, + "relativeCreated": 14248.310804367065, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3180110454559326 + "time_consumption": 0.32218289375305176 }, { "args": [], - "asctime": "2021-01-11 11:37:43,667", - "created": 1610361463.667584, + "asctime": "2021-01-14 00:26:26,256", + "created": 1610580386.256545, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -139561,8 +139508,8 @@ "10", "None" ], - "asctime": "2021-01-11 11:37:43,667", - "created": 1610361463.667402, + "asctime": "2021-01-14 00:26:26,256", + "created": 1610580386.2563581, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139572,34 +139519,34 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=None", "module": "__init__", - "msecs": 667.4020290374756, + "msecs": 256.35814666748047, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14231.12940788269, + "relativeCreated": 14248.849868774414, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 667.5839424133301, + "msecs": 256.5450668334961, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14231.311321258545, + "relativeCreated": 14249.03678894043, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001819133758544922 + "time_consumption": 0.000186920166015625 }, { "args": [], - "asctime": "2021-01-11 11:37:43,868", - "created": 1610361463.868984, + "asctime": "2021-01-14 00:26:26,458", + "created": 1610580386.458049, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -139618,26 +139565,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:43,667", - "created": 1610361463.6679142, + "asctime": "2021-01-14 00:26:26,256", + "created": 1610580386.256882, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 667.9141521453857, + "msecs": 256.8819522857666, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14231.6415309906, + "relativeCreated": 14249.3736743927, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -139645,8 +139592,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:43,668", - "created": 1610361463.6687763, + "asctime": "2021-01-14 00:26:26,257", + "created": 1610580386.2577748, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139656,15 +139603,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 668.776273727417, + "msecs": 257.77482986450195, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14232.503652572632, + "relativeCreated": 14250.266551971436, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139672,8 +139619,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:43,677", - "created": 1610361463.6771853, + "asctime": "2021-01-14 00:26:26,266", + "created": 1610580386.266238, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139683,15 +139630,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 677.1852970123291, + "msecs": 266.2379741668701, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14240.912675857544, + "relativeCreated": 14258.729696273804, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139699,8 +139646,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,677", - "created": 1610361463.6774654, + "asctime": "2021-01-14 00:26:26,266", + "created": 1610580386.2665129, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139710,15 +139657,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 677.4654388427734, + "msecs": 266.5128707885742, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14241.192817687988, + "relativeCreated": 14259.004592895508, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139727,8 +139674,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,677", - "created": 1610361463.6776278, + "asctime": "2021-01-14 00:26:26,266", + "created": 1610580386.2666762, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139738,15 +139685,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 677.6278018951416, + "msecs": 266.6761875152588, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14241.355180740356, + "relativeCreated": 14259.167909622192, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139754,8 +139701,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,677", - "created": 1610361463.6778543, + "asctime": "2021-01-14 00:26:26,266", + "created": 1610580386.2668736, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139765,15 +139712,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 677.8542995452881, + "msecs": 266.8735980987549, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14241.581678390503, + "relativeCreated": 14259.365320205688, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139782,8 +139729,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,678", - "created": 1610361463.6780145, + "asctime": "2021-01-14 00:26:26,267", + "created": 1610580386.2670712, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139793,15 +139740,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 678.0145168304443, + "msecs": 267.0712471008301, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14241.74189567566, + "relativeCreated": 14259.562969207764, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139809,8 +139756,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,678", - "created": 1610361463.6782186, + "asctime": "2021-01-14 00:26:26,267", + "created": 1610580386.2672887, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139820,15 +139767,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 678.2186031341553, + "msecs": 267.2886848449707, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14241.94598197937, + "relativeCreated": 14259.780406951904, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139837,8 +139784,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,678", - "created": 1610361463.67835, + "asctime": "2021-01-14 00:26:26,267", + "created": 1610580386.267422, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139848,15 +139795,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 678.3499717712402, + "msecs": 267.4219608306885, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14242.077350616455, + "relativeCreated": 14259.913682937622, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139864,8 +139811,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,678", - "created": 1610361463.6785362, + "asctime": "2021-01-14 00:26:26,267", + "created": 1610580386.2676067, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139875,15 +139822,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 678.5361766815186, + "msecs": 267.6067352294922, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14242.263555526733, + "relativeCreated": 14260.098457336426, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139892,8 +139839,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,678", - "created": 1610361463.6786768, + "asctime": "2021-01-14 00:26:26,267", + "created": 1610580386.2677364, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139903,15 +139850,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 678.6768436431885, + "msecs": 267.73643493652344, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14242.404222488403, + "relativeCreated": 14260.228157043457, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139919,8 +139866,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,678", - "created": 1610361463.678852, + "asctime": "2021-01-14 00:26:26,267", + "created": 1610580386.267903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139930,15 +139877,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 678.8520812988281, + "msecs": 267.90308952331543, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14242.579460144043, + "relativeCreated": 14260.394811630249, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139947,8 +139894,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,678", - "created": 1610361463.6789815, + "asctime": "2021-01-14 00:26:26,268", + "created": 1610580386.268028, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -139958,15 +139905,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 678.9815425872803, + "msecs": 268.02802085876465, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14242.708921432495, + "relativeCreated": 14260.519742965698, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -139974,8 +139921,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:43,679", - "created": 1610361463.6792097, + "asctime": "2021-01-14 00:26:26,268", + "created": 1610580386.2682788, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -139985,15 +139932,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 679.2097091674805, + "msecs": 268.2788372039795, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14242.937088012695, + "relativeCreated": 14260.770559310913, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140001,8 +139948,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:43,680", - "created": 1610361463.6801248, + "asctime": "2021-01-14 00:26:26,269", + "created": 1610580386.2692358, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -140012,15 +139959,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 680.1247596740723, + "msecs": 269.23584938049316, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14243.852138519287, + "relativeCreated": 14261.727571487427, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140028,8 +139975,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,680", - "created": 1610361463.6803405, + "asctime": "2021-01-14 00:26:26,269", + "created": 1610580386.269513, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140039,15 +139986,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 680.3405284881592, + "msecs": 269.5128917694092, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14244.067907333374, + "relativeCreated": 14262.004613876343, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140056,8 +140003,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,680", - "created": 1610361463.6804729, + "asctime": "2021-01-14 00:26:26,269", + "created": 1610580386.2696927, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140067,15 +140014,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 680.4728507995605, + "msecs": 269.69265937805176, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14244.200229644775, + "relativeCreated": 14262.184381484985, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140083,8 +140030,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:43,680", - "created": 1610361463.6806686, + "asctime": "2021-01-14 00:26:26,269", + "created": 1610580386.2699401, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140094,15 +140041,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 680.6685924530029, + "msecs": 269.9401378631592, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14244.395971298218, + "relativeCreated": 14262.431859970093, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140113,26 +140060,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:43,680", - "created": 1610361463.6809876, + "asctime": "2021-01-14 00:26:26,270", + "created": 1610580386.270324, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 680.9875965118408, + "msecs": 270.3239917755127, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14244.714975357056, + "relativeCreated": 14262.815713882446, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140140,26 +140087,26 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:43,681", - "created": 1610361463.6811395, + "asctime": "2021-01-14 00:26:26,270", + "created": 1610580386.2705097, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 681.1394691467285, + "msecs": 270.5097198486328, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14244.866847991943, + "relativeCreated": 14263.001441955566, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140170,26 +140117,26 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:43,681", - "created": 1610361463.6813414, + "asctime": "2021-01-14 00:26:26,270", + "created": 1610580386.2707665, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 681.3414096832275, + "msecs": 270.7664966583252, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14245.068788528442, + "relativeCreated": 14263.258218765259, "stack_info": null, - "thread": 139975928571648, + "thread": 140580906587904, "threadName": "Thread-21" }, { @@ -140197,8 +140144,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:43,681", - "created": 1610361463.681972, + "asctime": "2021-01-14 00:26:26,271", + "created": 1610580386.2714236, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -140208,15 +140155,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 681.9720268249512, + "msecs": 271.4235782623291, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14245.699405670166, + "relativeCreated": 14263.915300369263, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140224,8 +140171,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:43,690", - "created": 1610361463.690387, + "asctime": "2021-01-14 00:26:26,279", + "created": 1610580386.2796514, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -140235,15 +140182,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 690.3870105743408, + "msecs": 279.651403427124, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14254.114389419556, + "relativeCreated": 14272.143125534058, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140251,8 +140198,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,690", - "created": 1610361463.6906762, + "asctime": "2021-01-14 00:26:26,279", + "created": 1610580386.2797909, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140262,15 +140209,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 690.676212310791, + "msecs": 279.79087829589844, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14254.403591156006, + "relativeCreated": 14272.282600402832, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140279,8 +140226,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,690", - "created": 1610361463.6908422, + "asctime": "2021-01-14 00:26:26,279", + "created": 1610580386.2798598, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140290,15 +140237,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 690.8421516418457, + "msecs": 279.8597812652588, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14254.56953048706, + "relativeCreated": 14272.351503372192, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140306,8 +140253,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,691", - "created": 1610361463.69104, + "asctime": "2021-01-14 00:26:26,279", + "created": 1610580386.2799373, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140317,15 +140264,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 691.0400390625, + "msecs": 279.9372673034668, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14254.767417907715, + "relativeCreated": 14272.4289894104, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140334,8 +140281,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,691", - "created": 1610361463.6911838, + "asctime": "2021-01-14 00:26:26,279", + "created": 1610580386.2799933, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140345,15 +140292,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 691.1838054656982, + "msecs": 279.99329566955566, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14254.911184310913, + "relativeCreated": 14272.48501777649, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140361,8 +140308,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,691", - "created": 1610361463.691387, + "asctime": "2021-01-14 00:26:26,280", + "created": 1610580386.2800863, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140372,15 +140319,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 691.3869380950928, + "msecs": 280.0862789154053, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14255.114316940308, + "relativeCreated": 14272.578001022339, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140389,8 +140336,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,691", - "created": 1610361463.6915216, + "asctime": "2021-01-14 00:26:26,280", + "created": 1610580386.280138, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140400,15 +140347,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 691.5216445922852, + "msecs": 280.1380157470703, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14255.2490234375, + "relativeCreated": 14272.629737854004, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140416,8 +140363,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,691", - "created": 1610361463.6917038, + "asctime": "2021-01-14 00:26:26,280", + "created": 1610580386.2802083, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140427,15 +140374,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 691.7037963867188, + "msecs": 280.2083492279053, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14255.431175231934, + "relativeCreated": 14272.700071334839, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140444,8 +140391,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,691", - "created": 1610361463.6918347, + "asctime": "2021-01-14 00:26:26,280", + "created": 1610580386.28026, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140455,15 +140402,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 691.8346881866455, + "msecs": 280.2600860595703, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14255.56206703186, + "relativeCreated": 14272.751808166504, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140471,8 +140418,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,692", - "created": 1610361463.692006, + "asctime": "2021-01-14 00:26:26,280", + "created": 1610580386.2803254, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140482,15 +140429,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 692.0061111450195, + "msecs": 280.32541275024414, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14255.733489990234, + "relativeCreated": 14272.817134857178, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140499,8 +140446,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,692", - "created": 1610361463.6921353, + "asctime": "2021-01-14 00:26:26,280", + "created": 1610580386.2803743, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140510,15 +140457,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 692.1353340148926, + "msecs": 280.37428855895996, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14255.862712860107, + "relativeCreated": 14272.866010665894, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140526,8 +140473,8 @@ "comm-server:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:43,692", - "created": 1610361463.6923866, + "asctime": "2021-01-14 00:26:26,280", + "created": 1610580386.2804747, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -140537,15 +140484,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 692.3866271972656, + "msecs": 280.4746627807617, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14256.11400604248, + "relativeCreated": 14272.966384887695, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140553,8 +140500,8 @@ "comm-client:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:43,693", - "created": 1610361463.6932998, + "asctime": "2021-01-14 00:26:26,281", + "created": 1610580386.2812345, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -140564,15 +140511,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 693.2997703552246, + "msecs": 281.2345027923584, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14257.02714920044, + "relativeCreated": 14273.726224899292, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140580,8 +140527,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,693", - "created": 1610361463.6935844, + "asctime": "2021-01-14 00:26:26,281", + "created": 1610580386.2813377, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140591,15 +140538,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 693.5844421386719, + "msecs": 281.3377380371094, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14257.311820983887, + "relativeCreated": 14273.829460144043, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140608,8 +140555,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,693", - "created": 1610361463.6937602, + "asctime": "2021-01-14 00:26:26,281", + "created": 1610580386.2814045, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140619,15 +140566,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 693.7601566314697, + "msecs": 281.4044952392578, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14257.487535476685, + "relativeCreated": 14273.896217346191, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140635,8 +140582,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" ], - "asctime": "2021-01-11 11:37:43,693", - "created": 1610361463.6939936, + "asctime": "2021-01-14 00:26:26,281", + "created": 1610580386.2815049, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -140646,15 +140593,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", "module": "stp", - "msecs": 693.9935684204102, + "msecs": 281.50486946105957, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14257.720947265625, + "relativeCreated": 14273.996591567993, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { @@ -140665,74 +140612,74 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:43,694", - "created": 1610361463.6943562, + "asctime": "2021-01-14 00:26:26,281", + "created": 1610580386.2816632, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 694.3562030792236, + "msecs": 281.663179397583, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14258.083581924438, + "relativeCreated": 14274.154901504517, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,694", - "created": 1610361463.6945915, + "asctime": "2021-01-14 00:26:26,281", + "created": 1610580386.2817502, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 694.5915222167969, + "msecs": 281.7502021789551, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14258.318901062012, + "relativeCreated": 14274.241924285889, "stack_info": null, - "thread": 139975920178944, + "thread": 140580898195200, "threadName": "Thread-22" } ], - "msecs": 868.9839839935303, + "msecs": 458.04905891418457, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14432.711362838745, + "relativeCreated": 14450.540781021118, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.1743924617767334 + "time_consumption": 0.1762988567352295 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:43,869", - "created": 1610361463.8698149, + "asctime": "2021-01-14 00:26:26,458", + "created": 1610580386.4589844, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140749,8 +140696,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:43,869", - "created": 1610361463.8694708, + "asctime": "2021-01-14 00:26:26,458", + "created": 1610580386.4586043, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140760,15 +140707,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 869.4708347320557, + "msecs": 458.6043357849121, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14433.19821357727, + "relativeCreated": 14451.096057891846, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -140777,8 +140724,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:43,869", - "created": 1610361463.8696523, + "asctime": "2021-01-14 00:26:26,458", + "created": 1610580386.4587903, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140788,37 +140735,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 869.652271270752, + "msecs": 458.7903022766113, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14433.379650115967, + "relativeCreated": 14451.282024383545, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 869.8148727416992, + "msecs": 458.984375, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14433.542251586914, + "relativeCreated": 14451.476097106934, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016260147094726562 + "time_consumption": 0.00019407272338867188 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:43,870", - "created": 1610361463.8703637, + "asctime": "2021-01-14 00:26:26,459", + "created": 1610580386.459521, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140835,8 +140782,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:43,870", - "created": 1610361463.8700485, + "asctime": "2021-01-14 00:26:26,459", + "created": 1610580386.4592261, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140846,15 +140793,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 870.0485229492188, + "msecs": 459.226131439209, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14433.775901794434, + "relativeCreated": 14451.717853546143, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -140863,8 +140810,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:43,870", - "created": 1610361463.8701944, + "asctime": "2021-01-14 00:26:26,459", + "created": 1610580386.459378, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140874,41 +140821,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 870.1944351196289, + "msecs": 459.3780040740967, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14433.921813964844, + "relativeCreated": 14451.86972618103, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 870.363712310791, + "msecs": 459.5210552215576, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14434.091091156006, + "relativeCreated": 14452.012777328491, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016927719116210938 + "time_consumption": 0.0001430511474609375 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.5550887584686279, - "time_finished": "2021-01-11 11:37:43,870", - "time_start": "2021-01-11 11:37:43,315" + "time_consumption": 0.5566105842590332, + "time_finished": "2021-01-14 00:26:26,459", + "time_start": "2021-01-14 00:26:25,902" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5501397, + "asctime": "2021-01-14 00:26:12,121", + "created": 1610580372.1213067, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -140919,21 +140866,21 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 550.1396656036377, + "msecs": 121.3066577911377, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 113.86704444885254, + "relativeCreated": 113.79837989807129, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5503721, + "asctime": "2021-01-14 00:26:12,121", + "created": 1610580372.1215568, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -140944,15 +140891,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 550.3721237182617, + "msecs": 121.55675888061523, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.09950256347656, + "relativeCreated": 114.04848098754883, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -140960,8 +140907,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5506012, + "asctime": "2021-01-14 00:26:12,121", + "created": 1610580372.1218586, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140978,8 +140925,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5505123, + "asctime": "2021-01-14 00:26:12,121", + "created": 1610580372.1217148, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -140989,15 +140936,15 @@ "lineno": 22, "message": "Result (status is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 550.5123138427734, + "msecs": 121.71483039855957, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.23969268798828, + "relativeCreated": 114.20655250549316, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141005,8 +140952,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5505602, + "asctime": "2021-01-14 00:26:12,121", + "created": 1610580372.121792, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -141016,36 +140963,36 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 550.5602359771729, + "msecs": 121.79207801818848, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.2876148223877, + "relativeCreated": 114.28380012512207, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 550.6012439727783, + "msecs": 121.85859680175781, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.32862281799316, + "relativeCreated": 114.3503189086914, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 4.100799560546875e-05 + "time_consumption": 6.651878356933594e-05 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.550669, + "asctime": "2021-01-14 00:26:12,121", + "created": 1610580372.1219664, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -141056,15 +141003,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 550.6689548492432, + "msecs": 121.96636199951172, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.39633369445801, + "relativeCreated": 114.45808410644531, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -141072,8 +141019,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.550796, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.122108, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -141090,8 +141037,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5507274, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.122036, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -141101,15 +141048,15 @@ "lineno": 22, "message": "Result (status is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 550.727367401123, + "msecs": 122.03598022460938, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.45474624633789, + "relativeCreated": 114.52770233154297, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141117,8 +141064,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5507634, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1220737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -141128,37 +141075,37 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 550.7633686065674, + "msecs": 122.07365036010742, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.49074745178223, + "relativeCreated": 114.56537246704102, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 550.7960319519043, + "msecs": 122.10798263549805, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.52341079711914, + "relativeCreated": 114.59970474243164, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.266334533691406e-05 + "time_consumption": 3.4332275390625e-05 }, { "args": [ "'S'", "" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5509305, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1222425, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -141175,8 +141122,8 @@ "'S'", "" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5508564, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1221695, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -141186,15 +141133,15 @@ "lineno": 22, "message": "Result (Content in message object for status): 'S' ()", "module": "test", - "msecs": 550.856351852417, + "msecs": 122.16949462890625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.58373069763184, + "relativeCreated": 114.66121673583984, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141203,8 +141150,8 @@ "'S'", "" ], - "asctime": "2021-01-11 11:37:29,550", - "created": 1610361449.5508945, + "asctime": "2021-01-14 00:26:12,122", + "created": 1610580372.1222057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -141214,41 +141161,41 @@ "lineno": 26, "message": "Expectation (Content in message object for status): result = 'S' ()", "module": "test", - "msecs": 550.8944988250732, + "msecs": 122.20573425292969, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.62187767028809, + "relativeCreated": 114.69745635986328, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 550.9305000305176, + "msecs": 122.24245071411133, "msg": "Content in message object for status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 114.65787887573242, + "relativeCreated": 114.73417282104492, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 3.6716461181640625e-05 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0007908344268798828, - "time_finished": "2021-01-11 11:37:29,550", - "time_start": "2021-01-11 11:37:29,550" + "time_consumption": 0.0009357929229736328, + "time_finished": "2021-01-14 00:26:12,122", + "time_start": "2021-01-14 00:26:12,121" }, "_YfrfUE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:43,870", - "created": 1610361463.8708093, + "asctime": "2021-01-14 00:26:26,459", + "created": 1610580386.4599802, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141259,19 +141206,19 @@ "message": "_YfrfUE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 870.8093166351318, + "msecs": 459.9802494049072, "msg": "_YfrfUE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14434.536695480347, + "relativeCreated": 14452.47197151184, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8777046, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4663894, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -141286,8 +141233,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:43,871", - "created": 1610361463.871828, + "asctime": "2021-01-14 00:26:26,460", + "created": 1610580386.4609728, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141297,23 +141244,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 871.8280792236328, + "msecs": 460.97278594970703, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14435.555458068848, + "relativeCreated": 14453.46450805664, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,872", - "created": 1610361463.8727021, + "asctime": "2021-01-14 00:26:26,461", + "created": 1610580386.461894, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141323,23 +141270,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 872.7021217346191, + "msecs": 461.89403533935547, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14436.429500579834, + "relativeCreated": 14454.385757446289, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,872", - "created": 1610361463.8729563, + "asctime": "2021-01-14 00:26:26,462", + "created": 1610580386.4621308, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141349,41 +141296,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 872.9562759399414, + "msecs": 462.1307849884033, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14436.683654785156, + "relativeCreated": 14454.622507095337, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,873", - "created": 1610361463.8732817, + "asctime": "2021-01-14 00:26:26,462", + "created": 1610580386.462462, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 873.281717300415, + "msecs": 462.4619483947754, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14437.00909614563, + "relativeCreated": 14454.953670501709, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141392,26 +141339,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:43,873", - "created": 1610361463.8734574, + "asctime": "2021-01-14 00:26:26,462", + "created": 1610580386.4626427, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 873.4574317932129, + "msecs": 462.6426696777344, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14437.184810638428, + "relativeCreated": 14455.134391784668, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141419,26 +141366,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,873", - "created": 1610361463.873673, + "asctime": "2021-01-14 00:26:26,462", + "created": 1610580386.4628677, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 873.6729621887207, + "msecs": 462.86773681640625, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14437.400341033936, + "relativeCreated": 14455.35945892334, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141446,26 +141393,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,873", - "created": 1610361463.8738427, + "asctime": "2021-01-14 00:26:26,463", + "created": 1610580386.4630246, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 873.842716217041, + "msecs": 463.0246162414551, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14437.570095062256, + "relativeCreated": 14455.516338348389, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141473,26 +141420,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:43,873", - "created": 1610361463.8739913, + "asctime": "2021-01-14 00:26:26,463", + "created": 1610580386.4631824, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 873.9912509918213, + "msecs": 463.1824493408203, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14437.718629837036, + "relativeCreated": 14455.674171447754, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141500,26 +141447,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:43,874", - "created": 1610361463.8741336, + "asctime": "2021-01-14 00:26:26,463", + "created": 1610580386.4633253, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 874.1335868835449, + "msecs": 463.32526206970215, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14437.86096572876, + "relativeCreated": 14455.816984176636, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141529,8 +141476,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:43,874", - "created": 1610361463.8743017, + "asctime": "2021-01-14 00:26:26,463", + "created": 1610580386.4634938, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141540,15 +141487,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 874.3016719818115, + "msecs": 463.49382400512695, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14438.029050827026, + "relativeCreated": 14455.98554611206, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141558,8 +141505,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:43,874", - "created": 1610361463.8744738, + "asctime": "2021-01-14 00:26:26,463", + "created": 1610580386.4636626, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141569,15 +141516,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 874.4738101959229, + "msecs": 463.66262435913086, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14438.201189041138, + "relativeCreated": 14456.154346466064, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141587,8 +141534,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:43,874", - "created": 1610361463.874632, + "asctime": "2021-01-14 00:26:26,463", + "created": 1610580386.4638212, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141598,15 +141545,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 874.6318817138672, + "msecs": 463.8211727142334, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14438.359260559082, + "relativeCreated": 14456.312894821167, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141616,8 +141563,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:43,874", - "created": 1610361463.8747842, + "asctime": "2021-01-14 00:26:26,463", + "created": 1610580386.4639852, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141627,41 +141574,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 874.7842311859131, + "msecs": 463.9852046966553, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14438.511610031128, + "relativeCreated": 14456.476926803589, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,874", - "created": 1610361463.874918, + "asctime": "2021-01-14 00:26:26,464", + "created": 1610580386.4641263, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 874.9179840087891, + "msecs": 464.1263484954834, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14438.645362854004, + "relativeCreated": 14456.618070602417, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141670,26 +141617,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:43,875", - "created": 1610361463.8750677, + "asctime": "2021-01-14 00:26:26,464", + "created": 1610580386.4642804, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 875.0677108764648, + "msecs": 464.280366897583, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14438.79508972168, + "relativeCreated": 14456.772089004517, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141697,26 +141644,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:43,875", - "created": 1610361463.8752556, + "asctime": "2021-01-14 00:26:26,464", + "created": 1610580386.4644496, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 875.2555847167969, + "msecs": 464.4496440887451, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14438.982963562012, + "relativeCreated": 14456.941366195679, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141724,26 +141671,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:43,875", - "created": 1610361463.875413, + "asctime": "2021-01-14 00:26:26,464", + "created": 1610580386.464604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 875.4129409790039, + "msecs": 464.6039009094238, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14439.140319824219, + "relativeCreated": 14457.095623016357, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141753,8 +141700,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:43,875", - "created": 1610361463.8755808, + "asctime": "2021-01-14 00:26:26,464", + "created": 1610580386.4647717, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141764,15 +141711,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 875.5807876586914, + "msecs": 464.7717475891113, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14439.308166503906, + "relativeCreated": 14457.263469696045, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141782,8 +141729,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:43,875", - "created": 1610361463.875734, + "asctime": "2021-01-14 00:26:26,464", + "created": 1610580386.4649293, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -141793,15 +141740,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 875.7340908050537, + "msecs": 464.92934226989746, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14439.461469650269, + "relativeCreated": 14457.421064376831, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141810,26 +141757,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:43,875", - "created": 1610361463.8758805, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4650786, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 875.8804798126221, + "msecs": 465.07859230041504, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14439.607858657837, + "relativeCreated": 14457.570314407349, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141838,26 +141785,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8760183, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4651835, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 876.0182857513428, + "msecs": 465.1834964752197, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14439.745664596558, + "relativeCreated": 14457.675218582153, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141866,78 +141813,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8761866, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4652326, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 876.1866092681885, + "msecs": 465.23261070251465, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14439.913988113403, + "relativeCreated": 14457.724332809448, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8763278, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4652798, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 876.3277530670166, + "msecs": 465.27981758117676, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.055131912231, + "relativeCreated": 14457.77153968811, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8766072, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4653745, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 876.6071796417236, + "msecs": 465.3744697570801, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.334558486938, + "relativeCreated": 14457.866191864014, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141946,26 +141893,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8767843, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4654262, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 876.7843246459961, + "msecs": 465.4262065887451, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.511703491211, + "relativeCreated": 14457.917928695679, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -141973,26 +141920,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8768492, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4654925, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 876.8491744995117, + "msecs": 465.49248695373535, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.576553344727, + "relativeCreated": 14457.984209060669, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142000,26 +141947,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.876897, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.465542, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 876.8970966339111, + "msecs": 465.5420780181885, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.624475479126, + "relativeCreated": 14458.033800125122, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142027,26 +141974,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8769464, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4655938, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 876.9464492797852, + "msecs": 465.5938148498535, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.673828125, + "relativeCreated": 14458.085536956787, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142054,26 +142001,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:43,876", - "created": 1610361463.8769915, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4656415, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 876.9915103912354, + "msecs": 465.6414985656738, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.71888923645, + "relativeCreated": 14458.133220672607, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142083,8 +142030,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8770394, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.465691, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142094,15 +142041,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 877.0394325256348, + "msecs": 465.69108963012695, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.76681137085, + "relativeCreated": 14458.18281173706, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142112,8 +142059,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8770883, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4657423, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142123,15 +142070,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 877.0883083343506, + "msecs": 465.7423496246338, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.815687179565, + "relativeCreated": 14458.234071731567, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142141,8 +142088,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8771403, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4657936, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142152,15 +142099,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 877.1402835845947, + "msecs": 465.7936096191406, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.86766242981, + "relativeCreated": 14458.285331726074, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142170,8 +142117,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8771892, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4658437, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142181,41 +142128,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 877.1891593933105, + "msecs": 465.84367752075195, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.916538238525, + "relativeCreated": 14458.335399627686, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8772352, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.465893, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 877.2351741790771, + "msecs": 465.893030166626, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14440.962553024292, + "relativeCreated": 14458.38475227356, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142224,26 +142171,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8772826, + "asctime": "2021-01-14 00:26:26,465", + "created": 1610580386.4659464, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 877.2826194763184, + "msecs": 465.9464359283447, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.009998321533, + "relativeCreated": 14458.438158035278, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142251,26 +142198,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8773375, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4660063, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 877.3374557495117, + "msecs": 466.0062789916992, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.064834594727, + "relativeCreated": 14458.498001098633, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142278,26 +142225,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8773832, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4660554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 877.3832321166992, + "msecs": 466.05539321899414, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.110610961914, + "relativeCreated": 14458.547115325928, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142307,8 +142254,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.877436, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4661045, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142318,15 +142265,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 877.4359226226807, + "msecs": 466.10450744628906, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.163301467896, + "relativeCreated": 14458.596229553223, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142336,8 +142283,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.877485, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4661586, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142347,15 +142294,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 877.4850368499756, + "msecs": 466.1586284637451, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.21241569519, + "relativeCreated": 14458.650350570679, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142364,26 +142311,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.877531, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4662077, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 877.5310516357422, + "msecs": 466.20774269104004, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.258430480957, + "relativeCreated": 14458.699464797974, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142392,26 +142339,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8775747, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4662538, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 877.5746822357178, + "msecs": 466.25375747680664, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.302061080933, + "relativeCreated": 14458.74547958374, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142420,71 +142367,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8776178, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4662995, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 877.6178359985352, + "msecs": 466.29953384399414, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.34521484375, + "relativeCreated": 14458.791255950928, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8776631, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.466346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 877.6631355285645, + "msecs": 466.34602546691895, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.39051437378, + "relativeCreated": 14458.837747573853, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 877.7046203613281, + "msecs": 466.38941764831543, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.431999206543, + "relativeCreated": 14458.881139755249, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 4.1484832763671875e-05 + "time_consumption": 4.3392181396484375e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:44,221", - "created": 1610361464.22151, + "asctime": "2021-01-14 00:26:26,810", + "created": 1610580386.8101873, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -142499,8 +142446,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8777983, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4664881, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142510,23 +142457,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 877.798318862915, + "msecs": 466.4881229400635, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.52569770813, + "relativeCreated": 14458.979845046997, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8778486, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4665406, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142536,41 +142483,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 877.8486251831055, + "msecs": 466.5405750274658, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.57600402832, + "relativeCreated": 14459.0322971344, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8778932, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4665875, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 877.8932094573975, + "msecs": 466.5875434875488, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.620588302612, + "relativeCreated": 14459.079265594482, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142581,34 +142528,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,877", - "created": 1610361463.8779724, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4666734, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 877.9723644256592, + "msecs": 466.6733741760254, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.699743270874, + "relativeCreated": 14459.165096282959, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,878", - "created": 1610361463.878162, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4668694, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142618,23 +142565,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 878.1619071960449, + "msecs": 466.8693542480469, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.88928604126, + "relativeCreated": 14459.36107635498, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:43,878", - "created": 1610361463.878215, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.4669232, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142644,41 +142591,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 878.2150745391846, + "msecs": 466.9232368469238, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.9424533844, + "relativeCreated": 14459.414958953857, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,878", - "created": 1610361463.8782628, + "asctime": "2021-01-14 00:26:26,466", + "created": 1610580386.466972, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 878.2627582550049, + "msecs": 466.97211265563965, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14441.99013710022, + "relativeCreated": 14459.463834762573, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -142686,8 +142633,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,878", - "created": 1610361463.8785546, + "asctime": "2021-01-14 00:26:26,467", + "created": 1610580386.4671402, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142697,15 +142644,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 878.5545825958252, + "msecs": 467.14019775390625, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14442.28196144104, + "relativeCreated": 14459.63191986084, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142713,8 +142660,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,886", - "created": 1610361463.886762, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.4753666, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -142724,15 +142671,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 886.7619037628174, + "msecs": 475.36659240722656, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.489282608032, + "relativeCreated": 14467.85831451416, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142740,8 +142687,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,886", - "created": 1610361463.8868947, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.475514, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142751,15 +142698,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 886.894702911377, + "msecs": 475.5139350891113, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.622081756592, + "relativeCreated": 14468.005657196045, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142768,8 +142715,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,886", - "created": 1610361463.8869474, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.4755745, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142779,15 +142726,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 886.9473934173584, + "msecs": 475.5744934082031, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.674772262573, + "relativeCreated": 14468.066215515137, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142795,8 +142742,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.8870106, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.475665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142806,15 +142753,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 887.0105743408203, + "msecs": 475.6650924682617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.737953186035, + "relativeCreated": 14468.156814575195, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142823,8 +142770,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.8870556, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.475715, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142834,15 +142781,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 887.0556354522705, + "msecs": 475.71492195129395, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.783014297485, + "relativeCreated": 14468.206644058228, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142850,8 +142797,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.887124, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.475788, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142861,15 +142808,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 887.1240615844727, + "msecs": 475.7881164550781, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.851440429688, + "relativeCreated": 14468.279838562012, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142878,8 +142825,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.8871696, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.475833, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142889,15 +142836,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 887.169599533081, + "msecs": 475.8329391479492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.896978378296, + "relativeCreated": 14468.324661254883, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142905,8 +142852,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.8872285, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.475894, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142916,15 +142863,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 887.2284889221191, + "msecs": 475.8939743041992, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.955867767334, + "relativeCreated": 14468.385696411133, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142933,8 +142880,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.8872705, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.4759378, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142944,15 +142891,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 887.270450592041, + "msecs": 475.9378433227539, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14450.997829437256, + "relativeCreated": 14468.429565429688, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142960,8 +142907,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.887326, + "asctime": "2021-01-14 00:26:26,475", + "created": 1610580386.4759953, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142971,15 +142918,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 887.3260021209717, + "msecs": 475.9953022003174, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14451.053380966187, + "relativeCreated": 14468.487024307251, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -142988,8 +142935,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.8873677, + "asctime": "2021-01-14 00:26:26,476", + "created": 1610580386.4760425, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -142999,15 +142946,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 887.3677253723145, + "msecs": 476.0425090789795, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14451.09510421753, + "relativeCreated": 14468.534231185913, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143015,8 +142962,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:43,887", - "created": 1610361463.8874512, + "asctime": "2021-01-14 00:26:26,476", + "created": 1610580386.4761345, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143026,15 +142973,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 887.451171875, + "msecs": 476.1345386505127, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14451.178550720215, + "relativeCreated": 14468.626260757446, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143042,8 +142989,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:43,888", - "created": 1610361463.8883994, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.4770355, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143053,15 +143000,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 888.3993625640869, + "msecs": 477.0355224609375, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.126741409302, + "relativeCreated": 14469.527244567871, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143069,8 +143016,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,888", - "created": 1610361463.8885376, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.4771361, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143080,15 +143027,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 888.5376453399658, + "msecs": 477.13613510131836, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.26502418518, + "relativeCreated": 14469.627857208252, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143097,8 +143044,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,888", - "created": 1610361463.8885944, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.477207, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143108,15 +143055,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 888.594388961792, + "msecs": 477.2069454193115, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.321767807007, + "relativeCreated": 14469.698667526245, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143124,8 +143071,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:43,888", - "created": 1610361463.8886764, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.4772902, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143135,15 +143082,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 888.6764049530029, + "msecs": 477.29015350341797, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.403783798218, + "relativeCreated": 14469.781875610352, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143154,26 +143101,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,888", - "created": 1610361463.888831, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.4774346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 888.8309001922607, + "msecs": 477.4346351623535, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.558279037476, + "relativeCreated": 14469.926357269287, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143181,26 +143128,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:43,888", - "created": 1610361463.888895, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.477503, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 888.8950347900391, + "msecs": 477.50306129455566, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.622413635254, + "relativeCreated": 14469.99478340149, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143211,26 +143158,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,888", - "created": 1610361463.8889806, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.47759, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 888.9806270599365, + "msecs": 477.59008407592773, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.708005905151, + "relativeCreated": 14470.081806182861, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143238,8 +143185,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,889", - "created": 1610361463.8892508, + "asctime": "2021-01-14 00:26:26,477", + "created": 1610580386.4778633, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143249,15 +143196,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 889.2507553100586, + "msecs": 477.8633117675781, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14452.978134155273, + "relativeCreated": 14470.355033874512, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143265,8 +143212,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.8974113, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.486061, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143276,15 +143223,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 897.4113464355469, + "msecs": 486.06109619140625, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.138725280762, + "relativeCreated": 14478.55281829834, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143292,8 +143239,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.897526, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4862034, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143303,15 +143250,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 897.5260257720947, + "msecs": 486.2034320831299, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.25340461731, + "relativeCreated": 14478.695154190063, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143320,8 +143267,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.8975782, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.48626, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143331,15 +143278,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 897.578239440918, + "msecs": 486.25993728637695, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.305618286133, + "relativeCreated": 14478.75165939331, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143347,8 +143294,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.897642, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4863267, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143358,15 +143305,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 897.6418972015381, + "msecs": 486.3266944885254, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.369276046753, + "relativeCreated": 14478.818416595459, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143375,8 +143322,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.8976972, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4863756, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143386,15 +143333,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 897.6972103118896, + "msecs": 486.3755702972412, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.424589157104, + "relativeCreated": 14478.867292404175, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143402,8 +143349,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.8977628, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4864428, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143413,15 +143360,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 897.7627754211426, + "msecs": 486.44280433654785, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.490154266357, + "relativeCreated": 14478.934526443481, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143430,8 +143377,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.897805, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4864874, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143441,15 +143388,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 897.8049755096436, + "msecs": 486.48738861083984, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.532354354858, + "relativeCreated": 14478.979110717773, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143457,8 +143404,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.897864, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.486548, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143468,15 +143415,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 897.8641033172607, + "msecs": 486.54794692993164, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.591482162476, + "relativeCreated": 14479.039669036865, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143485,8 +143432,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.897911, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4866064, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143496,15 +143443,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 897.9110717773438, + "msecs": 486.6063594818115, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.638450622559, + "relativeCreated": 14479.098081588745, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143512,8 +143459,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,897", - "created": 1610361463.8979697, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4866703, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143523,15 +143470,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 897.9697227478027, + "msecs": 486.67025566101074, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.697101593018, + "relativeCreated": 14479.161977767944, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143540,8 +143487,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,898", - "created": 1610361463.8980112, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4867144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143551,15 +143498,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 898.0112075805664, + "msecs": 486.71436309814453, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.738586425781, + "relativeCreated": 14479.206085205078, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143567,8 +143514,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:43,898", - "created": 1610361463.8980923, + "asctime": "2021-01-14 00:26:26,486", + "created": 1610580386.4868014, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143578,15 +143525,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 898.0922698974609, + "msecs": 486.8013858795166, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14461.819648742676, + "relativeCreated": 14479.29310798645, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143594,8 +143541,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:43,899", - "created": 1610361463.8990371, + "asctime": "2021-01-14 00:26:26,487", + "created": 1610580386.487755, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143605,15 +143552,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 899.0371227264404, + "msecs": 487.75506019592285, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14462.764501571655, + "relativeCreated": 14480.246782302856, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143621,8 +143568,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,899", - "created": 1610361463.8991644, + "asctime": "2021-01-14 00:26:26,487", + "created": 1610580386.4878938, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143632,15 +143579,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 899.1644382476807, + "msecs": 487.89381980895996, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14462.891817092896, + "relativeCreated": 14480.385541915894, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143649,8 +143596,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,899", - "created": 1610361463.8992188, + "asctime": "2021-01-14 00:26:26,487", + "created": 1610580386.4879515, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143660,15 +143607,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 899.2187976837158, + "msecs": 487.95151710510254, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14462.94617652893, + "relativeCreated": 14480.443239212036, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143676,8 +143623,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:43,899", - "created": 1610361463.8993125, + "asctime": "2021-01-14 00:26:26,488", + "created": 1610580386.4880476, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143687,15 +143634,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 899.3124961853027, + "msecs": 488.04759979248047, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14463.039875030518, + "relativeCreated": 14480.539321899414, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143706,26 +143653,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:43,899", - "created": 1610361463.8994493, + "asctime": "2021-01-14 00:26:26,488", + "created": 1610580386.4881926, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 899.449348449707, + "msecs": 488.1925582885742, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14463.176727294922, + "relativeCreated": 14480.684280395508, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -143733,45 +143680,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:43,899", - "created": 1610361463.8995116, + "asctime": "2021-01-14 00:26:26,488", + "created": 1610580386.4882581, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 899.5115756988525, + "msecs": 488.25812339782715, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14463.238954544067, + "relativeCreated": 14480.74984550476, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" } ], - "msecs": 221.5099334716797, + "msecs": 810.1873397827148, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14785.237312316895, + "relativeCreated": 14802.679061889648, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.32199835777282715 + "time_consumption": 0.3219292163848877 }, { "args": [], - "asctime": "2021-01-11 11:37:44,222", - "created": 1610361464.2222433, + "asctime": "2021-01-14 00:26:26,810", + "created": 1610580386.810922, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -143789,8 +143736,8 @@ "None", "0" ], - "asctime": "2021-01-11 11:37:44,222", - "created": 1610361464.222036, + "asctime": "2021-01-14 00:26:26,810", + "created": 1610580386.8107376, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143800,34 +143747,34 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=None and DID=0", "module": "__init__", - "msecs": 222.03588485717773, + "msecs": 810.7376098632812, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14785.763263702393, + "relativeCreated": 14803.229331970215, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 222.2433090209961, + "msecs": 810.9219074249268, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14785.970687866211, + "relativeCreated": 14803.41362953186, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00020742416381835938 + "time_consumption": 0.0001842975616455078 }, { "args": [], - "asctime": "2021-01-11 11:37:44,423", - "created": 1610361464.423845, + "asctime": "2021-01-14 00:26:27,012", + "created": 1610580387.012533, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -143846,26 +143793,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:44,222", - "created": 1610361464.2225888, + "asctime": "2021-01-14 00:26:26,811", + "created": 1610580386.8112924, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 222.58877754211426, + "msecs": 811.2924098968506, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14786.31615638733, + "relativeCreated": 14803.784132003784, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -143873,8 +143820,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:44,223", - "created": 1610361464.2234352, + "asctime": "2021-01-14 00:26:26,812", + "created": 1610580386.8121638, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143884,15 +143831,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 223.4351634979248, + "msecs": 812.1638298034668, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14787.16254234314, + "relativeCreated": 14804.6555519104, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143900,8 +143847,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:44,231", - "created": 1610361464.2319007, + "asctime": "2021-01-14 00:26:26,820", + "created": 1610580386.8206298, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -143911,15 +143858,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 231.90069198608398, + "msecs": 820.6298351287842, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14795.628070831299, + "relativeCreated": 14813.121557235718, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143927,8 +143874,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,232", - "created": 1610361464.2321835, + "asctime": "2021-01-14 00:26:26,820", + "created": 1610580386.820899, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143938,15 +143885,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 232.18345642089844, + "msecs": 820.8990097045898, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14795.910835266113, + "relativeCreated": 14813.390731811523, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143955,8 +143902,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:44,232", - "created": 1610361464.2323482, + "asctime": "2021-01-14 00:26:26,821", + "created": 1610580386.82105, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143966,15 +143913,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 232.34820365905762, + "msecs": 821.0499286651611, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14796.075582504272, + "relativeCreated": 14813.541650772095, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -143982,8 +143929,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,232", - "created": 1610361464.2325482, + "asctime": "2021-01-14 00:26:26,821", + "created": 1610580386.8212917, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -143993,15 +143940,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 232.54823684692383, + "msecs": 821.2916851043701, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14796.275615692139, + "relativeCreated": 14813.783407211304, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144010,8 +143957,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,232", - "created": 1610361464.2326899, + "asctime": "2021-01-14 00:26:26,821", + "created": 1610580386.8214383, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144021,15 +143968,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 232.68985748291016, + "msecs": 821.4383125305176, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14796.417236328125, + "relativeCreated": 14813.930034637451, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144037,8 +143984,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,232", - "created": 1610361464.2329664, + "asctime": "2021-01-14 00:26:26,821", + "created": 1610580386.8216217, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144048,15 +143995,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 232.96642303466797, + "msecs": 821.6216564178467, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14796.693801879883, + "relativeCreated": 14814.11337852478, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144065,8 +144012,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,233", - "created": 1610361464.2331066, + "asctime": "2021-01-14 00:26:26,821", + "created": 1610580386.8217447, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144076,15 +144023,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 233.1066131591797, + "msecs": 821.7446804046631, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14796.833992004395, + "relativeCreated": 14814.236402511597, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144092,8 +144039,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,233", - "created": 1610361464.233297, + "asctime": "2021-01-14 00:26:26,821", + "created": 1610580386.8219361, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144103,15 +144050,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 233.29710960388184, + "msecs": 821.9361305236816, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14797.024488449097, + "relativeCreated": 14814.427852630615, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144120,8 +144067,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,233", - "created": 1610361464.23343, + "asctime": "2021-01-14 00:26:26,822", + "created": 1610580386.8220584, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144131,15 +144078,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 233.4299087524414, + "msecs": 822.0584392547607, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14797.157287597656, + "relativeCreated": 14814.550161361694, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144147,8 +144094,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,233", - "created": 1610361464.2336023, + "asctime": "2021-01-14 00:26:26,822", + "created": 1610580386.8222136, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144158,15 +144105,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 233.60228538513184, + "msecs": 822.2136497497559, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14797.329664230347, + "relativeCreated": 14814.70537185669, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144175,8 +144122,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,233", - "created": 1610361464.2337697, + "asctime": "2021-01-14 00:26:26,822", + "created": 1610580386.8223605, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144186,15 +144133,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 233.76965522766113, + "msecs": 822.3605155944824, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14797.497034072876, + "relativeCreated": 14814.852237701416, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144202,8 +144149,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:44,234", - "created": 1610361464.2340045, + "asctime": "2021-01-14 00:26:26,822", + "created": 1610580386.8226213, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -144213,15 +144160,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 234.00449752807617, + "msecs": 822.6213455200195, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14797.731876373291, + "relativeCreated": 14815.113067626953, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144229,8 +144176,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:44,234", - "created": 1610361464.2349482, + "asctime": "2021-01-14 00:26:26,823", + "created": 1610580386.8235106, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -144240,15 +144187,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 234.94815826416016, + "msecs": 823.5106468200684, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14798.675537109375, + "relativeCreated": 14816.002368927002, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144256,8 +144203,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,235", - "created": 1610361464.2351909, + "asctime": "2021-01-14 00:26:26,823", + "created": 1610580386.8237214, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144267,15 +144214,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 235.19086837768555, + "msecs": 823.7214088439941, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14798.9182472229, + "relativeCreated": 14816.213130950928, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144284,8 +144231,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:44,235", - "created": 1610361464.235355, + "asctime": "2021-01-14 00:26:26,823", + "created": 1610580386.8238406, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144295,15 +144242,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 235.35490036010742, + "msecs": 823.8406181335449, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14799.082279205322, + "relativeCreated": 14816.332340240479, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144311,8 +144258,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:44,235", - "created": 1610361464.2356443, + "asctime": "2021-01-14 00:26:26,824", + "created": 1610580386.8241327, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144322,15 +144269,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 235.64434051513672, + "msecs": 824.1326808929443, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14799.371719360352, + "relativeCreated": 14816.624402999878, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144341,26 +144288,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:44,236", - "created": 1610361464.2360215, + "asctime": "2021-01-14 00:26:26,824", + "created": 1610580386.824517, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 236.0215187072754, + "msecs": 824.517011642456, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14799.74889755249, + "relativeCreated": 14817.00873374939, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144368,26 +144315,26 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:44,236", - "created": 1610361464.2362115, + "asctime": "2021-01-14 00:26:26,824", + "created": 1610580386.824686, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 236.21153831481934, + "msecs": 824.6860504150391, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14799.938917160034, + "relativeCreated": 14817.177772521973, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144398,26 +144345,26 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:44,236", - "created": 1610361464.2364507, + "asctime": "2021-01-14 00:26:26,824", + "created": 1610580386.8248894, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 236.4506721496582, + "msecs": 824.8894214630127, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14800.178050994873, + "relativeCreated": 14817.381143569946, "stack_info": null, - "thread": 139975911786240, + "thread": 140580889802496, "threadName": "Thread-23" }, { @@ -144425,8 +144372,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:44,237", - "created": 1610361464.237423, + "asctime": "2021-01-14 00:26:26,825", + "created": 1610580386.8255572, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -144436,15 +144383,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 237.42294311523438, + "msecs": 825.5572319030762, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14801.15032196045, + "relativeCreated": 14818.04895401001, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144452,8 +144399,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:44,245", - "created": 1610361464.2457461, + "asctime": "2021-01-14 00:26:26,833", + "created": 1610580386.833927, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -144463,15 +144410,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 245.74613571166992, + "msecs": 833.9269161224365, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14809.473514556885, + "relativeCreated": 14826.41863822937, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144479,8 +144426,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,245", - "created": 1610361464.2459052, + "asctime": "2021-01-14 00:26:26,834", + "created": 1610580386.8342295, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144490,15 +144437,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 245.90516090393066, + "msecs": 834.2294692993164, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14809.632539749146, + "relativeCreated": 14826.72119140625, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144507,8 +144454,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:44,245", - "created": 1610361464.2459865, + "asctime": "2021-01-14 00:26:26,834", + "created": 1610580386.8343725, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144518,15 +144465,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 245.9864616394043, + "msecs": 834.3725204467773, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14809.71384048462, + "relativeCreated": 14826.864242553711, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144534,8 +144481,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.2460978, + "asctime": "2021-01-14 00:26:26,834", + "created": 1610580386.8345468, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144545,15 +144492,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 246.09780311584473, + "msecs": 834.5468044281006, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14809.82518196106, + "relativeCreated": 14827.038526535034, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144562,8 +144509,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.2461693, + "asctime": "2021-01-14 00:26:26,834", + "created": 1610580386.8346632, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144573,15 +144520,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 246.1693286895752, + "msecs": 834.6631526947021, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14809.89670753479, + "relativeCreated": 14827.154874801636, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144589,8 +144536,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.246274, + "asctime": "2021-01-14 00:26:26,834", + "created": 1610580386.8348331, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144600,15 +144547,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 246.27399444580078, + "msecs": 834.8331451416016, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14810.001373291016, + "relativeCreated": 14827.324867248535, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144617,8 +144564,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.2463412, + "asctime": "2021-01-14 00:26:26,835", + "created": 1610580386.8352692, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144628,15 +144575,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 246.34122848510742, + "msecs": 835.2692127227783, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14810.068607330322, + "relativeCreated": 14827.760934829712, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144644,8 +144591,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.2466283, + "asctime": "2021-01-14 00:26:26,835", + "created": 1610580386.8354297, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144655,15 +144602,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 246.6282844543457, + "msecs": 835.4296684265137, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14810.35566329956, + "relativeCreated": 14827.921390533447, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144672,8 +144619,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.246699, + "asctime": "2021-01-14 00:26:26,835", + "created": 1610580386.8355513, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144683,15 +144630,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 246.69909477233887, + "msecs": 835.5512619018555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14810.426473617554, + "relativeCreated": 14828.042984008789, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144699,8 +144646,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.2467968, + "asctime": "2021-01-14 00:26:26,835", + "created": 1610580386.8356986, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144710,15 +144657,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 246.7968463897705, + "msecs": 835.6986045837402, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14810.524225234985, + "relativeCreated": 14828.190326690674, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144727,8 +144674,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.2468636, + "asctime": "2021-01-14 00:26:26,835", + "created": 1610580386.8358052, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144738,15 +144685,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 246.86360359191895, + "msecs": 835.8051776885986, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14810.590982437134, + "relativeCreated": 14828.296899795532, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144754,8 +144701,8 @@ "comm-server:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:44,246", - "created": 1610361464.2469826, + "asctime": "2021-01-14 00:26:26,835", + "created": 1610580386.8359997, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -144765,15 +144712,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 246.98257446289062, + "msecs": 835.9997272491455, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14810.709953308105, + "relativeCreated": 14828.49144935608, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144781,8 +144728,8 @@ "comm-client:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:44,247", - "created": 1610361464.2478058, + "asctime": "2021-01-14 00:26:26,836", + "created": 1610580386.836856, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -144792,15 +144739,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 247.80583381652832, + "msecs": 836.8558883666992, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14811.533212661743, + "relativeCreated": 14829.347610473633, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144808,8 +144755,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,247", - "created": 1610361464.2479267, + "asctime": "2021-01-14 00:26:26,836", + "created": 1610580386.836988, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144819,15 +144766,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 247.9267120361328, + "msecs": 836.9879722595215, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14811.654090881348, + "relativeCreated": 14829.479694366455, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144836,8 +144783,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:44,248", - "created": 1610361464.2480092, + "asctime": "2021-01-14 00:26:26,837", + "created": 1610580386.8371305, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144847,15 +144794,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 248.00920486450195, + "msecs": 837.1305465698242, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14811.736583709717, + "relativeCreated": 14829.622268676758, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144863,8 +144810,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" ], - "asctime": "2021-01-11 11:37:44,248", - "created": 1610361464.2481291, + "asctime": "2021-01-14 00:26:26,837", + "created": 1610580386.8373144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -144874,15 +144821,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", "module": "stp", - "msecs": 248.12912940979004, + "msecs": 837.3143672943115, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14811.856508255005, + "relativeCreated": 14829.806089401245, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { @@ -144893,74 +144840,74 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:44,248", - "created": 1610361464.2483437, + "asctime": "2021-01-14 00:26:26,837", + "created": 1610580386.8376105, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 248.34370613098145, + "msecs": 837.6104831695557, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14812.071084976196, + "relativeCreated": 14830.10220527649, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,248", - "created": 1610361464.2484589, + "asctime": "2021-01-14 00:26:26,837", + "created": 1610580386.8377929, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 248.4588623046875, + "msecs": 837.7928733825684, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14812.186241149902, + "relativeCreated": 14830.284595489502, "stack_info": null, - "thread": 139975903393536, + "thread": 140580881409792, "threadName": "Thread-24" } ], - "msecs": 423.8450527191162, + "msecs": 12.532949447631836, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14987.572431564331, + "relativeCreated": 15005.024671554565, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.1753861904144287 + "time_consumption": 0.17474007606506348 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:44,424", - "created": 1610361464.424689, + "asctime": "2021-01-14 00:26:27,013", + "created": 1610580387.0134904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -144977,8 +144924,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:44,424", - "created": 1610361464.4243238, + "asctime": "2021-01-14 00:26:27,013", + "created": 1610580387.0130398, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -144988,15 +144935,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 424.32379722595215, + "msecs": 13.039827346801758, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14988.051176071167, + "relativeCreated": 15005.531549453735, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145005,8 +144952,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:44,424", - "created": 1610361464.424505, + "asctime": "2021-01-14 00:26:27,013", + "created": 1610580387.0132868, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -145016,37 +144963,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 424.50499534606934, + "msecs": 13.286828994750977, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14988.232374191284, + "relativeCreated": 15005.778551101685, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 424.68905448913574, + "msecs": 13.490438461303711, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14988.41643333435, + "relativeCreated": 15005.982160568237, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00018405914306640625 + "time_consumption": 0.00020360946655273438 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:44,425", - "created": 1610361464.4252968, + "asctime": "2021-01-14 00:26:27,014", + "created": 1610580387.0140324, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -145063,8 +145010,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:44,424", - "created": 1610361464.4249818, + "asctime": "2021-01-14 00:26:27,013", + "created": 1610580387.0137339, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -145074,15 +145021,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 424.98183250427246, + "msecs": 13.733863830566406, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14988.709211349487, + "relativeCreated": 15006.2255859375, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145091,8 +145038,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:44,425", - "created": 1610361464.4251368, + "asctime": "2021-01-14 00:26:27,013", + "created": 1610580387.0138826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -145102,41 +145049,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 425.1368045806885, + "msecs": 13.882637023925781, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14988.864183425903, + "relativeCreated": 15006.37435913086, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 425.2967834472656, + "msecs": 14.032363891601562, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14989.02416229248, + "relativeCreated": 15006.524085998535, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 0.00014972686767578125 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.5544874668121338, - "time_finished": "2021-01-11 11:37:44,425", - "time_start": "2021-01-11 11:37:43,870" + "time_consumption": 0.5540521144866943, + "time_finished": "2021-01-14 00:26:27,014", + "time_start": "2021-01-14 00:26:26,459" }, "_YhmzIE4lEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:48,018", - "created": 1610361468.0185113, + "asctime": "2021-01-14 00:26:30,604", + "created": 1610580390.6041534, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145147,19 +145094,19 @@ "message": "_YhmzIE4lEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 18.511295318603516, + "msecs": 604.1533946990967, "msg": "_YhmzIE4lEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18582.23867416382, + "relativeCreated": 18596.64511680603, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.0242033, + "asctime": "2021-01-14 00:26:30,612", + "created": 1610580390.6129918, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -145174,8 +145121,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:48,019", - "created": 1610361468.0194168, + "asctime": "2021-01-14 00:26:30,605", + "created": 1610580390.6050587, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145185,23 +145132,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 19.41680908203125, + "msecs": 605.0586700439453, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18583.144187927246, + "relativeCreated": 18597.55039215088, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:48,020", - "created": 1610361468.020237, + "asctime": "2021-01-14 00:26:30,605", + "created": 1610580390.6059062, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145211,23 +145158,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 20.236968994140625, + "msecs": 605.9062480926514, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18583.964347839355, + "relativeCreated": 18598.397970199585, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:48,020", - "created": 1610361468.0203655, + "asctime": "2021-01-14 00:26:30,606", + "created": 1610580390.606121, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145237,41 +145184,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 20.365476608276367, + "msecs": 606.1210632324219, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.09285545349, + "relativeCreated": 18598.612785339355, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:48,020", - "created": 1610361468.0205684, + "asctime": "2021-01-14 00:26:30,606", + "created": 1610580390.6064737, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 20.568370819091797, + "msecs": 606.4736843109131, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.295749664307, + "relativeCreated": 18598.965406417847, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145280,26 +145227,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:48,020", - "created": 1610361468.0206718, + "asctime": "2021-01-14 00:26:30,606", + "created": 1610580390.6066573, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 20.671844482421875, + "msecs": 606.6572666168213, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.399223327637, + "relativeCreated": 18599.148988723755, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145307,26 +145254,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:48,020", - "created": 1610361468.020818, + "asctime": "2021-01-14 00:26:30,606", + "created": 1610580390.6069186, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 20.817995071411133, + "msecs": 606.9185733795166, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.545373916626, + "relativeCreated": 18599.41029548645, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145334,26 +145281,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:48,020", - "created": 1610361468.0209115, + "asctime": "2021-01-14 00:26:30,607", + "created": 1610580390.6070783, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 20.911455154418945, + "msecs": 607.0783138275146, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.638833999634, + "relativeCreated": 18599.57003593445, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145361,26 +145308,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:48,020", - "created": 1610361468.0209963, + "asctime": "2021-01-14 00:26:30,607", + "created": 1610580390.6072314, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 20.9963321685791, + "msecs": 607.2313785552979, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.723711013794, + "relativeCreated": 18599.72310066223, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145388,26 +145335,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.021079, + "asctime": "2021-01-14 00:26:30,607", + "created": 1610580390.6073763, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 21.079063415527344, + "msecs": 607.3763370513916, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.806442260742, + "relativeCreated": 18599.868059158325, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145417,8 +145364,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.02117, + "asctime": "2021-01-14 00:26:30,607", + "created": 1610580390.607552, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145428,15 +145375,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 21.16990089416504, + "msecs": 607.5520515441895, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18584.89727973938, + "relativeCreated": 18600.043773651123, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145446,8 +145393,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.021278, + "asctime": "2021-01-14 00:26:30,607", + "created": 1610580390.6077318, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145457,15 +145404,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 21.277904510498047, + "msecs": 607.731819152832, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.005283355713, + "relativeCreated": 18600.223541259766, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145475,8 +145422,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.021368, + "asctime": "2021-01-14 00:26:30,607", + "created": 1610580390.6079009, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145486,15 +145433,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 21.368026733398438, + "msecs": 607.900857925415, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.095405578613, + "relativeCreated": 18600.39258003235, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145504,8 +145451,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.021455, + "asctime": "2021-01-14 00:26:30,608", + "created": 1610580390.6080594, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145515,41 +145462,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 21.455049514770508, + "msecs": 608.0594062805176, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.182428359985, + "relativeCreated": 18600.55112838745, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.0215328, + "asctime": "2021-01-14 00:26:30,608", + "created": 1610580390.6081994, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 21.532773971557617, + "msecs": 608.1993579864502, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.260152816772, + "relativeCreated": 18600.691080093384, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145558,26 +145505,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.0216198, + "asctime": "2021-01-14 00:26:30,608", + "created": 1610580390.6083574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 21.619796752929688, + "msecs": 608.3574295043945, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.347175598145, + "relativeCreated": 18600.849151611328, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145585,26 +145532,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.0217192, + "asctime": "2021-01-14 00:26:30,608", + "created": 1610580390.6085556, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 21.71921730041504, + "msecs": 608.5555553436279, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.44659614563, + "relativeCreated": 18601.04727745056, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145612,26 +145559,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.0218077, + "asctime": "2021-01-14 00:26:30,608", + "created": 1610580390.608704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 21.80767059326172, + "msecs": 608.7040901184082, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.535049438477, + "relativeCreated": 18601.19581222534, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145641,8 +145588,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.021893, + "asctime": "2021-01-14 00:26:30,608", + "created": 1610580390.6088567, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145652,15 +145599,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 21.893024444580078, + "msecs": 608.8566780090332, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.620403289795, + "relativeCreated": 18601.348400115967, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145670,8 +145617,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:48,021", - "created": 1610361468.021987, + "asctime": "2021-01-14 00:26:30,609", + "created": 1610580390.6090128, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145681,15 +145628,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 21.986961364746094, + "msecs": 609.0128421783447, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.71434020996, + "relativeCreated": 18601.50456428528, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145698,26 +145645,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0220807, + "asctime": "2021-01-14 00:26:30,609", + "created": 1610580390.6092067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 22.080659866333008, + "msecs": 609.2066764831543, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.808038711548, + "relativeCreated": 18601.698398590088, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145726,26 +145673,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0221617, + "asctime": "2021-01-14 00:26:30,609", + "created": 1610580390.6093514, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 22.16172218322754, + "msecs": 609.351396560669, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.889101028442, + "relativeCreated": 18601.843118667603, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145754,78 +145701,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0222394, + "asctime": "2021-01-14 00:26:30,609", + "created": 1610580390.6094906, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 22.23944664001465, + "msecs": 609.4906330108643, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18585.96682548523, + "relativeCreated": 18601.982355117798, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.022319, + "asctime": "2021-01-14 00:26:30,609", + "created": 1610580390.6096342, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 22.31907844543457, + "msecs": 609.6341609954834, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.04645729065, + "relativeCreated": 18602.125883102417, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0224798, + "asctime": "2021-01-14 00:26:30,609", + "created": 1610580390.609935, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 22.479772567749023, + "msecs": 609.9350452423096, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.207151412964, + "relativeCreated": 18602.426767349243, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145834,26 +145781,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0225797, + "asctime": "2021-01-14 00:26:30,610", + "created": 1610580390.610094, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 22.579669952392578, + "msecs": 610.0940704345703, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.307048797607, + "relativeCreated": 18602.585792541504, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145861,26 +145808,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0226934, + "asctime": "2021-01-14 00:26:30,610", + "created": 1610580390.6102943, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 22.693395614624023, + "msecs": 610.2943420410156, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.42077445984, + "relativeCreated": 18602.78606414795, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145888,26 +145835,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0227778, + "asctime": "2021-01-14 00:26:30,610", + "created": 1610580390.6104515, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 22.777795791625977, + "msecs": 610.4514598846436, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.50517463684, + "relativeCreated": 18602.943181991577, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145915,26 +145862,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0228639, + "asctime": "2021-01-14 00:26:30,610", + "created": 1610580390.610603, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 22.86386489868164, + "msecs": 610.6030941009521, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.591243743896, + "relativeCreated": 18603.094816207886, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145942,26 +145889,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:48,022", - "created": 1610361468.0229437, + "asctime": "2021-01-14 00:26:30,610", + "created": 1610580390.6107461, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 22.943735122680664, + "msecs": 610.7461452484131, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.671113967896, + "relativeCreated": 18603.237867355347, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -145971,8 +145918,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0230277, + "asctime": "2021-01-14 00:26:30,610", + "created": 1610580390.6108983, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -145982,15 +145929,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 23.027658462524414, + "msecs": 610.8982563018799, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.75503730774, + "relativeCreated": 18603.389978408813, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146000,8 +145947,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0231216, + "asctime": "2021-01-14 00:26:30,611", + "created": 1610580390.611066, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146011,15 +145958,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 23.12159538269043, + "msecs": 611.0661029815674, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.848974227905, + "relativeCreated": 18603.5578250885, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146029,8 +145976,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0232136, + "asctime": "2021-01-14 00:26:30,611", + "created": 1610580390.6112287, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146040,15 +145987,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 23.213624954223633, + "msecs": 611.2287044525146, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18586.94100379944, + "relativeCreated": 18603.72042655945, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146058,8 +146005,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0232987, + "asctime": "2021-01-14 00:26:30,611", + "created": 1610580390.6113791, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146069,41 +146016,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 23.29874038696289, + "msecs": 611.3791465759277, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.026119232178, + "relativeCreated": 18603.87086868286, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.023374, + "asctime": "2021-01-14 00:26:30,611", + "created": 1610580390.6115146, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 23.374080657958984, + "msecs": 611.5145683288574, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.101459503174, + "relativeCreated": 18604.00629043579, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146112,26 +146059,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0234575, + "asctime": "2021-01-14 00:26:30,611", + "created": 1610580390.6116662, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 23.45752716064453, + "msecs": 611.666202545166, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.18490600586, + "relativeCreated": 18604.1579246521, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146139,26 +146086,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0235498, + "asctime": "2021-01-14 00:26:30,611", + "created": 1610580390.611829, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 23.549795150756836, + "msecs": 611.8290424346924, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.27717399597, + "relativeCreated": 18604.320764541626, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146166,26 +146113,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0236309, + "asctime": "2021-01-14 00:26:30,611", + "created": 1610580390.6119719, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 23.630857467651367, + "msecs": 611.9718551635742, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.358236312866, + "relativeCreated": 18604.463577270508, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146195,8 +146142,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0237124, + "asctime": "2021-01-14 00:26:30,612", + "created": 1610580390.6121175, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146206,15 +146153,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 23.7123966217041, + "msecs": 612.1175289154053, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.43977546692, + "relativeCreated": 18604.60925102234, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146224,8 +146171,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.0238023, + "asctime": "2021-01-14 00:26:30,612", + "created": 1610580390.6122768, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146235,15 +146182,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 23.80228042602539, + "msecs": 612.2767925262451, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.52965927124, + "relativeCreated": 18604.76851463318, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146252,26 +146199,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.02389, + "asctime": "2021-01-14 00:26:30,612", + "created": 1610580390.612434, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 23.890018463134766, + "msecs": 612.433910369873, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.61739730835, + "relativeCreated": 18604.925632476807, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146280,26 +146227,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:48,023", - "created": 1610361468.023969, + "asctime": "2021-01-14 00:26:30,612", + "created": 1610580390.612574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 23.968935012817383, + "msecs": 612.5741004943848, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.696313858032, + "relativeCreated": 18605.06582260132, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146308,71 +146255,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.024045, + "asctime": "2021-01-14 00:26:30,612", + "created": 1610580390.6127114, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 24.04499053955078, + "msecs": 612.7114295959473, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.772369384766, + "relativeCreated": 18605.20315170288, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.0241241, + "asctime": "2021-01-14 00:26:30,612", + "created": 1610580390.6128514, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 24.1241455078125, + "msecs": 612.8513813018799, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.851524353027, + "relativeCreated": 18605.343103408813, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 24.20330047607422, + "msecs": 612.9918098449707, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18587.93067932129, + "relativeCreated": 18605.483531951904, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 7.915496826171875e-05 + "time_consumption": 0.0001404285430908203 }, { "args": [], - "asctime": "2021-01-11 11:37:48,368", - "created": 1610361468.3683846, + "asctime": "2021-01-14 00:26:30,956", + "created": 1610580390.9569342, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -146387,8 +146334,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.0243697, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.6132069, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146398,23 +146345,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 24.36971664428711, + "msecs": 613.2068634033203, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18588.097095489502, + "relativeCreated": 18605.698585510254, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.0244496, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.6132505, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146424,41 +146371,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 24.449586868286133, + "msecs": 613.2504940032959, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18588.1769657135, + "relativeCreated": 18605.74221611023, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.0245337, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.6132932, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 24.533748626708984, + "msecs": 613.2931709289551, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18588.261127471924, + "relativeCreated": 18605.78489303589, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146469,34 +146416,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.024674, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.613378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 24.673938751220703, + "msecs": 613.3780479431152, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18588.401317596436, + "relativeCreated": 18605.86977005005, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:48,024", - "created": 1610361468.0249407, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.6135197, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146506,23 +146453,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 24.94072914123535, + "msecs": 613.5196685791016, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18588.66810798645, + "relativeCreated": 18606.011390686035, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:48,025", - "created": 1610361468.0250657, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.6135678, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146532,41 +146479,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 25.06566047668457, + "msecs": 613.5678291320801, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18588.7930393219, + "relativeCreated": 18606.059551239014, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:48,025", - "created": 1610361468.0251596, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.6136634, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 25.159597396850586, + "msecs": 613.6634349822998, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18588.886976242065, + "relativeCreated": 18606.155157089233, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -146574,8 +146521,8 @@ "comm-client:", "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" ], - "asctime": "2021-01-11 11:37:48,025", - "created": 1610361468.025388, + "asctime": "2021-01-14 00:26:30,613", + "created": 1610580390.6138785, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146585,15 +146532,15 @@ "lineno": 284, "message": "comm-client: TX -> (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", "module": "__init__", - "msecs": 25.388002395629883, + "msecs": 613.8784885406494, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18589.115381240845, + "relativeCreated": 18606.370210647583, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146601,8 +146548,8 @@ "comm-server:", "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" ], - "asctime": "2021-01-11 11:37:48,028", - "created": 1610361468.028373, + "asctime": "2021-01-14 00:26:30,616", + "created": 1610580390.6166651, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146612,15 +146559,15 @@ "lineno": 414, "message": "comm-server: RX <- (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", "module": "__init__", - "msecs": 28.373003005981445, + "msecs": 616.6651248931885, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18592.100381851196, + "relativeCreated": 18609.156847000122, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146628,8 +146575,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,028", - "created": 1610361468.0285552, + "asctime": "2021-01-14 00:26:30,616", + "created": 1610580390.6167388, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146639,15 +146586,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 28.55515480041504, + "msecs": 616.7387962341309, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18592.28253364563, + "relativeCreated": 18609.230518341064, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146656,8 +146603,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:48,028", - "created": 1610361468.0286503, + "asctime": "2021-01-14 00:26:30,616", + "created": 1610580390.6167903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146667,15 +146614,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 28.650283813476562, + "msecs": 616.7902946472168, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18592.37766265869, + "relativeCreated": 18609.28201675415, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146683,8 +146630,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,028", - "created": 1610361468.028797, + "asctime": "2021-01-14 00:26:30,616", + "created": 1610580390.6168623, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146694,15 +146641,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 28.796911239624023, + "msecs": 616.8622970581055, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18592.52429008484, + "relativeCreated": 18609.35401916504, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146711,8 +146658,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:48,028", - "created": 1610361468.0288787, + "asctime": "2021-01-14 00:26:30,616", + "created": 1610580390.6169088, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146722,15 +146669,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 28.87868881225586, + "msecs": 616.9087886810303, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18592.60606765747, + "relativeCreated": 18609.400510787964, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146738,8 +146685,8 @@ "STP:", "(17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13" ], - "asctime": "2021-01-11 11:37:48,028", - "created": 1610361468.0289807, + "asctime": "2021-01-14 00:26:30,616", + "created": 1610580390.6169634, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146749,15 +146696,15 @@ "lineno": 148, "message": "STP: message identified - (17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13", "module": "stp", - "msecs": 28.980731964111328, + "msecs": 616.9633865356445, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18592.708110809326, + "relativeCreated": 18609.455108642578, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146768,26 +146715,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:48,029", - "created": 1610361468.0292249, + "asctime": "2021-01-14 00:26:30,617", + "created": 1610580390.617088, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 29.224872589111328, + "msecs": 617.0880794525146, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18592.952251434326, + "relativeCreated": 18609.57980155945, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146795,26 +146742,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:48,029", - "created": 1610361468.0293293, + "asctime": "2021-01-14 00:26:30,617", + "created": 1610580390.6171553, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 29.329299926757812, + "msecs": 617.1553134918213, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18593.056678771973, + "relativeCreated": 18609.647035598755, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146825,26 +146772,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:48,029", - "created": 1610361468.0294774, + "asctime": "2021-01-14 00:26:30,617", + "created": 1610580390.6172345, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 29.477357864379883, + "msecs": 617.234468460083, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18593.204736709595, + "relativeCreated": 18609.726190567017, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -146852,8 +146799,8 @@ "comm-server:", "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" ], - "asctime": "2021-01-11 11:37:48,029", - "created": 1610361468.0298321, + "asctime": "2021-01-14 00:26:30,617", + "created": 1610580390.617504, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146863,15 +146810,15 @@ "lineno": 284, "message": "comm-server: TX -> (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", "module": "__init__", - "msecs": 29.832124710083008, + "msecs": 617.5038814544678, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18593.559503555298, + "relativeCreated": 18609.9956035614, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -146879,8 +146826,8 @@ "comm-client:", "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" ], - "asctime": "2021-01-11 11:37:48,032", - "created": 1610361468.0327334, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.6203814, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -146890,15 +146837,15 @@ "lineno": 414, "message": "comm-client: RX <- (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", "module": "__init__", - "msecs": 32.73344039916992, + "msecs": 620.3813552856445, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18596.460819244385, + "relativeCreated": 18612.873077392578, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -146906,8 +146853,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,032", - "created": 1610361468.0329163, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.6205058, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146917,15 +146864,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 32.91630744934082, + "msecs": 620.5058097839355, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18596.643686294556, + "relativeCreated": 18612.99753189087, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -146934,8 +146881,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:48,032", - "created": 1610361468.032989, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.6205683, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146945,15 +146892,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 32.9890251159668, + "msecs": 620.5682754516602, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18596.71640396118, + "relativeCreated": 18613.059997558594, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -146961,8 +146908,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,033", - "created": 1610361468.0330882, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.620642, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -146972,15 +146919,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 33.08820724487305, + "msecs": 620.6419467926025, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18596.815586090088, + "relativeCreated": 18613.133668899536, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -146989,8 +146936,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:48,033", - "created": 1610361468.0331495, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.6206884, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147000,15 +146947,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 33.14948081970215, + "msecs": 620.6884384155273, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18596.876859664917, + "relativeCreated": 18613.18016052246, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147016,8 +146963,8 @@ "STP:", "(17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12" ], - "asctime": "2021-01-11 11:37:48,033", - "created": 1610361468.0332272, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.6207435, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147027,15 +146974,15 @@ "lineno": 148, "message": "STP: message identified - (17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12", "module": "stp", - "msecs": 33.22720527648926, + "msecs": 620.7435131072998, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18596.954584121704, + "relativeCreated": 18613.235235214233, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147046,26 +146993,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:48,033", - "created": 1610361468.033412, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.6208892, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 33.41197967529297, + "msecs": 620.8891868591309, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18597.139358520508, + "relativeCreated": 18613.380908966064, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147073,45 +147020,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:48,033", - "created": 1610361468.033491, + "asctime": "2021-01-14 00:26:30,620", + "created": 1610580390.620948, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 33.490896224975586, + "msecs": 620.948076248169, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18597.21827507019, + "relativeCreated": 18613.439798355103, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" } ], - "msecs": 368.38459968566895, + "msecs": 956.9342136383057, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18932.111978530884, + "relativeCreated": 18949.42593574524, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.33489370346069336 + "time_consumption": 0.3359861373901367 }, { "args": [], - "asctime": "2021-01-11 11:37:48,570", - "created": 1610361468.5700872, + "asctime": "2021-01-14 00:26:31,158", + "created": 1610580391.158686, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -147130,26 +147077,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:48,368", - "created": 1610361468.3689885, + "asctime": "2021-01-14 00:26:30,957", + "created": 1610580390.957628, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 368.9885139465332, + "msecs": 957.6280117034912, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18932.715892791748, + "relativeCreated": 18950.119733810425, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -147157,8 +147104,8 @@ "comm-client:", "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-11 11:37:48,369", - "created": 1610361468.3697708, + "asctime": "2021-01-14 00:26:30,958", + "created": 1610580390.9584804, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -147168,15 +147115,15 @@ "lineno": 284, "message": "comm-client: TX -> (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 369.77076530456543, + "msecs": 958.4803581237793, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18933.49814414978, + "relativeCreated": 18950.972080230713, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -147184,8 +147131,8 @@ "comm-server:", "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-11 11:37:48,376", - "created": 1610361468.3763528, + "asctime": "2021-01-14 00:26:30,964", + "created": 1610580390.9646628, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -147195,15 +147142,15 @@ "lineno": 414, "message": "comm-server: RX <- (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 376.35278701782227, + "msecs": 964.6627902984619, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18940.080165863037, + "relativeCreated": 18957.154512405396, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -147211,8 +147158,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,376", - "created": 1610361468.3766243, + "asctime": "2021-01-14 00:26:30,964", + "created": 1610580390.964967, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147222,15 +147169,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 376.62434577941895, + "msecs": 964.9670124053955, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18940.351724624634, + "relativeCreated": 18957.45873451233, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -147239,8 +147186,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:48,376", - "created": 1610361468.376843, + "asctime": "2021-01-14 00:26:30,965", + "created": 1610580390.965173, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147250,15 +147197,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 376.8429756164551, + "msecs": 965.1730060577393, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18940.57035446167, + "relativeCreated": 18957.664728164673, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -147266,8 +147213,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,377", - "created": 1610361468.3772726, + "asctime": "2021-01-14 00:26:30,965", + "created": 1610580390.9655435, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147277,15 +147224,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 377.2726058959961, + "msecs": 965.5435085296631, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18940.99998474121, + "relativeCreated": 18958.035230636597, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -147294,8 +147241,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:48,377", - "created": 1610361468.377428, + "asctime": "2021-01-14 00:26:30,965", + "created": 1610580390.9656916, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147305,15 +147252,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 377.4280548095703, + "msecs": 965.6915664672852, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18941.155433654785, + "relativeCreated": 18958.18328857422, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -147321,8 +147268,8 @@ "STP:", "(41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d" ], - "asctime": "2021-01-11 11:37:48,377", - "created": 1610361468.3776352, + "asctime": "2021-01-14 00:26:30,965", + "created": 1610580390.9659023, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147332,15 +147279,15 @@ "lineno": 148, "message": "STP: message identified - (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", "module": "stp", - "msecs": 377.63524055480957, + "msecs": 965.9023284912109, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18941.362619400024, + "relativeCreated": 18958.394050598145, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { @@ -147351,74 +147298,74 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:48,378", - "created": 1610361468.3781443, + "asctime": "2021-01-14 00:26:30,966", + "created": 1610580390.966446, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 378.1442642211914, + "msecs": 966.4459228515625, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18941.871643066406, + "relativeCreated": 18958.937644958496, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:48,378", - "created": 1610361468.3783658, + "asctime": "2021-01-14 00:26:30,966", + "created": 1610580390.9666793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 378.36575508117676, + "msecs": 966.6793346405029, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18942.09313392639, + "relativeCreated": 18959.171056747437, "stack_info": null, - "thread": 139974989047552, + "thread": 140579967063808, "threadName": "Thread-35" } ], - "msecs": 570.087194442749, + "msecs": 158.68592262268066, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19133.814573287964, + "relativeCreated": 19151.177644729614, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.19172143936157227 + "time_consumption": 0.19200658798217773 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:48,570", - "created": 1610361468.5708692, + "asctime": "2021-01-14 00:26:31,159", + "created": 1610580391.1592727, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147435,8 +147382,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,570", - "created": 1610361468.5705178, + "asctime": "2021-01-14 00:26:31,159", + "created": 1610580391.1590266, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147446,15 +147393,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 570.5177783966064, + "msecs": 159.0266227722168, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19134.24515724182, + "relativeCreated": 19151.51834487915, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -147463,8 +147410,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,570", - "created": 1610361468.570713, + "asctime": "2021-01-14 00:26:31,159", + "created": 1610580391.1591504, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147474,37 +147421,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 570.7130432128906, + "msecs": 159.1503620147705, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19134.440422058105, + "relativeCreated": 19151.642084121704, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 570.8692073822021, + "msecs": 159.2726707458496, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19134.596586227417, + "relativeCreated": 19151.764392852783, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015616416931152344 + "time_consumption": 0.00012230873107910156 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:48,571", - "created": 1610361468.5714178, + "asctime": "2021-01-14 00:26:31,159", + "created": 1610580391.1598969, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147521,8 +147468,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:48,571", - "created": 1610361468.5711074, + "asctime": "2021-01-14 00:26:31,159", + "created": 1610580391.1594586, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147532,15 +147479,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 571.1073875427246, + "msecs": 159.45863723754883, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19134.83476638794, + "relativeCreated": 19151.950359344482, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -147549,8 +147496,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:48,571", - "created": 1610361468.5712688, + "asctime": "2021-01-14 00:26:31,159", + "created": 1610580391.1595862, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147560,34 +147507,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 571.2687969207764, + "msecs": 159.58619117736816, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19134.99617576599, + "relativeCreated": 19152.0779132843, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 571.4178085327148, + "msecs": 159.8968505859375, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19135.14518737793, + "relativeCreated": 19152.38857269287, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014901161193847656 + "time_consumption": 0.00031065940856933594 }, { "args": [], - "asctime": "2021-01-11 11:37:48,772", - "created": 1610361468.7729514, + "asctime": "2021-01-14 00:26:31,362", + "created": 1610580391.3620121, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -147606,26 +147553,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:48,571", - "created": 1610361468.5717554, + "asctime": "2021-01-14 00:26:31,160", + "created": 1610580391.1606183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 571.7554092407227, + "msecs": 160.61830520629883, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19135.482788085938, + "relativeCreated": 19153.110027313232, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -147633,8 +147580,8 @@ "comm-server:", "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" ], - "asctime": "2021-01-11 11:37:48,572", - "created": 1610361468.5725052, + "asctime": "2021-01-14 00:26:31,162", + "created": 1610580391.162233, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -147644,15 +147591,15 @@ "lineno": 284, "message": "comm-server: TX -> (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", "module": "__init__", - "msecs": 572.5052356719971, + "msecs": 162.2331142425537, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19136.232614517212, + "relativeCreated": 19154.724836349487, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147660,8 +147607,8 @@ "comm-client:", "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" ], - "asctime": "2021-01-11 11:37:48,578", - "created": 1610361468.5785341, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.168141, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -147671,15 +147618,15 @@ "lineno": 414, "message": "comm-client: RX <- (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", "module": "__init__", - "msecs": 578.5341262817383, + "msecs": 168.14088821411133, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19142.261505126953, + "relativeCreated": 19160.632610321045, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147687,8 +147634,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,578", - "created": 1610361468.578799, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.1682563, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147698,15 +147645,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 578.7990093231201, + "msecs": 168.25628280639648, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19142.526388168335, + "relativeCreated": 19160.74800491333, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147715,8 +147662,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:48,578", - "created": 1610361468.578969, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.1683254, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147726,15 +147673,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 578.9690017700195, + "msecs": 168.32542419433594, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19142.696380615234, + "relativeCreated": 19160.81714630127, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147742,8 +147689,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:48,579", - "created": 1610361468.579267, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.1684282, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147753,15 +147700,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 579.2670249938965, + "msecs": 168.4281826019287, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19142.99440383911, + "relativeCreated": 19160.919904708862, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147770,8 +147717,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:48,579", - "created": 1610361468.5794055, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.16849, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147781,15 +147728,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 579.4055461883545, + "msecs": 168.48993301391602, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19143.13292503357, + "relativeCreated": 19160.98165512085, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147797,8 +147744,8 @@ "STP:", "(41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b" ], - "asctime": "2021-01-11 11:37:48,579", - "created": 1610361468.5795884, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.1685529, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -147808,15 +147755,15 @@ "lineno": 148, "message": "STP: message identified - (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", "module": "stp", - "msecs": 579.5884132385254, + "msecs": 168.55287551879883, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19143.31579208374, + "relativeCreated": 19161.044597625732, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { @@ -147827,74 +147774,74 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:48,580", - "created": 1610361468.5800095, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.1687064, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 580.0094604492188, + "msecs": 168.70641708374023, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19143.736839294434, + "relativeCreated": 19161.198139190674, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:48,580", - "created": 1610361468.5802064, + "asctime": "2021-01-14 00:26:31,168", + "created": 1610580391.1687765, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 580.2063941955566, + "msecs": 168.7765121459961, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19143.93377304077, + "relativeCreated": 19161.26823425293, "stack_info": null, - "thread": 139974980654848, + "thread": 140579958671104, "threadName": "Thread-36" } ], - "msecs": 772.9513645172119, + "msecs": 362.0121479034424, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19336.678743362427, + "relativeCreated": 19354.503870010376, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.19274497032165527 + "time_consumption": 0.1932356357574463 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:48,773", - "created": 1610361468.773698, + "asctime": "2021-01-14 00:26:31,362", + "created": 1610580391.3625247, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147911,8 +147858,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,773", - "created": 1610361468.7733722, + "asctime": "2021-01-14 00:26:31,362", + "created": 1610580391.3623047, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147922,15 +147869,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 773.3721733093262, + "msecs": 362.3046875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19337.09955215454, + "relativeCreated": 19354.796409606934, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -147939,8 +147886,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,773", - "created": 1610361468.7735462, + "asctime": "2021-01-14 00:26:31,362", + "created": 1610580391.3624256, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147950,37 +147897,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 773.5462188720703, + "msecs": 362.4255657196045, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19337.273597717285, + "relativeCreated": 19354.917287826538, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 773.698091506958, + "msecs": 362.52474784851074, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19337.425470352173, + "relativeCreated": 19355.016469955444, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001518726348876953 + "time_consumption": 9.918212890625e-05 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:48,774", - "created": 1610361468.7742739, + "asctime": "2021-01-14 00:26:31,362", + "created": 1610580391.3629756, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -147997,8 +147944,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:48,773", - "created": 1610361468.773962, + "asctime": "2021-01-14 00:26:31,362", + "created": 1610580391.3627563, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -148008,15 +147955,15 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 773.9620208740234, + "msecs": 362.75625228881836, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19337.68939971924, + "relativeCreated": 19355.247974395752, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148025,8 +147972,8 @@ "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-11 11:37:48,774", - "created": 1610361468.7741249, + "asctime": "2021-01-14 00:26:31,362", + "created": 1610580391.3628888, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -148036,41 +147983,41 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 774.1248607635498, + "msecs": 362.8888130187988, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19337.852239608765, + "relativeCreated": 19355.380535125732, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 774.2738723754883, + "msecs": 362.9755973815918, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 19338.001251220703, + "relativeCreated": 19355.467319488525, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014901161193847656 + "time_consumption": 8.678436279296875e-05 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.7557625770568848, - "time_finished": "2021-01-11 11:37:48,774", - "time_start": "2021-01-11 11:37:48,018" + "time_consumption": 0.7588222026824951, + "time_finished": "2021-01-14 00:26:31,362", + "time_start": "2021-01-14 00:26:30,604" }, "_ZJMD8EzaEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:30,305", - "created": 1610361450.3053374, + "asctime": "2021-01-14 00:26:12,877", + "created": 1610580372.8778398, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148081,19 +148028,19 @@ "message": "_ZJMD8EzaEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 305.33742904663086, + "msecs": 877.8398036956787, "msg": "_ZJMD8EzaEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 869.0648078918457, + "relativeCreated": 870.3315258026123, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:30,314", - "created": 1610361450.314214, + "asctime": "2021-01-14 00:26:12,887", + "created": 1610580372.8873403, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -148108,8 +148055,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:30,306", - "created": 1610361450.3062966, + "asctime": "2021-01-14 00:26:12,878", + "created": 1610580372.8788488, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148119,23 +148066,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 306.29658699035645, + "msecs": 878.8487911224365, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 870.0239658355713, + "relativeCreated": 871.3405132293701, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:30,307", - "created": 1610361450.307109, + "asctime": "2021-01-14 00:26:12,879", + "created": 1610580372.8797445, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148145,23 +148092,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 307.10911750793457, + "msecs": 879.7445297241211, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 870.8364963531494, + "relativeCreated": 872.2362518310547, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:30,307", - "created": 1610361450.3073723, + "asctime": "2021-01-14 00:26:12,880", + "created": 1610580372.8800166, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148171,41 +148118,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 307.3723316192627, + "msecs": 880.016565322876, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 871.0997104644775, + "relativeCreated": 872.5082874298096, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:30,307", - "created": 1610361450.3077214, + "asctime": "2021-01-14 00:26:12,880", + "created": 1610580372.8803813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 307.7213764190674, + "msecs": 880.3813457489014, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 871.4487552642822, + "relativeCreated": 872.873067855835, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148214,26 +148161,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:30,307", - "created": 1610361450.3079278, + "asctime": "2021-01-14 00:26:12,880", + "created": 1610580372.8805954, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 307.92784690856934, + "msecs": 880.5954456329346, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 871.6552257537842, + "relativeCreated": 873.0871677398682, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148241,26 +148188,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:30,308", - "created": 1610361450.3081899, + "asctime": "2021-01-14 00:26:12,880", + "created": 1610580372.8808632, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 308.18986892700195, + "msecs": 880.8631896972656, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 871.9172477722168, + "relativeCreated": 873.3549118041992, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148268,26 +148215,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:30,308", - "created": 1610361450.3083656, + "asctime": "2021-01-14 00:26:12,881", + "created": 1610580372.8810375, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 308.3655834197998, + "msecs": 881.0374736785889, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 872.0929622650146, + "relativeCreated": 873.5291957855225, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148295,26 +148242,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:30,308", - "created": 1610361450.3085175, + "asctime": "2021-01-14 00:26:12,881", + "created": 1610580372.881237, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 308.5174560546875, + "msecs": 881.2370300292969, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 872.2448348999023, + "relativeCreated": 873.7287521362305, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148322,26 +148269,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:30,308", - "created": 1610361450.3086693, + "asctime": "2021-01-14 00:26:12,881", + "created": 1610580372.8813884, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 308.6693286895752, + "msecs": 881.3884258270264, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 872.39670753479, + "relativeCreated": 873.88014793396, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148351,8 +148298,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:30,308", - "created": 1610361450.3088648, + "asctime": "2021-01-14 00:26:12,881", + "created": 1610580372.881563, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148362,15 +148309,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 308.8648319244385, + "msecs": 881.5629482269287, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 872.5922107696533, + "relativeCreated": 874.0546703338623, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148380,8 +148327,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:30,309", - "created": 1610361450.3090315, + "asctime": "2021-01-14 00:26:12,881", + "created": 1610580372.8817577, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148391,15 +148338,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 309.03148651123047, + "msecs": 881.7577362060547, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 872.7588653564453, + "relativeCreated": 874.2494583129883, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148409,8 +148356,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:30,309", - "created": 1610361450.3091881, + "asctime": "2021-01-14 00:26:12,881", + "created": 1610580372.8819494, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148420,15 +148367,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 309.1881275177002, + "msecs": 881.9494247436523, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 872.915506362915, + "relativeCreated": 874.4411468505859, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148438,8 +148385,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:30,309", - "created": 1610361450.3093548, + "asctime": "2021-01-14 00:26:12,882", + "created": 1610580372.8821354, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148449,41 +148396,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 309.3547821044922, + "msecs": 882.1353912353516, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 873.082160949707, + "relativeCreated": 874.6271133422852, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:30,309", - "created": 1610361450.3094947, + "asctime": "2021-01-14 00:26:12,882", + "created": 1610580372.8822973, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 309.4947338104248, + "msecs": 882.2972774505615, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 873.2221126556396, + "relativeCreated": 874.7889995574951, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148492,26 +148439,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:30,309", - "created": 1610361450.3096483, + "asctime": "2021-01-14 00:26:12,882", + "created": 1610580372.882487, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 309.6482753753662, + "msecs": 882.4870586395264, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 873.375654220581, + "relativeCreated": 874.97878074646, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148519,26 +148466,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:30,309", - "created": 1610361450.3098142, + "asctime": "2021-01-14 00:26:12,882", + "created": 1610580372.882671, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 309.8142147064209, + "msecs": 882.6711177825928, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 873.5415935516357, + "relativeCreated": 875.1628398895264, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148546,26 +148493,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:30,309", - "created": 1610361450.3099678, + "asctime": "2021-01-14 00:26:12,882", + "created": 1610580372.8828342, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 309.9677562713623, + "msecs": 882.8341960906982, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 873.6951351165771, + "relativeCreated": 875.3259181976318, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148575,8 +148522,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:30,310", - "created": 1610361450.3101182, + "asctime": "2021-01-14 00:26:12,882", + "created": 1610580372.882992, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148586,15 +148533,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 310.1181983947754, + "msecs": 882.9920291900635, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 873.8455772399902, + "relativeCreated": 875.4837512969971, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148604,8 +148551,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:30,310", - "created": 1610361450.3102813, + "asctime": "2021-01-14 00:26:12,883", + "created": 1610580372.8831637, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148615,15 +148562,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 310.28127670288086, + "msecs": 883.1636905670166, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 874.0086555480957, + "relativeCreated": 875.6554126739502, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148632,26 +148579,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:30,310", - "created": 1610361450.310427, + "asctime": "2021-01-14 00:26:12,883", + "created": 1610580372.883317, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 310.4269504547119, + "msecs": 883.3169937133789, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 874.1543292999268, + "relativeCreated": 875.8087158203125, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148660,26 +148607,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:30,310", - "created": 1610361450.3105652, + "asctime": "2021-01-14 00:26:12,883", + "created": 1610580372.8834605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 310.5652332305908, + "msecs": 883.460521697998, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 874.2926120758057, + "relativeCreated": 875.9522438049316, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148688,78 +148635,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:30,310", - "created": 1610361450.3106995, + "asctime": "2021-01-14 00:26:12,883", + "created": 1610580372.883622, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 310.699462890625, + "msecs": 883.6219310760498, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 874.4268417358398, + "relativeCreated": 876.1136531829834, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:30,310", - "created": 1610361450.3108416, + "asctime": "2021-01-14 00:26:12,883", + "created": 1610580372.8837862, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 310.84156036376953, + "msecs": 883.7862014770508, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 874.5689392089844, + "relativeCreated": 876.2779235839844, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:30,311", - "created": 1610361450.31112, + "asctime": "2021-01-14 00:26:12,884", + "created": 1610580372.8841097, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 311.12003326416016, + "msecs": 884.1097354888916, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 874.847412109375, + "relativeCreated": 876.6014575958252, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148768,26 +148715,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:30,311", - "created": 1610361450.311275, + "asctime": "2021-01-14 00:26:12,884", + "created": 1610580372.884291, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 311.2750053405762, + "msecs": 884.2909336090088, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 875.002384185791, + "relativeCreated": 876.7826557159424, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148795,26 +148742,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:30,311", - "created": 1610361450.3114822, + "asctime": "2021-01-14 00:26:12,884", + "created": 1610580372.8845246, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 311.48219108581543, + "msecs": 884.5245838165283, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 875.2095699310303, + "relativeCreated": 877.0163059234619, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148822,26 +148769,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:30,311", - "created": 1610361450.311633, + "asctime": "2021-01-14 00:26:12,884", + "created": 1610580372.8846946, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 311.6331100463867, + "msecs": 884.6945762634277, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 875.3604888916016, + "relativeCreated": 877.1862983703613, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148849,26 +148796,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:30,311", - "created": 1610361450.311785, + "asctime": "2021-01-14 00:26:12,884", + "created": 1610580372.8848572, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 311.7849826812744, + "msecs": 884.857177734375, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 875.5123615264893, + "relativeCreated": 877.3488998413086, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148876,26 +148823,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:30,311", - "created": 1610361450.3119428, + "asctime": "2021-01-14 00:26:12,885", + "created": 1610580372.8850133, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 311.94281578063965, + "msecs": 885.0133419036865, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 875.6701946258545, + "relativeCreated": 877.5050640106201, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148905,8 +148852,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:30,312", - "created": 1610361450.3120935, + "asctime": "2021-01-14 00:26:12,885", + "created": 1610580372.8852067, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148916,15 +148863,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 312.09349632263184, + "msecs": 885.2066993713379, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 875.8208751678467, + "relativeCreated": 877.6984214782715, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148934,8 +148881,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:30,312", - "created": 1610361450.3122475, + "asctime": "2021-01-14 00:26:12,885", + "created": 1610580372.885371, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148945,15 +148892,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 312.24751472473145, + "msecs": 885.3709697723389, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 875.9748935699463, + "relativeCreated": 877.8626918792725, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148963,8 +148910,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:30,312", - "created": 1610361450.3123994, + "asctime": "2021-01-14 00:26:12,885", + "created": 1610580372.8855276, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -148974,15 +148921,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 312.39938735961914, + "msecs": 885.5276107788086, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 876.126766204834, + "relativeCreated": 878.0193328857422, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -148992,8 +148939,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:30,312", - "created": 1610361450.3125484, + "asctime": "2021-01-14 00:26:12,885", + "created": 1610580372.8856804, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149003,41 +148950,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 312.5483989715576, + "msecs": 885.6804370880127, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 876.2757778167725, + "relativeCreated": 878.1721591949463, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:30,312", - "created": 1610361450.3126924, + "asctime": "2021-01-14 00:26:12,885", + "created": 1610580372.8858175, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 312.69240379333496, + "msecs": 885.8175277709961, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 876.4197826385498, + "relativeCreated": 878.3092498779297, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149046,26 +148993,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:30,312", - "created": 1610361450.312873, + "asctime": "2021-01-14 00:26:12,885", + "created": 1610580372.8859718, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 312.87288665771484, + "msecs": 885.9717845916748, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 876.6002655029297, + "relativeCreated": 878.4635066986084, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149073,26 +149020,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:30,313", - "created": 1610361450.3130372, + "asctime": "2021-01-14 00:26:12,886", + "created": 1610580372.886149, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 313.0371570587158, + "msecs": 886.1489295959473, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 876.7645359039307, + "relativeCreated": 878.6406517028809, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149100,26 +149047,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:30,313", - "created": 1610361450.3131833, + "asctime": "2021-01-14 00:26:12,886", + "created": 1610580372.8862987, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 313.1833076477051, + "msecs": 886.298656463623, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 876.9106864929199, + "relativeCreated": 878.7903785705566, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149129,8 +149076,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:30,313", - "created": 1610361450.3133304, + "asctime": "2021-01-14 00:26:12,886", + "created": 1610580372.8864486, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149140,15 +149087,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 313.33041191101074, + "msecs": 886.4486217498779, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 877.0577907562256, + "relativeCreated": 878.9403438568115, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149158,8 +149105,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:30,313", - "created": 1610361450.3135102, + "asctime": "2021-01-14 00:26:12,886", + "created": 1610580372.8866136, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149169,15 +149116,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 313.5101795196533, + "msecs": 886.6136074066162, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 877.2375583648682, + "relativeCreated": 879.1053295135498, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149186,26 +149133,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:30,313", - "created": 1610361450.3136585, + "asctime": "2021-01-14 00:26:12,886", + "created": 1610580372.886765, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 313.6584758758545, + "msecs": 886.7650032043457, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 877.3858547210693, + "relativeCreated": 879.2567253112793, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149214,26 +149161,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:30,313", - "created": 1610361450.313806, + "asctime": "2021-01-14 00:26:12,886", + "created": 1610580372.8869283, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 313.80605697631836, + "msecs": 886.9283199310303, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 877.5334358215332, + "relativeCreated": 879.4200420379639, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149242,71 +149189,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:30,313", - "created": 1610361450.3139422, + "asctime": "2021-01-14 00:26:12,887", + "created": 1610580372.8870676, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 313.94219398498535, + "msecs": 887.0675563812256, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 877.6695728302002, + "relativeCreated": 879.5592784881592, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:30,314", - "created": 1610361450.314083, + "asctime": "2021-01-14 00:26:12,887", + "created": 1610580372.8872077, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 314.0830993652344, + "msecs": 887.2077465057373, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 877.8104782104492, + "relativeCreated": 879.6994686126709, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 314.21399116516113, + "msecs": 887.3403072357178, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 877.941370010376, + "relativeCreated": 879.8320293426514, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001308917999267578 + "time_consumption": 0.00013256072998046875 }, { "args": [], - "asctime": "2021-01-11 11:37:30,659", - "created": 1610361450.6592155, + "asctime": "2021-01-14 00:26:13,232", + "created": 1610580373.2323427, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -149321,8 +149268,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:30,314", - "created": 1610361450.3144982, + "asctime": "2021-01-14 00:26:12,887", + "created": 1610580372.8876352, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149332,23 +149279,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 314.4981861114502, + "msecs": 887.6352310180664, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 878.225564956665, + "relativeCreated": 880.126953125, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:30,314", - "created": 1610361450.31464, + "asctime": "2021-01-14 00:26:12,887", + "created": 1610580372.8877785, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149358,41 +149305,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 314.6400451660156, + "msecs": 887.7785205841064, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 878.3674240112305, + "relativeCreated": 880.27024269104, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:30,314", - "created": 1610361450.3147783, + "asctime": "2021-01-14 00:26:12,887", + "created": 1610580372.887921, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 314.77832794189453, + "msecs": 887.9210948944092, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 878.5057067871094, + "relativeCreated": 880.4128170013428, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149403,34 +149350,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:30,315", - "created": 1610361450.3150182, + "asctime": "2021-01-14 00:26:12,888", + "created": 1610580372.888168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 315.0181770324707, + "msecs": 888.1680965423584, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 878.7455558776855, + "relativeCreated": 880.659818649292, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:30,315", - "created": 1610361450.3155544, + "asctime": "2021-01-14 00:26:12,888", + "created": 1610580372.8887222, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149440,23 +149387,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 315.5543804168701, + "msecs": 888.7221813201904, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 879.281759262085, + "relativeCreated": 881.213903427124, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:30,315", - "created": 1610361450.3157303, + "asctime": "2021-01-14 00:26:12,888", + "created": 1610580372.8888886, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149466,41 +149413,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 315.73033332824707, + "msecs": 888.8885974884033, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 879.4577121734619, + "relativeCreated": 881.3803195953369, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:30,315", - "created": 1610361450.315878, + "asctime": "2021-01-14 00:26:12,889", + "created": 1610580372.8890505, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 315.87791442871094, + "msecs": 889.0504837036133, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 879.6052932739258, + "relativeCreated": 881.5422058105469, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -149508,8 +149455,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:30,316", - "created": 1610361450.3161278, + "asctime": "2021-01-14 00:26:12,889", + "created": 1610580372.889277, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149519,15 +149466,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 316.1277770996094, + "msecs": 889.2769813537598, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 879.8551559448242, + "relativeCreated": 881.7687034606934, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149535,8 +149482,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3243372, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.8974183, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149546,15 +149493,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 324.3372440338135, + "msecs": 897.4182605743408, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.0646228790283, + "relativeCreated": 889.9099826812744, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149562,8 +149509,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3244536, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.8975472, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149573,15 +149520,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 324.45359230041504, + "msecs": 897.5472450256348, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.1809711456299, + "relativeCreated": 890.0389671325684, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149590,8 +149537,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3245063, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.897609, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149601,15 +149548,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 324.5062828063965, + "msecs": 897.6089954376221, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.2336616516113, + "relativeCreated": 890.1007175445557, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149617,8 +149564,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3245683, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.897673, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149628,15 +149575,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 324.5682716369629, + "msecs": 897.6728916168213, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.2956504821777, + "relativeCreated": 890.1646137237549, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149645,8 +149592,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3246157, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.8977184, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149656,15 +149603,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 324.6157169342041, + "msecs": 897.7184295654297, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.343095779419, + "relativeCreated": 890.2101516723633, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149672,8 +149619,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3246791, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.8977833, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149683,15 +149630,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 324.6791362762451, + "msecs": 897.7832794189453, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.40651512146, + "relativeCreated": 890.2750015258789, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149700,8 +149647,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3247206, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.8978288, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149711,15 +149658,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 324.7206211090088, + "msecs": 897.8288173675537, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.4479999542236, + "relativeCreated": 890.3205394744873, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149727,8 +149674,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3247952, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.897885, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149738,15 +149685,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 324.7952461242676, + "msecs": 897.8850841522217, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.5226249694824, + "relativeCreated": 890.3768062591553, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149755,8 +149702,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.324838, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.8979259, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149766,15 +149713,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 324.83792304992676, + "msecs": 897.925853729248, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.5653018951416, + "relativeCreated": 890.4175758361816, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149782,8 +149729,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.324893, + "asctime": "2021-01-14 00:26:12,897", + "created": 1610580372.8979802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149793,15 +149740,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 324.8929977416992, + "msecs": 897.9802131652832, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.6203765869141, + "relativeCreated": 890.4719352722168, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149810,8 +149757,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,324", - "created": 1610361450.3249342, + "asctime": "2021-01-14 00:26:12,898", + "created": 1610580372.8980224, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149821,15 +149768,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 324.9342441558838, + "msecs": 898.0224132537842, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.6616230010986, + "relativeCreated": 890.5141353607178, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149837,8 +149784,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:30,325", - "created": 1610361450.325015, + "asctime": "2021-01-14 00:26:12,898", + "created": 1610580372.8981051, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149848,15 +149795,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 325.0150680541992, + "msecs": 898.1051445007324, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 888.7424468994141, + "relativeCreated": 890.596866607666, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149864,8 +149811,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:30,325", - "created": 1610361450.3259509, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.8990698, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -149875,15 +149822,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 325.95086097717285, + "msecs": 899.0697860717773, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 889.6782398223877, + "relativeCreated": 891.5615081787109, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149891,8 +149838,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,326", - "created": 1610361450.3260765, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.899209, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149902,15 +149849,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 326.0765075683594, + "msecs": 899.2090225219727, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 889.8038864135742, + "relativeCreated": 891.7007446289062, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149919,8 +149866,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:30,326", - "created": 1610361450.3261397, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.8992753, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149930,15 +149877,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 326.1396884918213, + "msecs": 899.2753028869629, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 889.8670673370361, + "relativeCreated": 891.7670249938965, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149946,8 +149893,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:30,326", - "created": 1610361450.3262203, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.899369, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -149957,15 +149904,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 326.2202739715576, + "msecs": 899.3690013885498, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 889.9476528167725, + "relativeCreated": 891.8607234954834, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -149976,26 +149923,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:30,326", - "created": 1610361450.3263533, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.8995056, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 326.3533115386963, + "msecs": 899.505615234375, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 890.0806903839111, + "relativeCreated": 891.9973373413086, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150003,26 +149950,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:30,326", - "created": 1610361450.3264115, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.8995655, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 326.41148567199707, + "msecs": 899.5654582977295, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 890.1388645172119, + "relativeCreated": 892.0571804046631, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150033,26 +149980,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:30,326", - "created": 1610361450.3264923, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.899646, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 326.4923095703125, + "msecs": 899.6460437774658, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 890.2196884155273, + "relativeCreated": 892.1377658843994, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150060,8 +150007,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:30,326", - "created": 1610361450.3267612, + "asctime": "2021-01-14 00:26:12,899", + "created": 1610580372.8999162, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -150071,15 +150018,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 326.76124572753906, + "msecs": 899.9161720275879, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 890.4886245727539, + "relativeCreated": 892.4078941345215, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150087,8 +150034,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:30,334", - "created": 1610361450.3349674, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9081213, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -150098,15 +150045,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 334.96737480163574, + "msecs": 908.1213474273682, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 898.6947536468506, + "relativeCreated": 900.6130695343018, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150114,8 +150061,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3350866, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.908245, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150125,15 +150072,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 335.0865840911865, + "msecs": 908.2450866699219, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 898.8139629364014, + "relativeCreated": 900.7368087768555, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150142,8 +150089,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3351386, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9082978, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150153,15 +150100,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 335.13855934143066, + "msecs": 908.2977771759033, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 898.8659381866455, + "relativeCreated": 900.7894992828369, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150169,8 +150116,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3352013, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9083617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150180,15 +150127,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 335.2012634277344, + "msecs": 908.3616733551025, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 898.9286422729492, + "relativeCreated": 900.8533954620361, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150197,8 +150144,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3352575, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9084198, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150208,15 +150155,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 335.25753021240234, + "msecs": 908.4198474884033, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 898.9849090576172, + "relativeCreated": 900.9115695953369, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150224,8 +150171,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3353205, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9084828, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150235,15 +150182,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 335.32047271728516, + "msecs": 908.4827899932861, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 899.0478515625, + "relativeCreated": 900.9745121002197, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150252,8 +150199,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3353662, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9085248, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150263,15 +150210,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 335.36624908447266, + "msecs": 908.524751663208, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 899.0936279296875, + "relativeCreated": 901.0164737701416, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150279,8 +150226,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3354225, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.908581, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150290,15 +150237,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 335.4225158691406, + "msecs": 908.581018447876, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 899.1498947143555, + "relativeCreated": 901.0727405548096, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150307,8 +150254,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.335465, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.908624, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150318,15 +150265,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 335.4649543762207, + "msecs": 908.6239337921143, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 899.1923332214355, + "relativeCreated": 901.1156558990479, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150334,8 +150281,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3355262, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9086828, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150345,15 +150292,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 335.5262279510498, + "msecs": 908.6828231811523, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 899.2536067962646, + "relativeCreated": 901.1745452880859, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150362,8 +150309,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3355677, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9087281, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150373,15 +150320,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 335.5677127838135, + "msecs": 908.7281227111816, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 899.2950916290283, + "relativeCreated": 901.2198448181152, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150389,8 +150336,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:30,335", - "created": 1610361450.3356457, + "asctime": "2021-01-14 00:26:12,908", + "created": 1610580372.9088109, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -150400,15 +150347,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 335.6456756591797, + "msecs": 908.8108539581299, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 899.3730545043945, + "relativeCreated": 901.3025760650635, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150416,8 +150363,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:30,336", - "created": 1610361450.3365245, + "asctime": "2021-01-14 00:26:12,909", + "created": 1610580372.909688, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -150427,15 +150374,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 336.52448654174805, + "msecs": 909.6879959106445, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 900.2518653869629, + "relativeCreated": 902.1797180175781, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150443,8 +150390,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,336", - "created": 1610361450.3365772, + "asctime": "2021-01-14 00:26:12,909", + "created": 1610580372.9097388, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150454,15 +150401,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 336.5771770477295, + "msecs": 909.7387790679932, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 900.3045558929443, + "relativeCreated": 902.2305011749268, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150471,8 +150418,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:30,336", - "created": 1610361450.336619, + "asctime": "2021-01-14 00:26:12,909", + "created": 1610580372.9097788, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150482,15 +150429,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 336.61890029907227, + "msecs": 909.7788333892822, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 900.3462791442871, + "relativeCreated": 902.2705554962158, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150498,8 +150445,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:30,336", - "created": 1610361450.336688, + "asctime": "2021-01-14 00:26:12,909", + "created": 1610580372.9098458, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150509,15 +150456,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 336.6880416870117, + "msecs": 909.8458290100098, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 900.4154205322266, + "relativeCreated": 902.3375511169434, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150528,26 +150475,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:30,336", - "created": 1610361450.3368323, + "asctime": "2021-01-14 00:26:12,909", + "created": 1610580372.9099898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 336.83228492736816, + "msecs": 909.9898338317871, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 900.559663772583, + "relativeCreated": 902.4815559387207, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -150555,45 +150502,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:30,336", - "created": 1610361450.3368895, + "asctime": "2021-01-14 00:26:12,910", + "created": 1610580372.9100444, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 336.88950538635254, + "msecs": 910.0444316864014, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 900.6168842315674, + "relativeCreated": 902.536153793335, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" } ], - "msecs": 659.2154502868652, + "msecs": 232.34272003173828, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1222.94282913208, + "relativeCreated": 1224.8344421386719, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3223259449005127 + "time_consumption": 0.3222982883453369 }, { "args": [], - "asctime": "2021-01-11 11:37:30,961", - "created": 1610361450.9615676, + "asctime": "2021-01-14 00:26:13,534", + "created": 1610580373.5344033, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -150612,26 +150559,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:30,659", - "created": 1610361450.6597672, + "asctime": "2021-01-14 00:26:13,232", + "created": 1610580373.2327275, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 659.7671508789062, + "msecs": 232.7275276184082, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1223.494529724121, + "relativeCreated": 1225.2192497253418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -150639,8 +150586,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:30,660", - "created": 1610361450.6605854, + "asctime": "2021-01-14 00:26:13,233", + "created": 1610580373.233252, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -150650,15 +150597,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 660.5854034423828, + "msecs": 233.25204849243164, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1224.3127822875977, + "relativeCreated": 1225.7437705993652, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150666,8 +150613,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:30,669", - "created": 1610361450.6690702, + "asctime": "2021-01-14 00:26:13,241", + "created": 1610580373.2414625, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -150677,15 +150624,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 669.0702438354492, + "msecs": 241.46246910095215, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1232.797622680664, + "relativeCreated": 1233.9541912078857, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150693,8 +150640,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,669", - "created": 1610361450.6693296, + "asctime": "2021-01-14 00:26:13,241", + "created": 1610580373.2416453, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150704,15 +150651,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 669.3296432495117, + "msecs": 241.64533615112305, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1233.0570220947266, + "relativeCreated": 1234.1370582580566, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150721,8 +150668,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:30,669", - "created": 1610361450.6694767, + "asctime": "2021-01-14 00:26:13,241", + "created": 1610580373.2417374, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150732,15 +150679,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 669.4767475128174, + "msecs": 241.73736572265625, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1233.2041263580322, + "relativeCreated": 1234.2290878295898, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150748,8 +150695,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,669", - "created": 1610361450.6696563, + "asctime": "2021-01-14 00:26:13,241", + "created": 1610580373.2418473, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150759,15 +150706,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 669.6562767028809, + "msecs": 241.84727668762207, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1233.3836555480957, + "relativeCreated": 1234.3389987945557, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150776,8 +150723,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,669", - "created": 1610361450.6698117, + "asctime": "2021-01-14 00:26:13,241", + "created": 1610580373.2419279, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150787,15 +150734,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 669.8117256164551, + "msecs": 241.9278621673584, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1233.53910446167, + "relativeCreated": 1234.419584274292, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150803,8 +150750,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,669", - "created": 1610361450.6699967, + "asctime": "2021-01-14 00:26:13,242", + "created": 1610580373.242043, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150814,15 +150761,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 669.9967384338379, + "msecs": 242.04301834106445, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1233.7241172790527, + "relativeCreated": 1234.534740447998, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150831,8 +150778,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,670", - "created": 1610361450.6701164, + "asctime": "2021-01-14 00:26:13,242", + "created": 1610580373.2421165, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150842,15 +150789,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 670.1164245605469, + "msecs": 242.11645126342773, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1233.8438034057617, + "relativeCreated": 1234.6081733703613, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150858,8 +150805,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,670", - "created": 1610361450.670297, + "asctime": "2021-01-14 00:26:13,242", + "created": 1610580373.2422342, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150869,15 +150816,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 670.2969074249268, + "msecs": 242.2342300415039, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1234.0242862701416, + "relativeCreated": 1234.7259521484375, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150886,8 +150833,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,670", - "created": 1610361450.6704147, + "asctime": "2021-01-14 00:26:13,242", + "created": 1610580373.2423055, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150897,15 +150844,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 670.4146862030029, + "msecs": 242.30551719665527, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1234.1420650482178, + "relativeCreated": 1234.7972393035889, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150913,8 +150860,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,670", - "created": 1610361450.6705823, + "asctime": "2021-01-14 00:26:13,242", + "created": 1610580373.2423968, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150924,15 +150871,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 670.5822944641113, + "msecs": 242.39683151245117, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1234.3096733093262, + "relativeCreated": 1234.8885536193848, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150941,8 +150888,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,670", - "created": 1610361450.670702, + "asctime": "2021-01-14 00:26:13,242", + "created": 1610580373.242466, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -150952,15 +150899,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 670.7019805908203, + "msecs": 242.46597290039062, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1234.4293594360352, + "relativeCreated": 1234.9576950073242, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150968,8 +150915,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e" ], - "asctime": "2021-01-11 11:37:30,670", - "created": 1610361450.6709425, + "asctime": "2021-01-14 00:26:13,242", + "created": 1610580373.2426245, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -150979,15 +150926,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e", "module": "__init__", - "msecs": 670.9425449371338, + "msecs": 242.62452125549316, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1234.6699237823486, + "relativeCreated": 1235.1162433624268, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -150995,8 +150942,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e" ], - "asctime": "2021-01-11 11:37:30,675", - "created": 1610361450.675327, + "asctime": "2021-01-14 00:26:13,246", + "created": 1610580373.2469053, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -151006,15 +150953,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e", "module": "__init__", - "msecs": 675.3270626068115, + "msecs": 246.90532684326172, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1239.0544414520264, + "relativeCreated": 1239.3970489501953, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -151022,8 +150969,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,675", - "created": 1610361450.675703, + "asctime": "2021-01-14 00:26:13,247", + "created": 1610580373.2471578, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151033,15 +150980,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 675.7030487060547, + "msecs": 247.15781211853027, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1239.4304275512695, + "relativeCreated": 1239.6495342254639, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -151050,8 +150997,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:30,675", - "created": 1610361450.6758535, + "asctime": "2021-01-14 00:26:13,247", + "created": 1610580373.2472498, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151061,15 +151008,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 675.8534908294678, + "msecs": 247.24984169006348, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1239.5808696746826, + "relativeCreated": 1239.741563796997, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -151077,8 +151024,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c" ], - "asctime": "2021-01-11 11:37:30,676", - "created": 1610361450.6761115, + "asctime": "2021-01-14 00:26:13,247", + "created": 1610580373.2474072, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151088,41 +151035,41 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c", "module": "stp", - "msecs": 676.1114597320557, + "msecs": 247.4071979522705, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1239.8388385772705, + "relativeCreated": 1239.898920059204, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:30,676", - "created": 1610361450.6764917, + "asctime": "2021-01-14 00:26:13,247", + "created": 1610580373.2476034, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 453, + "lineno": 465, "message": "prot-server: Received message has an invalid checksum. Message will be ignored.", "module": "__init__", - "msecs": 676.4917373657227, + "msecs": 247.6034164428711, "msg": "%s Received message has an invalid checksum. Message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1240.2191162109375, + "relativeCreated": 1240.0951385498047, "stack_info": null, - "thread": 139977377175296, + "thread": 140582285850368, "threadName": "Thread-3" }, { @@ -151132,48 +151079,48 @@ "17", "34" ], - "asctime": "2021-01-11 11:37:30,961", - "created": 1610361450.9612958, + "asctime": "2021-01-14 00:26:13,534", + "created": 1610580373.5341256, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 961.2958431243896, + "msecs": 534.125566482544, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1525.0232219696045, + "relativeCreated": 1526.6172885894775, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 961.5676403045654, + "msecs": 534.4033241271973, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1525.2950191497803, + "relativeCreated": 1526.8950462341309, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00027179718017578125 + "time_consumption": 0.0002777576446533203 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:30,962", - "created": 1610361450.9622393, + "asctime": "2021-01-14 00:26:13,535", + "created": 1610580373.5350885, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151190,8 +151137,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:30,961", - "created": 1610361450.9619296, + "asctime": "2021-01-14 00:26:13,534", + "created": 1610580373.5347688, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151201,15 +151148,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 961.9295597076416, + "msecs": 534.76881980896, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1525.6569385528564, + "relativeCreated": 1527.2605419158936, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -151218,8 +151165,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:30,962", - "created": 1610361450.962092, + "asctime": "2021-01-14 00:26:13,534", + "created": 1610580373.534933, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151229,37 +151176,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 962.0919227600098, + "msecs": 534.9330902099609, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1525.8193016052246, + "relativeCreated": 1527.4248123168945, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 962.2392654418945, + "msecs": 535.0885391235352, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1525.9666442871094, + "relativeCreated": 1527.5802612304688, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014734268188476562 + "time_consumption": 0.00015544891357421875 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:30,962", - "created": 1610361450.9627292, + "asctime": "2021-01-14 00:26:13,535", + "created": 1610580373.535603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151276,8 +151223,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:30,962", - "created": 1610361450.9624596, + "asctime": "2021-01-14 00:26:13,535", + "created": 1610580373.5353234, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151287,15 +151234,15 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by server): None ()", "module": "test", - "msecs": 962.4595642089844, + "msecs": 535.3233814239502, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1526.1869430541992, + "relativeCreated": 1527.8151035308838, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -151304,8 +151251,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:30,962", - "created": 1610361450.9625957, + "asctime": "2021-01-14 00:26:13,535", + "created": 1610580373.535466, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151315,34 +151262,34 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by server): result = None ()", "module": "test", - "msecs": 962.5957012176514, + "msecs": 535.4659557342529, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1526.3230800628662, + "relativeCreated": 1527.9576778411865, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 962.7292156219482, + "msecs": 535.6030464172363, "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1526.456594467163, + "relativeCreated": 1528.09476852417, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000133514404296875 + "time_consumption": 0.00013709068298339844 }, { "args": [], - "asctime": "2021-01-11 11:37:31,264", - "created": 1610361451.2649608, + "asctime": "2021-01-14 00:26:13,838", + "created": 1610580373.8381054, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -151361,26 +151308,26 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:30,963", - "created": 1610361450.9630697, + "asctime": "2021-01-14 00:26:13,535", + "created": 1610580373.535948, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 963.0696773529053, + "msecs": 535.9480381011963, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1526.7970561981201, + "relativeCreated": 1528.4397602081299, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -151388,8 +151335,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:30,963", - "created": 1610361450.9639447, + "asctime": "2021-01-14 00:26:13,536", + "created": 1610580373.5368233, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -151399,15 +151346,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 963.944673538208, + "msecs": 536.8232727050781, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1527.6720523834229, + "relativeCreated": 1529.3149948120117, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151415,8 +151362,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:30,972", - "created": 1610361450.9724164, + "asctime": "2021-01-14 00:26:13,545", + "created": 1610580373.545329, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -151426,15 +151373,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 972.4164009094238, + "msecs": 545.3290939331055, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1536.1437797546387, + "relativeCreated": 1537.820816040039, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151442,8 +151389,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,972", - "created": 1610361450.9727113, + "asctime": "2021-01-14 00:26:13,545", + "created": 1610580373.5456278, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151453,15 +151400,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 972.7113246917725, + "msecs": 545.6278324127197, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1536.4387035369873, + "relativeCreated": 1538.1195545196533, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151470,8 +151417,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:30,972", - "created": 1610361450.9729176, + "asctime": "2021-01-14 00:26:13,545", + "created": 1610580373.5457973, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151481,15 +151428,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 972.9175567626953, + "msecs": 545.7973480224609, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1536.6449356079102, + "relativeCreated": 1538.2890701293945, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151497,8 +151444,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,973", - "created": 1610361450.9731245, + "asctime": "2021-01-14 00:26:13,546", + "created": 1610580373.546004, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151508,15 +151455,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 973.1245040893555, + "msecs": 546.004056930542, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1536.8518829345703, + "relativeCreated": 1538.4957790374756, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151525,8 +151472,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,973", - "created": 1610361450.973298, + "asctime": "2021-01-14 00:26:13,546", + "created": 1610580373.5461729, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151536,15 +151483,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 973.2980728149414, + "msecs": 546.1728572845459, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1537.0254516601562, + "relativeCreated": 1538.6645793914795, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151552,8 +151499,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,973", - "created": 1610361450.9735084, + "asctime": "2021-01-14 00:26:13,546", + "created": 1610580373.5463834, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151563,15 +151510,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 973.508358001709, + "msecs": 546.3833808898926, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1537.2357368469238, + "relativeCreated": 1538.8751029968262, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151580,8 +151527,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,973", - "created": 1610361450.9736538, + "asctime": "2021-01-14 00:26:13,546", + "created": 1610580373.5465472, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151591,15 +151538,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 973.6537933349609, + "msecs": 546.5471744537354, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1537.3811721801758, + "relativeCreated": 1539.038896560669, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151607,8 +151554,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,973", - "created": 1610361450.9738455, + "asctime": "2021-01-14 00:26:13,546", + "created": 1610580373.5467439, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151618,15 +151565,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 973.8454818725586, + "msecs": 546.7438697814941, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1537.5728607177734, + "relativeCreated": 1539.2355918884277, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151635,8 +151582,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,973", - "created": 1610361450.9739783, + "asctime": "2021-01-14 00:26:13,546", + "created": 1610580373.546881, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151646,15 +151593,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 973.9782810211182, + "msecs": 546.8809604644775, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1537.705659866333, + "relativeCreated": 1539.3726825714111, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151662,8 +151609,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,974", - "created": 1610361450.97415, + "asctime": "2021-01-14 00:26:13,547", + "created": 1610580373.5470536, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151673,15 +151620,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 974.1499423980713, + "msecs": 547.0535755157471, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1537.8773212432861, + "relativeCreated": 1539.5452976226807, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151690,8 +151637,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:30,974", - "created": 1610361450.9742794, + "asctime": "2021-01-14 00:26:13,547", + "created": 1610580373.547187, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151701,15 +151648,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 974.2794036865234, + "msecs": 547.187089920044, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1538.0067825317383, + "relativeCreated": 1539.6788120269775, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151717,8 +151664,8 @@ "comm-server:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:30,974", - "created": 1610361450.9745438, + "asctime": "2021-01-14 00:26:13,547", + "created": 1610580373.547462, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -151728,15 +151675,15 @@ "lineno": 284, "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 974.5438098907471, + "msecs": 547.461986541748, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1538.271188735962, + "relativeCreated": 1539.9537086486816, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151744,8 +151691,8 @@ "comm-client:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-01-11 11:37:30,978", - "created": 1610361450.9789238, + "asctime": "2021-01-14 00:26:13,551", + "created": 1610580373.551862, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -151755,15 +151702,15 @@ "lineno": 414, "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 978.9237976074219, + "msecs": 551.8620014190674, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1542.6511764526367, + "relativeCreated": 1544.353723526001, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151771,8 +151718,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:30,979", - "created": 1610361450.9792712, + "asctime": "2021-01-14 00:26:13,552", + "created": 1610580373.5522554, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151782,15 +151729,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 979.2711734771729, + "msecs": 552.255392074585, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1542.9985523223877, + "relativeCreated": 1544.7471141815186, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151799,8 +151746,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:30,979", - "created": 1610361450.979407, + "asctime": "2021-01-14 00:26:13,552", + "created": 1610580373.552396, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151810,15 +151757,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 979.4070720672607, + "msecs": 552.3960590362549, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1543.1344509124756, + "relativeCreated": 1544.8877811431885, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151826,8 +151773,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" ], - "asctime": "2021-01-11 11:37:30,979", - "created": 1610361450.9796388, + "asctime": "2021-01-14 00:26:13,552", + "created": 1610580373.5526335, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -151837,15 +151784,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", "module": "stp", - "msecs": 979.6388149261475, + "msecs": 552.63352394104, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1543.3661937713623, + "relativeCreated": 1545.1252460479736, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151856,52 +151803,52 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:30,979", - "created": 1610361450.9799607, + "asctime": "2021-01-14 00:26:13,552", + "created": 1610580373.5529687, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 979.9606800079346, + "msecs": 552.9687404632568, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1543.6880588531494, + "relativeCreated": 1545.4604625701904, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:30,980", - "created": 1610361450.9801464, + "asctime": "2021-01-14 00:26:13,553", + "created": 1610580373.5531764, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 980.1464080810547, + "msecs": 553.1764030456543, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1543.8737869262695, + "relativeCreated": 1545.668125152588, "stack_info": null, - "thread": 139977368782592, + "thread": 140582277457664, "threadName": "Thread-4" }, { @@ -151911,48 +151858,48 @@ "17", "35" ], - "asctime": "2021-01-11 11:37:31,264", - "created": 1610361451.2646387, + "asctime": "2021-01-14 00:26:13,837", + "created": 1610580373.8375907, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 264.63866233825684, + "msecs": 837.5906944274902, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1828.3660411834717, + "relativeCreated": 1830.0824165344238, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 264.96076583862305, + "msecs": 838.1054401397705, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1828.688144683838, + "relativeCreated": 1830.597162246704, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00032210350036621094 + "time_consumption": 0.0005147457122802734 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:31,265", - "created": 1610361451.2656243, + "asctime": "2021-01-14 00:26:13,839", + "created": 1610580373.8391879, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151969,8 +151916,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,265", - "created": 1610361451.2652872, + "asctime": "2021-01-14 00:26:13,838", + "created": 1610580373.838797, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -151980,15 +151927,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 265.2871608734131, + "msecs": 838.7970924377441, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1829.014539718628, + "relativeCreated": 1831.2888145446777, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -151997,8 +151944,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,265", - "created": 1610361451.2654731, + "asctime": "2021-01-14 00:26:13,839", + "created": 1610580373.8390272, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -152008,37 +151955,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 265.4731273651123, + "msecs": 839.0271663665771, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1829.2005062103271, + "relativeCreated": 1831.5188884735107, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 265.6242847442627, + "msecs": 839.1878604888916, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1829.3516635894775, + "relativeCreated": 1831.6795825958252, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015115737915039062 + "time_consumption": 0.00016069412231445312 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:31,266", - "created": 1610361451.2661164, + "asctime": "2021-01-14 00:26:13,839", + "created": 1610580373.8397996, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -152055,8 +152002,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:31,265", - "created": 1610361451.2658465, + "asctime": "2021-01-14 00:26:13,839", + "created": 1610580373.8394918, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -152066,15 +152013,15 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by client): None ()", "module": "test", - "msecs": 265.84649085998535, + "msecs": 839.4918441772461, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1829.5738697052002, + "relativeCreated": 1831.9835662841797, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152083,8 +152030,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:31,265", - "created": 1610361451.2659845, + "asctime": "2021-01-14 00:26:13,839", + "created": 1610580373.8396611, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -152094,41 +152041,41 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by client): result = None ()", "module": "test", - "msecs": 265.98453521728516, + "msecs": 839.6611213684082, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1829.7119140625, + "relativeCreated": 1832.1528434753418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 266.1163806915283, + "msecs": 839.7996425628662, "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1829.8437595367432, + "relativeCreated": 1832.2913646697998, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013184547424316406 + "time_consumption": 0.0001385211944580078 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.9607789516448975, - "time_finished": "2021-01-11 11:37:31,266", - "time_start": "2021-01-11 11:37:30,305" + "time_consumption": 0.9619598388671875, + "time_finished": "2021-01-14 00:26:13,839", + "time_start": "2021-01-14 00:26:12,877" }, "_ZOW3ME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:41,998", - "created": 1610361461.9987428, + "asctime": "2021-01-14 00:26:24,581", + "created": 1610580384.5815043, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152139,19 +152086,19 @@ "message": "_ZOW3ME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 998.7428188323975, + "msecs": 581.5043449401855, "msg": "_ZOW3ME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12562.470197677612, + "relativeCreated": 12573.99606704712, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:42,007", - "created": 1610361462.007583, + "asctime": "2021-01-14 00:26:24,590", + "created": 1610580384.5905068, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -152166,8 +152113,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:41,999", - "created": 1610361461.999847, + "asctime": "2021-01-14 00:26:24,582", + "created": 1610580384.5825412, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152177,23 +152124,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 999.8469352722168, + "msecs": 582.5412273406982, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12563.574314117432, + "relativeCreated": 12575.032949447632, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,000", - "created": 1610361462.0007184, + "asctime": "2021-01-14 00:26:24,583", + "created": 1610580384.5834122, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152203,23 +152150,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 0.7183551788330078, + "msecs": 583.4121704101562, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12564.445734024048, + "relativeCreated": 12575.90389251709, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,000", - "created": 1610361462.000981, + "asctime": "2021-01-14 00:26:24,583", + "created": 1610580384.5836418, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152229,41 +152176,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 0.9810924530029297, + "msecs": 583.641767501831, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12564.708471298218, + "relativeCreated": 12576.133489608765, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,001", - "created": 1610361462.001309, + "asctime": "2021-01-14 00:26:24,583", + "created": 1610580384.5839782, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 1.3089179992675781, + "msecs": 583.9781761169434, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12565.036296844482, + "relativeCreated": 12576.469898223877, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152272,26 +152219,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:42,001", - "created": 1610361462.0014951, + "asctime": "2021-01-14 00:26:24,584", + "created": 1610580384.5841753, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 1.4951229095458984, + "msecs": 584.1753482818604, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12565.22250175476, + "relativeCreated": 12576.667070388794, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152299,26 +152246,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,001", - "created": 1610361462.0017228, + "asctime": "2021-01-14 00:26:24,584", + "created": 1610580384.584407, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 1.7228126525878906, + "msecs": 584.4070911407471, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12565.450191497803, + "relativeCreated": 12576.89881324768, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152326,26 +152273,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,001", - "created": 1610361462.0018768, + "asctime": "2021-01-14 00:26:24,584", + "created": 1610580384.5845747, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 1.8768310546875, + "msecs": 584.5746994018555, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12565.604209899902, + "relativeCreated": 12577.066421508789, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152353,26 +152300,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:42,002", - "created": 1610361462.0020206, + "asctime": "2021-01-14 00:26:24,584", + "created": 1610580384.5847223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 2.020597457885742, + "msecs": 584.7222805023193, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12565.7479763031, + "relativeCreated": 12577.214002609253, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152380,26 +152327,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:42,002", - "created": 1610361462.0021706, + "asctime": "2021-01-14 00:26:24,584", + "created": 1610580384.584865, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 2.170562744140625, + "msecs": 584.8650932312012, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12565.897941589355, + "relativeCreated": 12577.356815338135, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152409,8 +152356,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:42,002", - "created": 1610361462.0023298, + "asctime": "2021-01-14 00:26:24,585", + "created": 1610580384.585035, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152420,15 +152367,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 2.3298263549804688, + "msecs": 585.0350856781006, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12566.057205200195, + "relativeCreated": 12577.526807785034, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152438,8 +152385,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:42,002", - "created": 1610361462.0024893, + "asctime": "2021-01-14 00:26:24,585", + "created": 1610580384.585248, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152449,15 +152396,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 2.489328384399414, + "msecs": 585.2479934692383, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12566.216707229614, + "relativeCreated": 12577.739715576172, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152467,8 +152414,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:42,002", - "created": 1610361462.0026443, + "asctime": "2021-01-14 00:26:24,585", + "created": 1610580384.5854092, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152478,15 +152425,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 2.6443004608154297, + "msecs": 585.4091644287109, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12566.37167930603, + "relativeCreated": 12577.900886535645, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152496,8 +152443,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:42,002", - "created": 1610361462.0027957, + "asctime": "2021-01-14 00:26:24,585", + "created": 1610580384.5855649, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152507,41 +152454,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 2.795696258544922, + "msecs": 585.5648517608643, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12566.52307510376, + "relativeCreated": 12578.056573867798, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,002", - "created": 1610361462.00293, + "asctime": "2021-01-14 00:26:24,585", + "created": 1610580384.5857015, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 2.9299259185791016, + "msecs": 585.7014656066895, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12566.657304763794, + "relativeCreated": 12578.193187713623, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152550,26 +152497,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:42,003", - "created": 1610361462.0030909, + "asctime": "2021-01-14 00:26:24,585", + "created": 1610580384.5858562, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 3.0908584594726562, + "msecs": 585.8561992645264, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12566.818237304688, + "relativeCreated": 12578.34792137146, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152577,26 +152524,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:42,003", - "created": 1610361462.0032563, + "asctime": "2021-01-14 00:26:24,586", + "created": 1610580384.5860336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 3.2563209533691406, + "msecs": 586.0335826873779, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12566.983699798584, + "relativeCreated": 12578.525304794312, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152604,26 +152551,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:42,003", - "created": 1610361462.0033987, + "asctime": "2021-01-14 00:26:24,586", + "created": 1610580384.586178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 3.3986568450927734, + "msecs": 586.1780643463135, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12567.126035690308, + "relativeCreated": 12578.669786453247, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152633,8 +152580,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:42,003", - "created": 1610361462.003546, + "asctime": "2021-01-14 00:26:24,586", + "created": 1610580384.5863307, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152644,15 +152591,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 3.545999526977539, + "msecs": 586.3306522369385, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12567.273378372192, + "relativeCreated": 12578.822374343872, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152662,8 +152609,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:42,003", - "created": 1610361462.0037165, + "asctime": "2021-01-14 00:26:24,586", + "created": 1610580384.5864966, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152673,15 +152620,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 3.7164688110351562, + "msecs": 586.4965915679932, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12567.44384765625, + "relativeCreated": 12578.988313674927, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152690,26 +152637,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:42,003", - "created": 1610361462.0038648, + "asctime": "2021-01-14 00:26:24,586", + "created": 1610580384.586656, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 3.864765167236328, + "msecs": 586.6560935974121, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12567.592144012451, + "relativeCreated": 12579.147815704346, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152718,26 +152665,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:42,004", - "created": 1610361462.0040002, + "asctime": "2021-01-14 00:26:24,586", + "created": 1610580384.5868027, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 4.000186920166016, + "msecs": 586.8027210235596, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12567.72756576538, + "relativeCreated": 12579.294443130493, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152746,78 +152693,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:42,004", - "created": 1610361462.004134, + "asctime": "2021-01-14 00:26:24,586", + "created": 1610580384.5869417, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 4.133939743041992, + "msecs": 586.9417190551758, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12567.861318588257, + "relativeCreated": 12579.43344116211, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,004", - "created": 1610361462.004271, + "asctime": "2021-01-14 00:26:24,587", + "created": 1610580384.5870814, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 4.271030426025391, + "msecs": 587.0814323425293, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12567.99840927124, + "relativeCreated": 12579.573154449463, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,004", - "created": 1610361462.0045526, + "asctime": "2021-01-14 00:26:24,587", + "created": 1610580384.587389, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 4.552602767944336, + "msecs": 587.3889923095703, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12568.27998161316, + "relativeCreated": 12579.880714416504, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152826,26 +152773,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:42,004", - "created": 1610361462.0047164, + "asctime": "2021-01-14 00:26:24,587", + "created": 1610580384.587568, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 4.716396331787109, + "msecs": 587.5680446624756, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12568.443775177002, + "relativeCreated": 12580.05976676941, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152853,26 +152800,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,004", - "created": 1610361462.004947, + "asctime": "2021-01-14 00:26:24,587", + "created": 1610580384.587782, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 4.94694709777832, + "msecs": 587.7819061279297, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12568.674325942993, + "relativeCreated": 12580.273628234863, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152880,26 +152827,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,005", - "created": 1610361462.0050962, + "asctime": "2021-01-14 00:26:24,587", + "created": 1610580384.5879335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 5.096197128295898, + "msecs": 587.9335403442383, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12568.82357597351, + "relativeCreated": 12580.425262451172, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152907,26 +152854,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:42,005", - "created": 1610361462.005237, + "asctime": "2021-01-14 00:26:24,588", + "created": 1610580384.5880768, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 5.237102508544922, + "msecs": 588.0768299102783, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12568.96448135376, + "relativeCreated": 12580.568552017212, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152934,26 +152881,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:42,005", - "created": 1610361462.0053833, + "asctime": "2021-01-14 00:26:24,588", + "created": 1610580384.5882323, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 5.38325309753418, + "msecs": 588.2322788238525, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12569.110631942749, + "relativeCreated": 12580.724000930786, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152963,8 +152910,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:42,005", - "created": 1610361462.0055325, + "asctime": "2021-01-14 00:26:24,588", + "created": 1610580384.5883846, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -152974,15 +152921,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 5.532503128051758, + "msecs": 588.3846282958984, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12569.259881973267, + "relativeCreated": 12580.876350402832, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -152992,8 +152939,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:42,005", - "created": 1610361462.0057008, + "asctime": "2021-01-14 00:26:24,588", + "created": 1610580384.5885513, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153003,15 +152950,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 5.700826644897461, + "msecs": 588.5512828826904, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12569.428205490112, + "relativeCreated": 12581.043004989624, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153021,8 +152968,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:42,005", - "created": 1610361462.0058527, + "asctime": "2021-01-14 00:26:24,588", + "created": 1610580384.5887055, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153032,15 +152979,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 5.852699279785156, + "msecs": 588.7055397033691, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12569.580078125, + "relativeCreated": 12581.197261810303, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153050,8 +152997,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:42,006", - "created": 1610361462.006, + "asctime": "2021-01-14 00:26:24,588", + "created": 1610580384.5888565, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153061,41 +153008,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 6.000041961669922, + "msecs": 588.8564586639404, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12569.727420806885, + "relativeCreated": 12581.348180770874, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,006", - "created": 1610361462.006132, + "asctime": "2021-01-14 00:26:24,588", + "created": 1610580384.588992, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 6.131887435913086, + "msecs": 588.9921188354492, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12569.859266281128, + "relativeCreated": 12581.483840942383, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153104,26 +153051,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:42,006", - "created": 1610361462.0062926, + "asctime": "2021-01-14 00:26:24,589", + "created": 1610580384.5891738, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 6.292581558227539, + "msecs": 589.1737937927246, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12570.019960403442, + "relativeCreated": 12581.665515899658, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153131,26 +153078,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:42,006", - "created": 1610361462.0064561, + "asctime": "2021-01-14 00:26:24,589", + "created": 1610580384.5893524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 6.456136703491211, + "msecs": 589.3523693084717, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12570.183515548706, + "relativeCreated": 12581.844091415405, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153158,26 +153105,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:42,006", - "created": 1610361462.0065992, + "asctime": "2021-01-14 00:26:24,589", + "created": 1610580384.5894985, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 6.599187850952148, + "msecs": 589.4985198974609, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12570.326566696167, + "relativeCreated": 12581.990242004395, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153187,8 +153134,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:42,006", - "created": 1610361462.0067458, + "asctime": "2021-01-14 00:26:24,589", + "created": 1610580384.589647, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153198,15 +153145,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 6.745815277099609, + "msecs": 589.6470546722412, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12570.473194122314, + "relativeCreated": 12582.138776779175, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153216,8 +153163,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:42,006", - "created": 1610361462.0068948, + "asctime": "2021-01-14 00:26:24,589", + "created": 1610580384.5898006, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153227,15 +153174,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 6.894826889038086, + "msecs": 589.8005962371826, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12570.622205734253, + "relativeCreated": 12582.292318344116, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153244,26 +153191,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:42,007", - "created": 1610361462.007038, + "asctime": "2021-01-14 00:26:24,589", + "created": 1610580384.5899487, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 7.038116455078125, + "msecs": 589.9486541748047, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12570.765495300293, + "relativeCreated": 12582.440376281738, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153272,26 +153219,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:42,007", - "created": 1610361462.0071723, + "asctime": "2021-01-14 00:26:24,590", + "created": 1610580384.5900881, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 7.172346115112305, + "msecs": 590.0881290435791, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12570.899724960327, + "relativeCreated": 12582.579851150513, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153300,71 +153247,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:42,007", - "created": 1610361462.0073063, + "asctime": "2021-01-14 00:26:24,590", + "created": 1610580384.590226, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 7.306337356567383, + "msecs": 590.2259349822998, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12571.033716201782, + "relativeCreated": 12582.717657089233, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,007", - "created": 1610361462.0074546, + "asctime": "2021-01-14 00:26:24,590", + "created": 1610580384.5903757, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 7.454633712768555, + "msecs": 590.3756618499756, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12571.182012557983, + "relativeCreated": 12582.86738395691, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 7.582902908325195, + "msecs": 590.5067920684814, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12571.31028175354, + "relativeCreated": 12582.998514175415, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00012826919555664062 + "time_consumption": 0.00013113021850585938 }, { "args": [], - "asctime": "2021-01-11 11:37:42,352", - "created": 1610361462.3521905, + "asctime": "2021-01-14 00:26:24,935", + "created": 1610580384.935597, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -153379,8 +153326,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:42,007", - "created": 1610361462.0078795, + "asctime": "2021-01-14 00:26:24,590", + "created": 1610580384.590801, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153390,23 +153337,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 7.879495620727539, + "msecs": 590.8010005950928, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12571.606874465942, + "relativeCreated": 12583.292722702026, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:42,008", - "created": 1610361462.0080507, + "asctime": "2021-01-14 00:26:24,590", + "created": 1610580384.5909424, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153416,41 +153363,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 8.050680160522461, + "msecs": 590.9423828125, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12571.778059005737, + "relativeCreated": 12583.434104919434, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,008", - "created": 1610361462.008201, + "asctime": "2021-01-14 00:26:24,591", + "created": 1610580384.5910919, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 8.200883865356445, + "msecs": 591.0918712615967, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12571.928262710571, + "relativeCreated": 12583.58359336853, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153461,34 +153408,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,008", - "created": 1610361462.00844, + "asctime": "2021-01-14 00:26:24,591", + "created": 1610580384.5913475, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 8.440017700195312, + "msecs": 591.3474559783936, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12572.16739654541, + "relativeCreated": 12583.839178085327, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,008", - "created": 1610361462.0088553, + "asctime": "2021-01-14 00:26:24,591", + "created": 1610580384.5918992, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153498,23 +153445,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 8.855342864990234, + "msecs": 591.8991565704346, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12572.582721710205, + "relativeCreated": 12584.390878677368, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,008", - "created": 1610361462.0089073, + "asctime": "2021-01-14 00:26:24,592", + "created": 1610580384.5920649, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153524,41 +153471,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 8.907318115234375, + "msecs": 592.0648574829102, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12572.63469696045, + "relativeCreated": 12584.556579589844, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,008", - "created": 1610361462.0089524, + "asctime": "2021-01-14 00:26:24,592", + "created": 1610580384.592223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 8.95237922668457, + "msecs": 592.2229290008545, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12572.6797580719, + "relativeCreated": 12584.714651107788, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -153566,8 +153513,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,009", - "created": 1610361462.0091367, + "asctime": "2021-01-14 00:26:24,592", + "created": 1610580384.5925527, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153577,15 +153524,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 9.136676788330078, + "msecs": 592.552661895752, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12572.864055633545, + "relativeCreated": 12585.044384002686, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153593,8 +153540,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0172837, + "asctime": "2021-01-14 00:26:24,600", + "created": 1610580384.6007361, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153604,15 +153551,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 17.28367805480957, + "msecs": 600.736141204834, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.011056900024, + "relativeCreated": 12593.227863311768, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153620,8 +153567,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0174003, + "asctime": "2021-01-14 00:26:24,600", + "created": 1610580384.6008694, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153631,15 +153578,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 17.400264739990234, + "msecs": 600.8694171905518, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.127643585205, + "relativeCreated": 12593.361139297485, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153648,8 +153595,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0174525, + "asctime": "2021-01-14 00:26:24,600", + "created": 1610580384.60094, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153659,15 +153606,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 17.452478408813477, + "msecs": 600.9399890899658, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.179857254028, + "relativeCreated": 12593.4317111969, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153675,8 +153622,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0175166, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.6010034, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153686,15 +153633,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 17.516613006591797, + "msecs": 601.0034084320068, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.243991851807, + "relativeCreated": 12593.49513053894, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153703,8 +153650,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.017571, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.601049, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153714,15 +153661,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 17.570972442626953, + "msecs": 601.0489463806152, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.298351287842, + "relativeCreated": 12593.540668487549, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153730,8 +153677,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0176356, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.6011314, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153741,15 +153688,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 17.635583877563477, + "msecs": 601.1314392089844, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.362962722778, + "relativeCreated": 12593.623161315918, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153758,8 +153705,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0176778, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.601181, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153769,15 +153716,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 17.677783966064453, + "msecs": 601.1810302734375, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.40516281128, + "relativeCreated": 12593.672752380371, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153785,8 +153732,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0177348, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.6012385, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153796,15 +153743,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 17.734766006469727, + "msecs": 601.238489151001, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.462144851685, + "relativeCreated": 12593.730211257935, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153813,8 +153760,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0177753, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.6012793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153824,15 +153771,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 17.775297164916992, + "msecs": 601.2792587280273, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.502676010132, + "relativeCreated": 12593.770980834961, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153840,8 +153787,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0178356, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.6013348, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153851,15 +153798,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 17.835617065429688, + "msecs": 601.334810256958, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.562995910645, + "relativeCreated": 12593.826532363892, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153868,8 +153815,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0178764, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.6013818, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153879,15 +153826,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 17.876386642456055, + "msecs": 601.381778717041, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.60376548767, + "relativeCreated": 12593.873500823975, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153895,8 +153842,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:42,017", - "created": 1610361462.0179584, + "asctime": "2021-01-14 00:26:24,601", + "created": 1610580384.6014652, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153906,15 +153853,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 17.958402633666992, + "msecs": 601.4652252197266, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12581.685781478882, + "relativeCreated": 12593.95694732666, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153922,8 +153869,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:42,018", - "created": 1610361462.018904, + "asctime": "2021-01-14 00:26:24,602", + "created": 1610580384.6023846, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -153933,15 +153880,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 18.90397071838379, + "msecs": 602.3845672607422, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12582.631349563599, + "relativeCreated": 12594.876289367676, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153949,8 +153896,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,019", - "created": 1610361462.019025, + "asctime": "2021-01-14 00:26:24,602", + "created": 1610580384.6024628, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153960,15 +153907,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 19.025087356567383, + "msecs": 602.4627685546875, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12582.752466201782, + "relativeCreated": 12594.954490661621, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -153977,8 +153924,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,019", - "created": 1610361462.0190873, + "asctime": "2021-01-14 00:26:24,602", + "created": 1610580384.6025147, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -153988,15 +153935,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 19.08731460571289, + "msecs": 602.5147438049316, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12582.814693450928, + "relativeCreated": 12595.006465911865, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -154004,8 +153951,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:42,019", - "created": 1610361462.019167, + "asctime": "2021-01-14 00:26:24,602", + "created": 1610580384.6025975, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154015,15 +153962,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 19.166946411132812, + "msecs": 602.5974750518799, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12582.894325256348, + "relativeCreated": 12595.089197158813, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -154034,26 +153981,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,019", - "created": 1610361462.0193088, + "asctime": "2021-01-14 00:26:24,602", + "created": 1610580384.602744, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 19.308805465698242, + "msecs": 602.7441024780273, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12583.036184310913, + "relativeCreated": 12595.235824584961, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -154061,26 +154008,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:42,019", - "created": 1610361462.0193677, + "asctime": "2021-01-14 00:26:24,602", + "created": 1610580384.6028104, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 19.367694854736328, + "msecs": 602.8103828430176, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12583.095073699951, + "relativeCreated": 12595.302104949951, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -154091,26 +154038,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,019", - "created": 1610361462.0194476, + "asctime": "2021-01-14 00:26:24,602", + "created": 1610580384.6028974, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 19.44756507873535, + "msecs": 602.8974056243896, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12583.17494392395, + "relativeCreated": 12595.389127731323, "stack_info": null, - "thread": 139976440264448, + "thread": 140581418280704, "threadName": "Thread-17" }, { @@ -154118,8 +154065,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,019", - "created": 1610361462.0197163, + "asctime": "2021-01-14 00:26:24,603", + "created": 1610580384.6031713, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154129,15 +154076,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 19.716262817382812, + "msecs": 603.1713485717773, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12583.443641662598, + "relativeCreated": 12595.663070678711, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154145,8 +154092,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,027", - "created": 1610361462.0279403, + "asctime": "2021-01-14 00:26:24,611", + "created": 1610580384.6113992, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154156,15 +154103,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 27.94027328491211, + "msecs": 611.3991737365723, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12591.667652130127, + "relativeCreated": 12603.890895843506, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154172,8 +154119,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0281134, + "asctime": "2021-01-14 00:26:24,611", + "created": 1610580384.6115797, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154183,15 +154130,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 28.113365173339844, + "msecs": 611.5796566009521, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12591.840744018555, + "relativeCreated": 12604.071378707886, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154200,8 +154147,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0282006, + "asctime": "2021-01-14 00:26:24,611", + "created": 1610580384.6116698, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154211,15 +154158,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 28.200626373291016, + "msecs": 611.6697788238525, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12591.928005218506, + "relativeCreated": 12604.161500930786, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154227,8 +154174,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0283067, + "asctime": "2021-01-14 00:26:24,611", + "created": 1610580384.6117775, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154238,15 +154185,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 28.30672264099121, + "msecs": 611.7775440216064, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.034101486206, + "relativeCreated": 12604.26926612854, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154255,8 +154202,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0283961, + "asctime": "2021-01-14 00:26:24,611", + "created": 1610580384.6118698, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154266,15 +154213,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 28.396129608154297, + "msecs": 611.8698120117188, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.12350845337, + "relativeCreated": 12604.361534118652, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154282,8 +154229,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0285044, + "asctime": "2021-01-14 00:26:24,611", + "created": 1610580384.6119814, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154293,15 +154240,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 28.504371643066406, + "msecs": 611.9813919067383, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.231750488281, + "relativeCreated": 12604.473114013672, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154310,8 +154257,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0285811, + "asctime": "2021-01-14 00:26:24,612", + "created": 1610580384.6120577, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154321,15 +154268,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 28.58114242553711, + "msecs": 612.0576858520508, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.308521270752, + "relativeCreated": 12604.549407958984, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154337,8 +154284,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0286775, + "asctime": "2021-01-14 00:26:24,612", + "created": 1610580384.6121535, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154348,15 +154295,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 28.67746353149414, + "msecs": 612.1535301208496, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.404842376709, + "relativeCreated": 12604.645252227783, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154365,8 +154312,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0287683, + "asctime": "2021-01-14 00:26:24,612", + "created": 1610580384.6122255, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154376,15 +154323,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 28.768301010131836, + "msecs": 612.2255325317383, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.495679855347, + "relativeCreated": 12604.717254638672, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154392,8 +154339,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0288656, + "asctime": "2021-01-14 00:26:24,612", + "created": 1610580384.6123168, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154403,15 +154350,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 28.865575790405273, + "msecs": 612.3168468475342, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.59295463562, + "relativeCreated": 12604.808568954468, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154420,8 +154367,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,028", - "created": 1610361462.0289435, + "asctime": "2021-01-14 00:26:24,612", + "created": 1610580384.6123857, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154431,15 +154378,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 28.943538665771484, + "msecs": 612.3857498168945, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.670917510986, + "relativeCreated": 12604.877471923828, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154447,8 +154394,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:42,029", - "created": 1610361462.0290742, + "asctime": "2021-01-14 00:26:24,612", + "created": 1610580384.612516, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154458,15 +154405,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 29.07419204711914, + "msecs": 612.515926361084, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12592.801570892334, + "relativeCreated": 12605.007648468018, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154474,8 +154421,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:42,030", - "created": 1610361462.0300426, + "asctime": "2021-01-14 00:26:24,613", + "created": 1610580384.6134584, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154485,15 +154432,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 30.042648315429688, + "msecs": 613.4583950042725, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12593.770027160645, + "relativeCreated": 12605.950117111206, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154501,8 +154448,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,030", - "created": 1610361462.030228, + "asctime": "2021-01-14 00:26:24,613", + "created": 1610580384.6135933, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154512,15 +154459,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 30.2278995513916, + "msecs": 613.593339920044, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12593.955278396606, + "relativeCreated": 12606.085062026978, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154529,8 +154476,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,030", - "created": 1610361462.030317, + "asctime": "2021-01-14 00:26:24,613", + "created": 1610580384.613682, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154540,15 +154487,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 30.317068099975586, + "msecs": 613.6820316314697, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12594.04444694519, + "relativeCreated": 12606.173753738403, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154556,8 +154503,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:42,030", - "created": 1610361462.0304618, + "asctime": "2021-01-14 00:26:24,613", + "created": 1610580384.613822, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -154567,15 +154514,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 30.461788177490234, + "msecs": 613.8219833374023, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12594.189167022705, + "relativeCreated": 12606.313705444336, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154586,26 +154533,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,030", - "created": 1610361462.030674, + "asctime": "2021-01-14 00:26:24,614", + "created": 1610580384.6140385, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 30.673980712890625, + "msecs": 614.0384674072266, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12594.401359558105, + "relativeCreated": 12606.53018951416, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" }, { @@ -154613,45 +154560,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:42,030", - "created": 1610361462.0307734, + "asctime": "2021-01-14 00:26:24,614", + "created": 1610580384.6141398, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 30.773401260375977, + "msecs": 614.1397953033447, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12594.50078010559, + "relativeCreated": 12606.631517410278, "stack_info": null, - "thread": 139976431871744, + "thread": 140581409888000, "threadName": "Thread-18" } ], - "msecs": 352.1904945373535, + "msecs": 935.5969429016113, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12915.917873382568, + "relativeCreated": 12928.088665008545, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.32141709327697754 + "time_consumption": 0.3214571475982666 }, { "args": [], - "asctime": "2021-01-11 11:37:42,352", - "created": 1610361462.3529446, + "asctime": "2021-01-14 00:26:24,936", + "created": 1610580384.9363847, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -154668,45 +154615,45 @@ 10, 18 ], - "asctime": "2021-01-11 11:37:42,352", - "created": 1610361462.3527043, + "asctime": "2021-01-14 00:26:24,936", + "created": 1610580384.936178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 571, + "lineno": 583, "message": "prot-server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", "module": "__init__", - "msecs": 352.7042865753174, + "msecs": 936.1779689788818, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because request SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12916.431665420532, + "relativeCreated": 12928.669691085815, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 352.94461250305176, + "msecs": 936.3846778869629, "msg": "Adding a service with an already registered request SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12916.671991348267, + "relativeCreated": 12928.876399993896, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000240325927734375 + "time_consumption": 0.0002067089080810547 }, { "args": [], - "asctime": "2021-01-11 11:37:42,353", - "created": 1610361462.3531704, + "asctime": "2021-01-14 00:26:24,936", + "created": 1610580384.9366167, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -154717,22 +154664,22 @@ "message": "Expected Exception RequestSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 353.17039489746094, + "msecs": 936.6166591644287, "msg": "Expected Exception RequestSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12916.897773742676, + "relativeCreated": 12929.108381271362, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:42,353", - "created": 1610361462.3535554, + "asctime": "2021-01-14 00:26:24,936", + "created": 1610580384.9369924, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -154749,45 +154696,45 @@ 17, 11 ], - "asctime": "2021-01-11 11:37:42,353", - "created": 1610361462.3534067, + "asctime": "2021-01-14 00:26:24,936", + "created": 1610580384.9368443, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 574, + "lineno": 586, "message": "prot-server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", "module": "__init__", - "msecs": 353.4066677093506, + "msecs": 936.8443489074707, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because response SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12917.134046554565, + "relativeCreated": 12929.336071014404, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 353.55544090270996, + "msecs": 936.9924068450928, "msg": "Adding a service with an already registered response SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12917.282819747925, + "relativeCreated": 12929.484128952026, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000148773193359375 + "time_consumption": 0.0001480579376220703 }, { "args": [], - "asctime": "2021-01-11 11:37:42,353", - "created": 1610361462.3537512, + "asctime": "2021-01-14 00:26:24,937", + "created": 1610580384.9372637, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -154798,29 +154745,29 @@ "message": "Expected Exception ResponseSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 353.75118255615234, + "msecs": 937.2637271881104, "msg": "Expected Exception ResponseSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12917.478561401367, + "relativeCreated": 12929.755449295044, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3550083637237549, - "time_finished": "2021-01-11 11:37:42,353", - "time_start": "2021-01-11 11:37:41,998" + "time_consumption": 0.3557593822479248, + "time_finished": "2021-01-14 00:26:24,937", + "time_start": "2021-01-14 00:26:24,581" }, "_aA508E4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:46,151", - "created": 1610361466.1519709, + "asctime": "2021-01-14 00:26:28,739", + "created": 1610580388.7392895, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154831,19 +154778,19 @@ "message": "_aA508E4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 151.97086334228516, + "msecs": 739.2895221710205, "msg": "_aA508E4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16715.6982421875, + "relativeCreated": 16731.781244277954, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:46,162", - "created": 1610361466.1620445, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.748607, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -154858,8 +154805,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,153", - "created": 1610361466.153714, + "asctime": "2021-01-14 00:26:28,741", + "created": 1610580388.7412114, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154869,23 +154816,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 153.71394157409668, + "msecs": 741.2114143371582, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16717.44132041931, + "relativeCreated": 16733.70313644409, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,154", - "created": 1610361466.1545925, + "asctime": "2021-01-14 00:26:28,742", + "created": 1610580388.7420835, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154895,23 +154842,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 154.59251403808594, + "msecs": 742.0835494995117, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16718.3198928833, + "relativeCreated": 16734.575271606445, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,154", - "created": 1610361466.1548157, + "asctime": "2021-01-14 00:26:28,742", + "created": 1610580388.7422998, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -154921,41 +154868,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 154.815673828125, + "msecs": 742.2997951507568, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16718.54305267334, + "relativeCreated": 16734.79151725769, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,155", - "created": 1610361466.155138, + "asctime": "2021-01-14 00:26:28,742", + "created": 1610580388.7426357, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 155.1380157470703, + "msecs": 742.6357269287109, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16718.865394592285, + "relativeCreated": 16735.127449035645, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -154964,26 +154911,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:46,155", - "created": 1610361466.1553133, + "asctime": "2021-01-14 00:26:28,742", + "created": 1610580388.7428596, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 155.31325340270996, + "msecs": 742.8596019744873, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16719.040632247925, + "relativeCreated": 16735.35132408142, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -154991,26 +154938,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,155", - "created": 1610361466.1555283, + "asctime": "2021-01-14 00:26:28,743", + "created": 1610580388.743099, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 155.52830696105957, + "msecs": 743.0989742279053, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16719.255685806274, + "relativeCreated": 16735.59069633484, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155018,26 +154965,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,155", - "created": 1610361466.1556838, + "asctime": "2021-01-14 00:26:28,743", + "created": 1610580388.743258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 155.6837558746338, + "msecs": 743.257999420166, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16719.41113471985, + "relativeCreated": 16735.7497215271, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155045,26 +154992,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:46,155", - "created": 1610361466.1558313, + "asctime": "2021-01-14 00:26:28,743", + "created": 1610580388.7434049, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 155.83133697509766, + "msecs": 743.4048652648926, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16719.558715820312, + "relativeCreated": 16735.896587371826, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155072,26 +155019,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:46,155", - "created": 1610361466.1559944, + "asctime": "2021-01-14 00:26:28,743", + "created": 1610580388.7435608, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 155.99441528320312, + "msecs": 743.560791015625, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16719.721794128418, + "relativeCreated": 16736.05251312256, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155101,8 +155048,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:46,156", - "created": 1610361466.156154, + "asctime": "2021-01-14 00:26:28,743", + "created": 1610580388.74373, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155112,15 +155059,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 156.15391731262207, + "msecs": 743.7300682067871, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16719.881296157837, + "relativeCreated": 16736.22179031372, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155130,8 +155077,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:46,156", - "created": 1610361466.1563122, + "asctime": "2021-01-14 00:26:28,744", + "created": 1610580388.7442994, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155141,15 +155088,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 156.3122272491455, + "msecs": 744.2994117736816, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16720.03960609436, + "relativeCreated": 16736.791133880615, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155159,8 +155106,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:46,156", - "created": 1610361466.1569278, + "asctime": "2021-01-14 00:26:28,744", + "created": 1610580388.744482, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155170,15 +155117,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 156.92782402038574, + "msecs": 744.4820404052734, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16720.6552028656, + "relativeCreated": 16736.973762512207, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155188,8 +155135,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:46,157", - "created": 1610361466.157093, + "asctime": "2021-01-14 00:26:28,744", + "created": 1610580388.744643, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155199,41 +155146,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 157.09304809570312, + "msecs": 744.642972946167, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16720.820426940918, + "relativeCreated": 16737.1346950531, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,157", - "created": 1610361466.1572335, + "asctime": "2021-01-14 00:26:28,744", + "created": 1610580388.7447824, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 157.23347663879395, + "msecs": 744.7824478149414, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16720.96085548401, + "relativeCreated": 16737.274169921875, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155242,26 +155189,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:46,157", - "created": 1610361466.1574092, + "asctime": "2021-01-14 00:26:28,744", + "created": 1610580388.7449374, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 157.4091911315918, + "msecs": 744.9374198913574, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16721.136569976807, + "relativeCreated": 16737.42914199829, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155269,26 +155216,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:46,157", - "created": 1610361466.1575801, + "asctime": "2021-01-14 00:26:28,745", + "created": 1610580388.7451053, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 157.58013725280762, + "msecs": 745.1052665710449, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16721.307516098022, + "relativeCreated": 16737.59698867798, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155296,26 +155243,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:46,157", - "created": 1610361466.1577268, + "asctime": "2021-01-14 00:26:28,745", + "created": 1610580388.7452812, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 157.72676467895508, + "msecs": 745.2812194824219, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16721.45414352417, + "relativeCreated": 16737.772941589355, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155325,8 +155272,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:46,157", - "created": 1610361466.1578913, + "asctime": "2021-01-14 00:26:28,745", + "created": 1610580388.7454526, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155336,15 +155283,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 157.89127349853516, + "msecs": 745.4526424407959, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16721.61865234375, + "relativeCreated": 16737.94436454773, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155354,8 +155301,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:46,158", - "created": 1610361466.1580653, + "asctime": "2021-01-14 00:26:28,745", + "created": 1610580388.7456222, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155365,15 +155312,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 158.0653190612793, + "msecs": 745.6221580505371, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16721.792697906494, + "relativeCreated": 16738.11388015747, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155382,26 +155329,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:46,158", - "created": 1610361466.1582162, + "asctime": "2021-01-14 00:26:28,745", + "created": 1610580388.745784, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 158.2162380218506, + "msecs": 745.7840442657471, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16721.943616867065, + "relativeCreated": 16738.27576637268, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155410,26 +155357,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:46,158", - "created": 1610361466.1583552, + "asctime": "2021-01-14 00:26:28,745", + "created": 1610580388.7459254, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 158.3552360534668, + "msecs": 745.9254264831543, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16722.08261489868, + "relativeCreated": 16738.417148590088, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155438,78 +155385,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:46,158", - "created": 1610361466.1584911, + "asctime": "2021-01-14 00:26:28,746", + "created": 1610580388.746062, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 158.4911346435547, + "msecs": 746.0620403289795, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16722.21851348877, + "relativeCreated": 16738.553762435913, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,158", - "created": 1610361466.1586292, + "asctime": "2021-01-14 00:26:28,746", + "created": 1610580388.7461996, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 158.6291790008545, + "msecs": 746.1996078491211, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16722.35655784607, + "relativeCreated": 16738.691329956055, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,158", - "created": 1610361466.1589077, + "asctime": "2021-01-14 00:26:28,746", + "created": 1610580388.746485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 158.90765190124512, + "msecs": 746.4849948883057, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16722.63503074646, + "relativeCreated": 16738.97671699524, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155518,26 +155465,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:46,159", - "created": 1610361466.1590757, + "asctime": "2021-01-14 00:26:28,746", + "created": 1610580388.7466404, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 159.07573699951172, + "msecs": 746.6404438018799, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16722.803115844727, + "relativeCreated": 16739.132165908813, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155545,26 +155492,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,159", - "created": 1610361466.1592875, + "asctime": "2021-01-14 00:26:28,746", + "created": 1610580388.7468612, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 159.2874526977539, + "msecs": 746.8612194061279, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16723.01483154297, + "relativeCreated": 16739.35294151306, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155572,26 +155519,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,159", - "created": 1610361466.1594357, + "asctime": "2021-01-14 00:26:28,747", + "created": 1610580388.747018, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 159.43574905395508, + "msecs": 747.0180988311768, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16723.16312789917, + "relativeCreated": 16739.50982093811, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155599,26 +155546,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:46,159", - "created": 1610361466.1595771, + "asctime": "2021-01-14 00:26:28,747", + "created": 1610580388.747161, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 159.5771312713623, + "msecs": 747.1609115600586, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16723.304510116577, + "relativeCreated": 16739.652633666992, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155626,26 +155573,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:46,159", - "created": 1610361466.1597376, + "asctime": "2021-01-14 00:26:28,747", + "created": 1610580388.7473116, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 159.73758697509766, + "msecs": 747.3115921020508, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16723.464965820312, + "relativeCreated": 16739.803314208984, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155655,8 +155602,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:46,159", - "created": 1610361466.1598878, + "asctime": "2021-01-14 00:26:28,747", + "created": 1610580388.7474701, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155666,15 +155613,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 159.88779067993164, + "msecs": 747.4701404571533, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16723.615169525146, + "relativeCreated": 16739.961862564087, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155684,8 +155631,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:46,160", - "created": 1610361466.160067, + "asctime": "2021-01-14 00:26:28,747", + "created": 1610580388.7476346, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155695,15 +155642,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 160.06708145141602, + "msecs": 747.6346492767334, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16723.79446029663, + "relativeCreated": 16740.126371383667, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155713,8 +155660,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:46,160", - "created": 1610361466.1602194, + "asctime": "2021-01-14 00:26:28,747", + "created": 1610580388.7479928, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155724,15 +155671,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 160.2194309234619, + "msecs": 747.992753982544, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16723.946809768677, + "relativeCreated": 16740.484476089478, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155742,8 +155689,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:46,160", - "created": 1610361466.160367, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7480721, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155753,41 +155700,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 160.36701202392578, + "msecs": 748.0721473693848, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16724.09439086914, + "relativeCreated": 16740.56386947632, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,160", - "created": 1610361466.1605003, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7481294, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 160.50028800964355, + "msecs": 748.1293678283691, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16724.22766685486, + "relativeCreated": 16740.621089935303, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155796,26 +155743,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:46,160", - "created": 1610361466.160649, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7481833, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 160.64906120300293, + "msecs": 748.1832504272461, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16724.376440048218, + "relativeCreated": 16740.67497253418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155823,26 +155770,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:46,160", - "created": 1610361466.1608448, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.748238, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 160.8448028564453, + "msecs": 748.2380867004395, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16724.57218170166, + "relativeCreated": 16740.729808807373, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155850,26 +155797,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:46,160", - "created": 1610361466.1609926, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7482843, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 160.99262237548828, + "msecs": 748.2843399047852, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16724.720001220703, + "relativeCreated": 16740.77606201172, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155879,8 +155826,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:46,161", - "created": 1610361466.161138, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7483315, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155890,15 +155837,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 161.13805770874023, + "msecs": 748.3315467834473, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16724.865436553955, + "relativeCreated": 16740.82326889038, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155908,8 +155855,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:46,161", - "created": 1610361466.1613102, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7483838, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -155919,15 +155866,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 161.31019592285156, + "msecs": 748.3837604522705, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16725.037574768066, + "relativeCreated": 16740.875482559204, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155936,26 +155883,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:46,161", - "created": 1610361466.1614668, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7484355, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 161.4668369293213, + "msecs": 748.4354972839355, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16725.194215774536, + "relativeCreated": 16740.92721939087, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155964,26 +155911,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:46,161", - "created": 1610361466.1616297, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.748479, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 161.62967681884766, + "msecs": 748.478889465332, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16725.357055664062, + "relativeCreated": 16740.970611572266, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -155992,71 +155939,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:46,161", - "created": 1610361466.1617653, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7485206, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 161.76533699035645, + "msecs": 748.5206127166748, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16725.49271583557, + "relativeCreated": 16741.01233482361, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,161", - "created": 1610361466.161915, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7485666, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 161.91506385803223, + "msecs": 748.5666275024414, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16725.642442703247, + "relativeCreated": 16741.058349609375, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 162.04452514648438, + "msecs": 748.6069202423096, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16725.7719039917, + "relativeCreated": 16741.098642349243, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00012946128845214844 + "time_consumption": 4.029273986816406e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:46,507", - "created": 1610361466.507059, + "asctime": "2021-01-14 00:26:29,092", + "created": 1610580389.0923612, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -156071,8 +156018,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,162", - "created": 1610361466.162333, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7486994, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156082,23 +156029,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 162.33301162719727, + "msecs": 748.699426651001, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16726.060390472412, + "relativeCreated": 16741.191148757935, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,162", - "created": 1610361466.1624758, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7487438, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156108,41 +156055,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 162.4758243560791, + "msecs": 748.7437725067139, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16726.203203201294, + "relativeCreated": 16741.235494613647, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,162", - "created": 1610361466.162626, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7487955, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 162.6260280609131, + "msecs": 748.7955093383789, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16726.353406906128, + "relativeCreated": 16741.287231445312, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -156153,34 +156100,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,162", - "created": 1610361466.1628664, + "asctime": "2021-01-14 00:26:28,748", + "created": 1610580388.7488742, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 162.86635398864746, + "msecs": 748.8741874694824, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16726.593732833862, + "relativeCreated": 16741.365909576416, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,163", - "created": 1610361466.1634054, + "asctime": "2021-01-14 00:26:28,749", + "created": 1610580388.749044, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156190,23 +156137,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 163.4054183959961, + "msecs": 749.0439414978027, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16727.13279724121, + "relativeCreated": 16741.535663604736, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,163", - "created": 1610361466.1635795, + "asctime": "2021-01-14 00:26:28,749", + "created": 1610580388.7490945, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156216,41 +156163,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 163.57946395874023, + "msecs": 749.0944862365723, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16727.306842803955, + "relativeCreated": 16741.586208343506, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,163", - "created": 1610361466.163726, + "asctime": "2021-01-14 00:26:28,749", + "created": 1610580388.7491608, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 163.7260913848877, + "msecs": 749.1607666015625, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16727.453470230103, + "relativeCreated": 16741.652488708496, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -156258,8 +156205,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,164", - "created": 1610361466.1640697, + "asctime": "2021-01-14 00:26:28,749", + "created": 1610580388.7493079, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156269,15 +156216,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 164.06965255737305, + "msecs": 749.3078708648682, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16727.797031402588, + "relativeCreated": 16741.7995929718, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156285,8 +156232,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1722696, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.7574418, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156296,15 +156243,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 172.2695827484131, + "msecs": 757.4417591094971, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16735.996961593628, + "relativeCreated": 16749.93348121643, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156312,8 +156259,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1723976, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.757583, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156323,15 +156270,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 172.39761352539062, + "msecs": 757.5829029083252, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.124992370605, + "relativeCreated": 16750.07462501526, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156340,8 +156287,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1724503, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.757636, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156351,15 +156298,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 172.45030403137207, + "msecs": 757.6360702514648, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.177682876587, + "relativeCreated": 16750.1277923584, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156367,8 +156314,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1725185, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.7577047, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156378,15 +156325,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 172.51849174499512, + "msecs": 757.7047348022461, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.24587059021, + "relativeCreated": 16750.19645690918, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156395,8 +156342,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1725633, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.7577484, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156406,15 +156353,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 172.5633144378662, + "msecs": 757.7483654022217, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.29069328308, + "relativeCreated": 16750.240087509155, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156422,8 +156369,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1726267, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.7578123, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156433,15 +156380,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 172.62673377990723, + "msecs": 757.8122615814209, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.354112625122, + "relativeCreated": 16750.303983688354, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156450,8 +156397,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.172668, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.7578545, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156461,15 +156408,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 172.6679801940918, + "msecs": 757.8544616699219, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.395359039307, + "relativeCreated": 16750.346183776855, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156477,8 +156424,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1727238, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.757913, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156488,15 +156435,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 172.72377014160156, + "msecs": 757.9131126403809, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.451148986816, + "relativeCreated": 16750.404834747314, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156505,8 +156452,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1727831, + "asctime": "2021-01-14 00:26:28,757", + "created": 1610580388.7579541, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156516,15 +156463,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 172.78313636779785, + "msecs": 757.9541206359863, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.510515213013, + "relativeCreated": 16750.44584274292, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156532,8 +156479,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1728394, + "asctime": "2021-01-14 00:26:28,758", + "created": 1610580388.7580078, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156543,15 +156490,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 172.83940315246582, + "msecs": 758.0077648162842, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.56678199768, + "relativeCreated": 16750.499486923218, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156560,8 +156507,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.172881, + "asctime": "2021-01-14 00:26:28,758", + "created": 1610580388.7580483, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156571,15 +156518,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 172.8808879852295, + "msecs": 758.0482959747314, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.608266830444, + "relativeCreated": 16750.540018081665, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156587,8 +156534,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:46,172", - "created": 1610361466.1729598, + "asctime": "2021-01-14 00:26:28,758", + "created": 1610580388.7581327, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156598,15 +156545,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 172.9598045349121, + "msecs": 758.1326961517334, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16736.687183380127, + "relativeCreated": 16750.624418258667, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156614,8 +156561,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:46,173", - "created": 1610361466.1739025, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.75909, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156625,15 +156572,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 173.9025115966797, + "msecs": 759.0899467468262, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16737.629890441895, + "relativeCreated": 16751.58166885376, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156641,8 +156588,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,174", - "created": 1610361466.1740253, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.7592185, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156652,15 +156599,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 174.025297164917, + "msecs": 759.2184543609619, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16737.752676010132, + "relativeCreated": 16751.710176467896, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156669,8 +156616,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,174", - "created": 1610361466.1740766, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.7592711, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156680,15 +156627,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 174.07655715942383, + "msecs": 759.2711448669434, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16737.80393600464, + "relativeCreated": 16751.762866973877, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156696,8 +156643,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:46,174", - "created": 1610361466.174162, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.7593658, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156707,15 +156654,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 174.1619110107422, + "msecs": 759.3657970428467, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16737.889289855957, + "relativeCreated": 16751.85751914978, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156726,26 +156673,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,174", - "created": 1610361466.1743014, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.7595024, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 174.3013858795166, + "msecs": 759.5024108886719, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16738.02876472473, + "relativeCreated": 16751.994132995605, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156753,26 +156700,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:46,174", - "created": 1610361466.1743639, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.7595615, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 174.3638515472412, + "msecs": 759.5615386962891, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16738.091230392456, + "relativeCreated": 16752.053260803223, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156783,26 +156730,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,174", - "created": 1610361466.1744428, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.7596436, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 174.44276809692383, + "msecs": 759.6435546875, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16738.17014694214, + "relativeCreated": 16752.135276794434, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -156810,8 +156757,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,174", - "created": 1610361466.1747663, + "asctime": "2021-01-14 00:26:28,759", + "created": 1610580388.7599294, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156821,15 +156768,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 174.76630210876465, + "msecs": 759.9294185638428, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16738.49368095398, + "relativeCreated": 16752.421140670776, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -156837,8 +156784,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1830342, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.7681963, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -156848,15 +156795,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 183.03418159484863, + "msecs": 768.1963443756104, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16746.761560440063, + "relativeCreated": 16760.688066482544, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -156864,8 +156811,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1831946, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.768386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156875,15 +156822,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 183.19463729858398, + "msecs": 768.3858871459961, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16746.9220161438, + "relativeCreated": 16760.87760925293, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -156892,8 +156839,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1832767, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.768471, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156903,15 +156850,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 183.27665328979492, + "msecs": 768.4710025787354, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.00403213501, + "relativeCreated": 16760.96272468567, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -156919,8 +156866,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1833744, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.7685711, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156930,15 +156877,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 183.37440490722656, + "msecs": 768.571138381958, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.10178375244, + "relativeCreated": 16761.06286048889, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -156947,8 +156894,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.183444, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.7686436, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156958,15 +156905,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 183.44402313232422, + "msecs": 768.6436176300049, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.17140197754, + "relativeCreated": 16761.13533973694, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -156974,8 +156921,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1835432, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.7687452, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -156985,15 +156932,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 183.54320526123047, + "msecs": 768.7451839447021, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.270584106445, + "relativeCreated": 16761.236906051636, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157002,8 +156949,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1836238, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.7688293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157013,15 +156960,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 183.6237907409668, + "msecs": 768.829345703125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.35116958618, + "relativeCreated": 16761.32106781006, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157029,8 +156976,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1837134, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.7689204, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157040,15 +156987,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 183.71343612670898, + "msecs": 768.9204216003418, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.440814971924, + "relativeCreated": 16761.412143707275, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157057,8 +157004,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.1837804, + "asctime": "2021-01-14 00:26:28,768", + "created": 1610580388.7689881, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157068,15 +157015,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 183.78043174743652, + "msecs": 768.9881324768066, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.50781059265, + "relativeCreated": 16761.47985458374, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157084,8 +157031,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.183875, + "asctime": "2021-01-14 00:26:28,769", + "created": 1610580388.769081, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157095,15 +157042,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 183.87508392333984, + "msecs": 769.0811157226562, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.602462768555, + "relativeCreated": 16761.57283782959, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157112,8 +157059,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,183", - "created": 1610361466.183941, + "asctime": "2021-01-14 00:26:28,769", + "created": 1610580388.7691684, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157123,15 +157070,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 183.94088745117188, + "msecs": 769.1683769226074, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.668266296387, + "relativeCreated": 16761.66009902954, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157139,8 +157086,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:46,184", - "created": 1610361466.184066, + "asctime": "2021-01-14 00:26:28,769", + "created": 1610580388.7692978, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157150,15 +157097,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 184.0660572052002, + "msecs": 769.2978382110596, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16747.793436050415, + "relativeCreated": 16761.789560317993, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157166,8 +157113,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:46,184", - "created": 1610361466.1849694, + "asctime": "2021-01-14 00:26:28,770", + "created": 1610580388.770298, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157177,15 +157124,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 184.96942520141602, + "msecs": 770.2980041503906, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16748.69680404663, + "relativeCreated": 16762.789726257324, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157193,8 +157140,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,185", - "created": 1610361466.1850924, + "asctime": "2021-01-14 00:26:28,770", + "created": 1610580388.77049, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157204,15 +157151,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 185.09244918823242, + "msecs": 770.4899311065674, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16748.819828033447, + "relativeCreated": 16762.9816532135, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157221,8 +157168,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,185", - "created": 1610361466.1851733, + "asctime": "2021-01-14 00:26:28,770", + "created": 1610580388.7705839, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157232,15 +157179,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 185.17327308654785, + "msecs": 770.5838680267334, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16748.900651931763, + "relativeCreated": 16763.075590133667, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157248,8 +157195,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:46,185", - "created": 1610361466.185292, + "asctime": "2021-01-14 00:26:28,770", + "created": 1610580388.7707188, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -157259,15 +157206,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 185.29200553894043, + "msecs": 770.7188129425049, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16749.019384384155, + "relativeCreated": 16763.21053504944, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157278,26 +157225,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,185", - "created": 1610361466.1854866, + "asctime": "2021-01-14 00:26:28,770", + "created": 1610580388.7709355, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 185.4865550994873, + "msecs": 770.9355354309082, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16749.213933944702, + "relativeCreated": 16763.42725753784, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -157305,48 +157252,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:46,185", - "created": 1610361466.1855795, + "asctime": "2021-01-14 00:26:28,771", + "created": 1610580388.7710397, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 185.5795383453369, + "msecs": 771.0397243499756, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16749.30691719055, + "relativeCreated": 16763.53144645691, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" } ], - "msecs": 507.05909729003906, + "msecs": 92.3612117767334, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17070.786476135254, + "relativeCreated": 17084.852933883667, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.32147955894470215 + "time_consumption": 0.3213214874267578 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:46,507", - "created": 1610361466.5079148, + "asctime": "2021-01-14 00:26:29,093", + "created": 1610580389.0933733, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157363,8 +157310,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,507", - "created": 1610361466.5075843, + "asctime": "2021-01-14 00:26:29,092", + "created": 1610580389.0929701, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157374,15 +157321,15 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 507.5843334197998, + "msecs": 92.97013282775879, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17071.311712265015, + "relativeCreated": 17085.461854934692, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -157391,8 +157338,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,507", - "created": 1610361466.5077617, + "asctime": "2021-01-14 00:26:29,093", + "created": 1610580389.093195, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157402,37 +157349,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 507.76171684265137, + "msecs": 93.19496154785156, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17071.489095687866, + "relativeCreated": 17085.686683654785, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 507.91478157043457, + "msecs": 93.37329864501953, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17071.64216041565, + "relativeCreated": 17085.865020751953, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 + "time_consumption": 0.00017833709716796875 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:46,508", - "created": 1610361466.5084777, + "asctime": "2021-01-14 00:26:29,093", + "created": 1610580389.0938978, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157449,8 +157396,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,508", - "created": 1610361466.508183, + "asctime": "2021-01-14 00:26:29,093", + "created": 1610580389.0936148, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157460,15 +157407,15 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 508.1830024719238, + "msecs": 93.61481666564941, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17071.91038131714, + "relativeCreated": 17086.106538772583, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -157477,8 +157424,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,508", - "created": 1610361466.5083268, + "asctime": "2021-01-14 00:26:29,093", + "created": 1610580389.093752, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157488,37 +157435,37 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 508.32676887512207, + "msecs": 93.75190734863281, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17072.054147720337, + "relativeCreated": 17086.243629455566, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 508.47768783569336, + "msecs": 93.89781951904297, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17072.20506668091, + "relativeCreated": 17086.389541625977, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015091896057128906 + "time_consumption": 0.00014591217041015625 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:46,509", - "created": 1610361466.5095878, + "asctime": "2021-01-14 00:26:29,094", + "created": 1610580389.0949607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157533,8 +157480,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,508", - "created": 1610361466.5086892, + "asctime": "2021-01-14 00:26:29,094", + "created": 1610580389.0941012, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157544,49 +157491,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 508.68916511535645, + "msecs": 94.1011905670166, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17072.41654396057, + "relativeCreated": 17086.59291267395, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,508", - "created": 1610361466.5088818, + "asctime": "2021-01-14 00:26:29,094", + "created": 1610580389.0942562, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 508.8818073272705, + "msecs": 94.25616264343262, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17072.609186172485, + "relativeCreated": 17086.747884750366, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,509", - "created": 1610361466.5090241, + "asctime": "2021-01-14 00:26:29,094", + "created": 1610580389.0943916, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157596,41 +157543,41 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 509.02414321899414, + "msecs": 94.3915843963623, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17072.75152206421, + "relativeCreated": 17086.883306503296, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,509", - "created": 1610361466.5091574, + "asctime": "2021-01-14 00:26:29,094", + "created": 1610580389.094521, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 509.1574192047119, + "msecs": 94.52104568481445, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17072.884798049927, + "relativeCreated": 17087.012767791748, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -157639,8 +157586,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,509", - "created": 1610361466.5093112, + "asctime": "2021-01-14 00:26:29,094", + "created": 1610580389.0946698, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157650,15 +157597,15 @@ "lineno": 22, "message": "Result (Client connection status): False ()", "module": "test", - "msecs": 509.3111991882324, + "msecs": 94.66981887817383, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17073.038578033447, + "relativeCreated": 17087.161540985107, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -157667,8 +157614,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,509", - "created": 1610361466.5094562, + "asctime": "2021-01-14 00:26:29,094", + "created": 1610580389.0948255, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157678,37 +157625,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = False ()", "module": "test", - "msecs": 509.4561576843262, + "msecs": 94.82550621032715, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17073.18353652954, + "relativeCreated": 17087.31722831726, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 509.58776473999023, + "msecs": 94.96068954467773, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17073.315143585205, + "relativeCreated": 17087.45241165161, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001316070556640625 + "time_consumption": 0.00013518333435058594 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:46,510", - "created": 1610361466.5100844, + "asctime": "2021-01-14 00:26:29,095", + "created": 1610580389.095464, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157725,8 +157672,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,509", - "created": 1610361466.5098195, + "asctime": "2021-01-14 00:26:29,095", + "created": 1610580389.0951931, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157736,15 +157683,15 @@ "lineno": 22, "message": "Result (Server connection status): False ()", "module": "test", - "msecs": 509.81950759887695, + "msecs": 95.19314765930176, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17073.54688644409, + "relativeCreated": 17087.684869766235, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -157753,8 +157700,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,509", - "created": 1610361466.509954, + "asctime": "2021-01-14 00:26:29,095", + "created": 1610580389.0953305, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -157764,34 +157711,34 @@ "lineno": 26, "message": "Expectation (Server connection status): result = False ()", "module": "test", - "msecs": 509.95397567749023, + "msecs": 95.33047676086426, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17073.681354522705, + "relativeCreated": 17087.822198867798, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 510.0843906402588, + "msecs": 95.46399116516113, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17073.811769485474, + "relativeCreated": 17087.955713272095, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001304149627685547 + "time_consumption": 0.000133514404296875 }, { "args": [], - "asctime": "2021-01-11 11:37:46,854", - "created": 1610361466.8546734, + "asctime": "2021-01-14 00:26:29,440", + "created": 1610580389.4405317, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -157806,8 +157753,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,510", - "created": 1610361466.5102873, + "asctime": "2021-01-14 00:26:29,095", + "created": 1610580389.09567, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157817,23 +157764,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 510.2872848510742, + "msecs": 95.66998481750488, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17074.01466369629, + "relativeCreated": 17088.16170692444, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,510", - "created": 1610361466.5104237, + "asctime": "2021-01-14 00:26:29,095", + "created": 1610580389.0958095, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157843,41 +157790,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 510.4236602783203, + "msecs": 95.8094596862793, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17074.151039123535, + "relativeCreated": 17088.301181793213, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,510", - "created": 1610361466.5105612, + "asctime": "2021-01-14 00:26:29,095", + "created": 1610580389.0959554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 510.5612277984619, + "msecs": 95.95537185668945, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17074.288606643677, + "relativeCreated": 17088.447093963623, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -157888,34 +157835,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,510", - "created": 1610361466.5108259, + "asctime": "2021-01-14 00:26:29,096", + "created": 1610580389.0962243, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 510.82587242126465, + "msecs": 96.22430801391602, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17074.55325126648, + "relativeCreated": 17088.71603012085, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,511", - "created": 1610361466.5113974, + "asctime": "2021-01-14 00:26:29,096", + "created": 1610580389.0968137, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157925,23 +157872,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 511.3973617553711, + "msecs": 96.81367874145508, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17075.124740600586, + "relativeCreated": 17089.30540084839, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,511", - "created": 1610361466.5115616, + "asctime": "2021-01-14 00:26:29,096", + "created": 1610580389.0969763, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -157951,41 +157898,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 511.56163215637207, + "msecs": 96.97628021240234, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17075.289011001587, + "relativeCreated": 17089.468002319336, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,511", - "created": 1610361466.5117326, + "asctime": "2021-01-14 00:26:29,097", + "created": 1610580389.097154, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 511.7325782775879, + "msecs": 97.15390205383301, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17075.459957122803, + "relativeCreated": 17089.645624160767, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -157993,8 +157940,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,512", - "created": 1610361466.5120332, + "asctime": "2021-01-14 00:26:29,097", + "created": 1610580389.09759, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158004,15 +157951,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 512.033224105835, + "msecs": 97.58996963500977, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17075.76060295105, + "relativeCreated": 17090.081691741943, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158020,8 +157967,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.5202901, + "asctime": "2021-01-14 00:26:29,105", + "created": 1610580389.1059144, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158031,15 +157978,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 520.2901363372803, + "msecs": 105.91435432434082, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.017515182495, + "relativeCreated": 17098.406076431274, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158047,8 +157994,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.5204506, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1061096, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158058,15 +158005,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 520.4505920410156, + "msecs": 106.109619140625, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.17797088623, + "relativeCreated": 17098.60134124756, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158075,8 +158022,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.520527, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1062033, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158086,15 +158033,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 520.5268859863281, + "msecs": 106.20331764221191, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.254264831543, + "relativeCreated": 17098.695039749146, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158102,8 +158049,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.5206175, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1063125, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158113,15 +158060,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 520.6174850463867, + "msecs": 106.31251335144043, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.3448638916, + "relativeCreated": 17098.804235458374, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158130,8 +158077,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.5206795, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.106389, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158141,15 +158088,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 520.6794738769531, + "msecs": 106.38904571533203, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.406852722168, + "relativeCreated": 17098.880767822266, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158157,8 +158104,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.520787, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.106498, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158168,15 +158115,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 520.7870006561279, + "msecs": 106.49800300598145, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.514379501343, + "relativeCreated": 17098.989725112915, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158185,8 +158132,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.5208495, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1065695, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158196,15 +158143,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 520.8494663238525, + "msecs": 106.56952857971191, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.576845169067, + "relativeCreated": 17099.061250686646, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158212,8 +158159,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.52093, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1066663, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158223,15 +158170,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 520.9300518035889, + "msecs": 106.66632652282715, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.657430648804, + "relativeCreated": 17099.15804862976, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158240,8 +158187,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,520", - "created": 1610361466.520988, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1067371, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158251,15 +158198,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 520.9879875183105, + "msecs": 106.73713684082031, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.715366363525, + "relativeCreated": 17099.228858947754, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158267,8 +158214,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,521", - "created": 1610361466.521065, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1068327, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158278,15 +158225,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 521.0649967193604, + "msecs": 106.83274269104004, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.792375564575, + "relativeCreated": 17099.324464797974, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158295,8 +158242,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,521", - "created": 1610361466.5211306, + "asctime": "2021-01-14 00:26:29,106", + "created": 1610580389.1069045, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158306,15 +158253,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 521.1305618286133, + "msecs": 106.90450668334961, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.857940673828, + "relativeCreated": 17099.396228790283, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158322,8 +158269,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:46,521", - "created": 1610361466.5212514, + "asctime": "2021-01-14 00:26:29,107", + "created": 1610580389.1070528, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158333,15 +158280,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 521.2514400482178, + "msecs": 107.05280303955078, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17084.978818893433, + "relativeCreated": 17099.544525146484, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158349,8 +158296,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:46,522", - "created": 1610361466.5222287, + "asctime": "2021-01-14 00:26:29,108", + "created": 1610580389.108076, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158360,15 +158307,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 522.2287178039551, + "msecs": 108.07609558105469, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17085.95609664917, + "relativeCreated": 17100.56781768799, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158376,8 +158323,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,522", - "created": 1610361466.5223901, + "asctime": "2021-01-14 00:26:29,108", + "created": 1610580389.1082923, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158387,15 +158334,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 522.3901271820068, + "msecs": 108.2923412322998, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17086.11750602722, + "relativeCreated": 17100.784063339233, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158404,8 +158351,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,522", - "created": 1610361466.522477, + "asctime": "2021-01-14 00:26:29,108", + "created": 1610580389.108395, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158415,15 +158362,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 522.4769115447998, + "msecs": 108.39509963989258, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17086.204290390015, + "relativeCreated": 17100.886821746826, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158431,8 +158378,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:46,522", - "created": 1610361466.5225937, + "asctime": "2021-01-14 00:26:29,108", + "created": 1610580389.108527, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158442,15 +158389,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 522.5937366485596, + "msecs": 108.52694511413574, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17086.321115493774, + "relativeCreated": 17101.01866722107, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158461,26 +158408,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,522", - "created": 1610361466.5227733, + "asctime": "2021-01-14 00:26:29,108", + "created": 1610580389.1087565, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 522.773265838623, + "msecs": 108.75654220581055, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17086.500644683838, + "relativeCreated": 17101.248264312744, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158488,26 +158435,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:46,522", - "created": 1610361466.5228567, + "asctime": "2021-01-14 00:26:29,108", + "created": 1610580389.1088605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 522.8567123413086, + "msecs": 108.86049270629883, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17086.584091186523, + "relativeCreated": 17101.352214813232, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158518,26 +158465,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,522", - "created": 1610361466.522969, + "asctime": "2021-01-14 00:26:29,108", + "created": 1610580389.108997, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 522.9690074920654, + "msecs": 108.99710655212402, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17086.69638633728, + "relativeCreated": 17101.488828659058, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -158545,8 +158492,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,523", - "created": 1610361466.5233414, + "asctime": "2021-01-14 00:26:29,109", + "created": 1610580389.1094797, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158556,15 +158503,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 523.3414173126221, + "msecs": 109.47966575622559, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17087.068796157837, + "relativeCreated": 17101.97138786316, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158572,8 +158519,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,531", - "created": 1610361466.5316792, + "asctime": "2021-01-14 00:26:29,117", + "created": 1610580389.11774, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158583,15 +158530,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 531.6791534423828, + "msecs": 117.73991584777832, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17095.406532287598, + "relativeCreated": 17110.231637954712, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158599,8 +158546,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,531", - "created": 1610361466.5319343, + "asctime": "2021-01-14 00:26:29,117", + "created": 1610580389.1179464, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158610,15 +158557,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 531.9342613220215, + "msecs": 117.94638633728027, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17095.661640167236, + "relativeCreated": 17110.438108444214, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158627,8 +158574,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,532", - "created": 1610361466.532068, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.118041, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158638,15 +158585,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 532.0680141448975, + "msecs": 118.0410385131836, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17095.795392990112, + "relativeCreated": 17110.532760620117, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158654,8 +158601,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,532", - "created": 1610361466.5322342, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.118166, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158665,15 +158612,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 532.2341918945312, + "msecs": 118.16596984863281, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17095.961570739746, + "relativeCreated": 17110.657691955566, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158682,8 +158629,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,532", - "created": 1610361466.5323465, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.1182494, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158693,15 +158640,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 532.3464870452881, + "msecs": 118.24941635131836, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17096.073865890503, + "relativeCreated": 17110.741138458252, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158709,8 +158656,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,532", - "created": 1610361466.5325184, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.1183639, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158720,15 +158667,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 532.5183868408203, + "msecs": 118.36385726928711, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17096.245765686035, + "relativeCreated": 17110.85557937622, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158737,8 +158684,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,532", - "created": 1610361466.5326257, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.1184404, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158748,15 +158695,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 532.625675201416, + "msecs": 118.44038963317871, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17096.35305404663, + "relativeCreated": 17110.932111740112, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158764,8 +158711,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,532", - "created": 1610361466.5327947, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.1185381, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158775,15 +158722,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 532.794713973999, + "msecs": 118.53814125061035, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17096.522092819214, + "relativeCreated": 17111.029863357544, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158792,8 +158739,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,532", - "created": 1610361466.5329008, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.1186106, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158803,15 +158750,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 532.9008102416992, + "msecs": 118.61062049865723, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17096.628189086914, + "relativeCreated": 17111.10234260559, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158819,8 +158766,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,533", - "created": 1610361466.5330474, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.1187022, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158830,15 +158777,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 533.0474376678467, + "msecs": 118.70217323303223, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17096.77481651306, + "relativeCreated": 17111.193895339966, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158847,8 +158794,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,533", - "created": 1610361466.5331647, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.1187713, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158858,15 +158805,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 533.1647396087646, + "msecs": 118.77131462097168, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17096.89211845398, + "relativeCreated": 17111.263036727905, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158874,8 +158821,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:46,533", - "created": 1610361466.5333285, + "asctime": "2021-01-14 00:26:29,118", + "created": 1610580389.118903, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158885,15 +158832,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 533.3285331726074, + "msecs": 118.90292167663574, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17097.055912017822, + "relativeCreated": 17111.39464378357, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158901,8 +158848,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:46,534", - "created": 1610361466.5342891, + "asctime": "2021-01-14 00:26:29,119", + "created": 1610580389.1198282, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -158912,15 +158859,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 534.2891216278076, + "msecs": 119.8282241821289, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17098.016500473022, + "relativeCreated": 17112.319946289062, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158928,8 +158875,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,534", - "created": 1610361466.5344505, + "asctime": "2021-01-14 00:26:29,119", + "created": 1610580389.1199176, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158939,15 +158886,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 534.4505310058594, + "msecs": 119.91763114929199, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17098.177909851074, + "relativeCreated": 17112.409353256226, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158956,8 +158903,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,534", - "created": 1610361466.5345619, + "asctime": "2021-01-14 00:26:29,119", + "created": 1610580389.119989, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158967,15 +158914,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 534.5618724822998, + "msecs": 119.98891830444336, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17098.289251327515, + "relativeCreated": 17112.480640411377, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -158983,8 +158930,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:46,534", - "created": 1610361466.5347424, + "asctime": "2021-01-14 00:26:29,120", + "created": 1610580389.1201186, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -158994,15 +158941,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 534.7423553466797, + "msecs": 120.11861801147461, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17098.469734191895, + "relativeCreated": 17112.61034011841, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -159013,26 +158960,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,534", - "created": 1610361466.5349936, + "asctime": "2021-01-14 00:26:29,120", + "created": 1610580389.1203246, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 534.9936485290527, + "msecs": 120.32461166381836, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17098.721027374268, + "relativeCreated": 17112.816333770752, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -159040,48 +158987,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:46,535", - "created": 1610361466.5351183, + "asctime": "2021-01-14 00:26:29,120", + "created": 1610580389.1204228, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 535.1183414459229, + "msecs": 120.4228401184082, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17098.845720291138, + "relativeCreated": 17112.91456222534, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" } ], - "msecs": 854.6733856201172, + "msecs": 440.53173065185547, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17418.400764465332, + "relativeCreated": 17433.02345275879, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.31955504417419434 + "time_consumption": 0.32010889053344727 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:46,855", - "created": 1610361466.855559, + "asctime": "2021-01-14 00:26:29,441", + "created": 1610580389.4415627, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159098,8 +159045,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,855", - "created": 1610361466.8552213, + "asctime": "2021-01-14 00:26:29,441", + "created": 1610580389.4411657, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159109,15 +159056,15 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 855.2212715148926, + "msecs": 441.1656856536865, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17418.948650360107, + "relativeCreated": 17433.65740776062, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -159126,8 +159073,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,855", - "created": 1610361466.8554032, + "asctime": "2021-01-14 00:26:29,441", + "created": 1610580389.441396, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159137,37 +159084,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 855.4031848907471, + "msecs": 441.39599800109863, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17419.130563735962, + "relativeCreated": 17433.887720108032, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 855.5591106414795, + "msecs": 441.5626525878906, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17419.286489486694, + "relativeCreated": 17434.054374694824, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015592575073242188 + "time_consumption": 0.0001666545867919922 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:46,856", - "created": 1610361466.8561053, + "asctime": "2021-01-14 00:26:29,442", + "created": 1610580389.4421353, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159184,8 +159131,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,855", - "created": 1610361466.855827, + "asctime": "2021-01-14 00:26:29,441", + "created": 1610580389.4418454, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159195,15 +159142,15 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 855.8270931243896, + "msecs": 441.8454170227051, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17419.554471969604, + "relativeCreated": 17434.33713912964, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -159212,8 +159159,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,855", - "created": 1610361466.855969, + "asctime": "2021-01-14 00:26:29,441", + "created": 1610580389.441994, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159223,34 +159170,34 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 855.9689521789551, + "msecs": 441.99395179748535, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17419.69633102417, + "relativeCreated": 17434.48567390442, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 856.1053276062012, + "msecs": 442.1353340148926, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17419.832706451416, + "relativeCreated": 17434.627056121826, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013637542724609375 + "time_consumption": 0.00014138221740722656 }, { "args": [], - "asctime": "2021-01-11 11:37:46,856", - "created": 1610361466.856323, + "asctime": "2021-01-14 00:26:29,442", + "created": 1610580389.4423926, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -159261,15 +159208,15 @@ "message": "Adding secrets to socket_protocol", "module": "test_add_methods", "moduleLogger": [], - "msecs": 856.3230037689209, + "msecs": 442.39258766174316, "msg": "Adding secrets to socket_protocol", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17420.050382614136, + "relativeCreated": 17434.884309768677, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -159278,8 +159225,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,856", - "created": 1610361466.856913, + "asctime": "2021-01-14 00:26:29,442", + "created": 1610580389.4429169, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159296,8 +159243,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,856", - "created": 1610361466.8565562, + "asctime": "2021-01-14 00:26:29,442", + "created": 1610580389.4426205, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159307,15 +159254,15 @@ "lineno": 22, "message": "Result (Client connection status): False ()", "module": "test", - "msecs": 856.5561771392822, + "msecs": 442.62051582336426, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17420.283555984497, + "relativeCreated": 17435.112237930298, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -159324,8 +159271,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,856", - "created": 1610361466.856732, + "asctime": "2021-01-14 00:26:29,442", + "created": 1610580389.442771, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159335,37 +159282,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = False ()", "module": "test", - "msecs": 856.7318916320801, + "msecs": 442.77095794677734, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17420.459270477295, + "relativeCreated": 17435.26268005371, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 856.9130897521973, + "msecs": 442.9168701171875, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17420.640468597412, + "relativeCreated": 17435.40859222412, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001811981201171875 + "time_consumption": 0.00014591217041015625 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:46,857", - "created": 1610361466.8574307, + "asctime": "2021-01-14 00:26:29,443", + "created": 1610580389.4434052, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159382,8 +159329,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,857", - "created": 1610361466.8571448, + "asctime": "2021-01-14 00:26:29,443", + "created": 1610580389.4431376, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159393,15 +159340,15 @@ "lineno": 22, "message": "Result (Server connection status): False ()", "module": "test", - "msecs": 857.144832611084, + "msecs": 443.13764572143555, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17420.8722114563, + "relativeCreated": 17435.62936782837, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -159410,8 +159357,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:46,857", - "created": 1610361466.8572826, + "asctime": "2021-01-14 00:26:29,443", + "created": 1610580389.4432716, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -159421,34 +159368,34 @@ "lineno": 26, "message": "Expectation (Server connection status): result = False ()", "module": "test", - "msecs": 857.2826385498047, + "msecs": 443.2716369628906, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17421.01001739502, + "relativeCreated": 17435.763359069824, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 857.4306964874268, + "msecs": 443.4051513671875, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17421.15807533264, + "relativeCreated": 17435.89687347412, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001480579376220703 + "time_consumption": 0.000133514404296875 }, { "args": [], - "asctime": "2021-01-11 11:37:46,958", - "created": 1610361466.9585948, + "asctime": "2021-01-14 00:26:29,544", + "created": 1610580389.5446072, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -159467,26 +159414,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,857", - "created": 1610361466.8577628, + "asctime": "2021-01-14 00:26:29,443", + "created": 1610580389.4437363, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 857.7628135681152, + "msecs": 443.73631477355957, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17421.49019241333, + "relativeCreated": 17436.228036880493, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -159494,8 +159441,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,859", - "created": 1610361466.8590424, + "asctime": "2021-01-14 00:26:29,445", + "created": 1610580389.4452038, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -159505,15 +159452,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 859.0424060821533, + "msecs": 445.2037811279297, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17422.769784927368, + "relativeCreated": 17437.695503234863, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159521,8 +159468,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,867", - "created": 1610361466.8675258, + "asctime": "2021-01-14 00:26:29,453", + "created": 1610580389.453602, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -159532,15 +159479,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 867.5258159637451, + "msecs": 453.6020755767822, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17431.25319480896, + "relativeCreated": 17446.093797683716, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159548,8 +159495,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,867", - "created": 1610361466.8678107, + "asctime": "2021-01-14 00:26:29,453", + "created": 1610580389.453919, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159559,15 +159506,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 867.8107261657715, + "msecs": 453.9189338684082, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17431.538105010986, + "relativeCreated": 17446.41065597534, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159576,8 +159523,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,867", - "created": 1610361466.867977, + "asctime": "2021-01-14 00:26:29,454", + "created": 1610580389.4540887, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159587,15 +159534,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 867.9769039154053, + "msecs": 454.0886878967285, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17431.70428276062, + "relativeCreated": 17446.580410003662, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159603,8 +159550,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,868", - "created": 1610361466.8681743, + "asctime": "2021-01-14 00:26:29,454", + "created": 1610580389.4542913, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159614,15 +159561,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 868.1743144989014, + "msecs": 454.29134368896484, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17431.901693344116, + "relativeCreated": 17446.7830657959, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159631,8 +159578,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,868", - "created": 1610361466.8683126, + "asctime": "2021-01-14 00:26:29,454", + "created": 1610580389.4544337, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159642,15 +159589,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 868.3125972747803, + "msecs": 454.4336795806885, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17432.039976119995, + "relativeCreated": 17446.925401687622, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159658,8 +159605,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,868", - "created": 1610361466.8685153, + "asctime": "2021-01-14 00:26:29,454", + "created": 1610580389.454637, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159669,15 +159616,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 868.5152530670166, + "msecs": 454.6370506286621, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17432.24263191223, + "relativeCreated": 17447.128772735596, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159686,8 +159633,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,868", - "created": 1610361466.868646, + "asctime": "2021-01-14 00:26:29,454", + "created": 1610580389.4547749, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159697,15 +159644,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 868.6459064483643, + "msecs": 454.7748565673828, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17432.37328529358, + "relativeCreated": 17447.266578674316, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159713,8 +159660,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,868", - "created": 1610361466.8688643, + "asctime": "2021-01-14 00:26:29,454", + "created": 1610580389.4549613, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159724,15 +159671,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 868.8642978668213, + "msecs": 454.96129989624023, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17432.591676712036, + "relativeCreated": 17447.453022003174, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159741,8 +159688,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,869", - "created": 1610361466.8690026, + "asctime": "2021-01-14 00:26:29,455", + "created": 1610580389.455096, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159752,15 +159699,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 869.0025806427002, + "msecs": 455.0960063934326, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17432.729959487915, + "relativeCreated": 17447.587728500366, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159768,8 +159715,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,869", - "created": 1610361466.8691747, + "asctime": "2021-01-14 00:26:29,455", + "created": 1610580389.4552689, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159779,15 +159726,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 869.1747188568115, + "msecs": 455.26885986328125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17432.902097702026, + "relativeCreated": 17447.760581970215, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159796,8 +159743,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,869", - "created": 1610361466.8693032, + "asctime": "2021-01-14 00:26:29,455", + "created": 1610580389.4554012, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159807,15 +159754,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 869.3032264709473, + "msecs": 455.4011821746826, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17433.030605316162, + "relativeCreated": 17447.892904281616, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159823,8 +159770,8 @@ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:46,869", - "created": 1610361466.869542, + "asctime": "2021-01-14 00:26:29,455", + "created": 1610580389.455639, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -159834,15 +159781,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 869.5418834686279, + "msecs": 455.6388854980469, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17433.269262313843, + "relativeCreated": 17448.13060760498, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159850,8 +159797,8 @@ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:46,870", - "created": 1610361466.8706703, + "asctime": "2021-01-14 00:26:29,456", + "created": 1610580389.4566839, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -159861,15 +159808,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 870.6703186035156, + "msecs": 456.683874130249, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17434.39769744873, + "relativeCreated": 17449.175596237183, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159877,8 +159824,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,870", - "created": 1610361466.8709836, + "asctime": "2021-01-14 00:26:29,456", + "created": 1610580389.4568713, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159888,15 +159835,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 870.9836006164551, + "msecs": 456.87127113342285, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17434.71097946167, + "relativeCreated": 17449.362993240356, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159905,8 +159852,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,871", - "created": 1610361466.8711517, + "asctime": "2021-01-14 00:26:29,456", + "created": 1610580389.4569938, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159916,15 +159863,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 871.1516857147217, + "msecs": 456.99381828308105, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17434.879064559937, + "relativeCreated": 17449.485540390015, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159932,8 +159879,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" ], - "asctime": "2021-01-11 11:37:46,871", - "created": 1610361466.871431, + "asctime": "2021-01-14 00:26:29,457", + "created": 1610580389.4572303, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -159943,15 +159890,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", "module": "stp", - "msecs": 871.4311122894287, + "msecs": 457.2303295135498, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17435.158491134644, + "relativeCreated": 17449.722051620483, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159962,26 +159909,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,871", - "created": 1610361466.8718588, + "asctime": "2021-01-14 00:26:29,457", + "created": 1610580389.4576573, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 871.8588352203369, + "msecs": 457.6573371887207, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17435.58621406555, + "relativeCreated": 17450.149059295654, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -159989,26 +159936,26 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:46,872", - "created": 1610361466.8720553, + "asctime": "2021-01-14 00:26:29,457", + "created": 1610580389.4578285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 872.0552921295166, + "msecs": 457.8285217285156, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17435.78267097473, + "relativeCreated": 17450.32024383545, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160017,37 +159964,37 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'cd685b2c9890e01cc64167f95e7fdb75a2285138ac597011275517cacdb1be33'" + "'4381366da0b29c3979c36e7116cabd7b7024a01405f21554b4ff3cedd66d417a'" ], - "asctime": "2021-01-11 11:37:46,872", - "created": 1610361466.872318, + "asctime": "2021-01-14 00:26:29,458", + "created": 1610580389.4580324, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'cd685b2c9890e01cc64167f95e7fdb75a2285138ac597011275517cacdb1be33'\"", + "lineno": 450, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'4381366da0b29c3979c36e7116cabd7b7024a01405f21554b4ff3cedd66d417a'\"", "module": "__init__", - "msecs": 872.3180294036865, + "msecs": 458.03236961364746, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17436.0454082489, + "relativeCreated": 17450.52409172058, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 64 36 38" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 38 31" ], - "asctime": "2021-01-11 11:37:46,873", - "created": 1610361466.8733046, + "asctime": "2021-01-14 00:26:29,458", + "created": 1610580389.4587598, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160055,26 +160002,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 64 36 38", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 38 31", "module": "__init__", - "msecs": 873.3046054840088, + "msecs": 458.7597846984863, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17437.031984329224, + "relativeCreated": 17451.25150680542, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 64 36 38" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 38 31" ], - "asctime": "2021-01-11 11:37:46,881", - "created": 1610361466.881742, + "asctime": "2021-01-14 00:26:29,467", + "created": 1610580389.4671452, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160082,17 +160029,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 64 36 38", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 38 31", "module": "__init__", - "msecs": 881.742000579834, + "msecs": 467.1452045440674, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17445.46937942505, + "relativeCreated": 17459.636926651, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160100,8 +160047,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,882", - "created": 1610361466.882026, + "asctime": "2021-01-14 00:26:29,467", + "created": 1610580389.467401, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160111,15 +160058,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 882.025957107544, + "msecs": 467.40102767944336, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17445.75333595276, + "relativeCreated": 17459.892749786377, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160128,8 +160075,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,882", - "created": 1610361466.8821883, + "asctime": "2021-01-14 00:26:29,467", + "created": 1610580389.4675267, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160139,15 +160086,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 882.1883201599121, + "msecs": 467.5266742706299, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17445.915699005127, + "relativeCreated": 17460.018396377563, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160155,8 +160102,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,882", - "created": 1610361466.8823838, + "asctime": "2021-01-14 00:26:29,467", + "created": 1610580389.4676764, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160166,15 +160113,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 882.3838233947754, + "msecs": 467.67640113830566, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17446.11120223999, + "relativeCreated": 17460.16812324524, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160183,8 +160130,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,882", - "created": 1610361466.8825295, + "asctime": "2021-01-14 00:26:29,467", + "created": 1610580389.467785, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160194,15 +160141,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 882.5294971466064, + "msecs": 467.7848815917969, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17446.25687599182, + "relativeCreated": 17460.27660369873, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160210,8 +160157,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,882", - "created": 1610361466.88273, + "asctime": "2021-01-14 00:26:29,467", + "created": 1610580389.4679341, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160221,15 +160168,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 882.7300071716309, + "msecs": 467.93413162231445, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17446.457386016846, + "relativeCreated": 17460.425853729248, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160238,8 +160185,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,882", - "created": 1610361466.8828614, + "asctime": "2021-01-14 00:26:29,468", + "created": 1610580389.4680324, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160249,15 +160196,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 882.8613758087158, + "msecs": 468.0323600769043, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17446.58875465393, + "relativeCreated": 17460.524082183838, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160265,8 +160212,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,883", - "created": 1610361466.883041, + "asctime": "2021-01-14 00:26:29,468", + "created": 1610580389.4681656, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160276,15 +160223,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 883.0409049987793, + "msecs": 468.16563606262207, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17446.768283843994, + "relativeCreated": 17460.657358169556, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160293,8 +160240,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,883", - "created": 1610361466.8831697, + "asctime": "2021-01-14 00:26:29,468", + "created": 1610580389.4682627, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160304,15 +160251,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 883.1696510314941, + "msecs": 468.2626724243164, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17446.89702987671, + "relativeCreated": 17460.75439453125, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160320,8 +160267,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,883", - "created": 1610361466.883379, + "asctime": "2021-01-14 00:26:29,468", + "created": 1610580389.4684157, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160331,15 +160278,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 883.3789825439453, + "msecs": 468.4157371520996, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17447.10636138916, + "relativeCreated": 17460.907459259033, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160348,8 +160295,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,883", - "created": 1610361466.883511, + "asctime": "2021-01-14 00:26:29,468", + "created": 1610580389.4685218, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160359,24 +160306,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 883.5110664367676, + "msecs": 468.5218334197998, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17447.238445281982, + "relativeCreated": 17461.013555526733, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "comm-server:", - "(64): 35 62 32 63 39 38 39 30 65 30 31 63 63 36 34 31 36 37 66 39 35 65 37 66 64 62 37 35 61 32 32 38 35 31 33 38 61 63 35 39 37 30 31 31 32 37 35 35 31 37 63 61 63 64 62 31 62 65 33 33 22 7d 0b 47" + "(64): 33 36 36 64 61 30 62 32 39 63 33 39 37 39 63 33 36 65 37 31 31 36 63 61 62 64 37 62 37 30 32 34 61 30 31 34 30 35 66 32 31 35 35 34 62 34 66 66 33 63 65 64 64 36 36 64 34 31 37 61 22 7d 31 b8" ], - "asctime": "2021-01-11 11:37:46,883", - "created": 1610361466.883834, + "asctime": "2021-01-14 00:26:29,468", + "created": 1610580389.4687598, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160384,26 +160331,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 35 62 32 63 39 38 39 30 65 30 31 63 63 36 34 31 36 37 66 39 35 65 37 66 64 62 37 35 61 32 32 38 35 31 33 38 61 63 35 39 37 30 31 31 32 37 35 35 31 37 63 61 63 64 62 31 62 65 33 33 22 7d 0b 47", + "message": "comm-server: TX -> (64): 33 36 36 64 61 30 62 32 39 63 33 39 37 39 63 33 36 65 37 31 31 36 63 61 62 64 37 62 37 30 32 34 61 30 31 34 30 35 66 32 31 35 35 34 62 34 66 66 33 63 65 64 64 36 36 64 34 31 37 61 22 7d 31 b8", "module": "__init__", - "msecs": 883.8338851928711, + "msecs": 468.75977516174316, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17447.561264038086, + "relativeCreated": 17461.251497268677, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(64): 35 62 32 63 39 38 39 30 65 30 31 63 63 36 34 31 36 37 66 39 35 65 37 66 64 62 37 35 61 32 32 38 35 31 33 38 61 63 35 39 37 30 31 31 32 37 35 35 31 37 63 61 63 64 62 31 62 65 33 33 22 7d 0b 47" + "(64): 33 36 36 64 61 30 62 32 39 63 33 39 37 39 63 33 36 65 37 31 31 36 63 61 62 64 37 62 37 30 32 34 61 30 31 34 30 35 66 32 31 35 35 34 62 34 66 66 33 63 65 64 64 36 36 64 34 31 37 61 22 7d 31 b8" ], - "asctime": "2021-01-11 11:37:46,892", - "created": 1610361466.8921697, + "asctime": "2021-01-14 00:26:29,477", + "created": 1610580389.4770954, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160411,26 +160358,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 35 62 32 63 39 38 39 30 65 30 31 63 63 36 34 31 36 37 66 39 35 65 37 66 64 62 37 35 61 32 32 38 35 31 33 38 61 63 35 39 37 30 31 31 32 37 35 35 31 37 63 61 63 64 62 31 62 65 33 33 22 7d 0b 47", + "message": "comm-client: RX <- (64): 33 36 36 64 61 30 62 32 39 63 33 39 37 39 63 33 36 65 37 31 31 36 63 61 62 64 37 62 37 30 32 34 61 30 31 34 30 35 66 32 31 35 35 34 62 34 66 66 33 63 65 64 64 36 36 64 34 31 37 61 22 7d 31 b8", "module": "__init__", - "msecs": 892.169713973999, + "msecs": 477.095365524292, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17455.897092819214, + "relativeCreated": 17469.587087631226, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "comm-server:", - "(4): 9a fc 3a 3e" + "(4): 42 3d 3a 3e" ], - "asctime": "2021-01-11 11:37:46,892", - "created": 1610361466.8926766, + "asctime": "2021-01-14 00:26:29,477", + "created": 1610580389.4776063, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160438,26 +160385,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): 9a fc 3a 3e", + "message": "comm-server: TX -> (4): 42 3d 3a 3e", "module": "__init__", - "msecs": 892.676591873169, + "msecs": 477.60629653930664, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17456.403970718384, + "relativeCreated": 17470.09801864624, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(4): 9a fc 3a 3e" + "(4): 42 3d 3a 3e" ], - "asctime": "2021-01-11 11:37:46,893", - "created": 1610361466.8934755, + "asctime": "2021-01-14 00:26:29,478", + "created": 1610580389.4783456, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160465,17 +160412,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): 9a fc 3a 3e", + "message": "comm-client: RX <- (4): 42 3d 3a 3e", "module": "__init__", - "msecs": 893.4755325317383, + "msecs": 478.3456325531006, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17457.202911376953, + "relativeCreated": 17470.837354660034, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160483,8 +160430,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,893", - "created": 1610361466.8936217, + "asctime": "2021-01-14 00:26:29,478", + "created": 1610580389.4784777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160494,15 +160441,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 893.6216831207275, + "msecs": 478.47771644592285, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17457.349061965942, + "relativeCreated": 17470.969438552856, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160511,8 +160458,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,893", - "created": 1610361466.8937373, + "asctime": "2021-01-14 00:26:29,478", + "created": 1610580389.4785862, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160522,24 +160469,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 893.7373161315918, + "msecs": 478.58619689941406, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17457.464694976807, + "relativeCreated": 17471.077919006348, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "STP:", - "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 64 36 38 35 62 32 63 39 38 39 30 65 30 31 63 63 36 34 31 36 37 66 39 35 65 37 66 64 62 37 35 61 32 32 38 35 31 33 38 61 63 35 39 37 30 31 31 32 37 35 35 31 37 63 61 63 64 62 31 62 65 33 33 22 7d 0b 47 9a fc" + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 33 38 31 33 36 36 64 61 30 62 32 39 63 33 39 37 39 63 33 36 65 37 31 31 36 63 61 62 64 37 62 37 30 32 34 61 30 31 34 30 35 66 32 31 35 35 34 62 34 66 66 33 63 65 64 64 36 36 64 34 31 37 61 22 7d 31 b8 42 3d" ], - "asctime": "2021-01-11 11:37:46,893", - "created": 1610361466.8939996, + "asctime": "2021-01-14 00:26:29,478", + "created": 1610580389.4788349, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160547,17 +160494,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 64 36 38 35 62 32 63 39 38 39 30 65 30 31 63 63 36 34 31 36 37 66 39 35 65 37 66 64 62 37 35 61 32 32 38 35 31 33 38 61 63 35 39 37 30 31 31 32 37 35 35 31 37 63 61 63 64 62 31 62 65 33 33 22 7d 0b 47 9a fc", + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 33 38 31 33 36 36 64 61 30 62 32 39 63 33 39 37 39 63 33 36 65 37 31 31 36 63 61 62 64 37 62 37 30 32 34 61 30 31 34 30 35 66 32 31 35 35 34 62 34 66 66 33 63 65 64 64 36 36 64 34 31 37 61 22 7d 31 b8 42 3d", "module": "stp", - "msecs": 893.9995765686035, + "msecs": 478.834867477417, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17457.72695541382, + "relativeCreated": 17471.32658958435, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160566,28 +160513,28 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "'cd685b2c9890e01cc64167f95e7fdb75a2285138ac597011275517cacdb1be33'" + "'4381366da0b29c3979c36e7116cabd7b7024a01405f21554b4ff3cedd66d417a'" ], - "asctime": "2021-01-11 11:37:46,894", - "created": 1610361466.8943264, + "asctime": "2021-01-14 00:26:29,479", + "created": 1610580389.4791505, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'cd685b2c9890e01cc64167f95e7fdb75a2285138ac597011275517cacdb1be33'\"", + "lineno": 450, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'4381366da0b29c3979c36e7116cabd7b7024a01405f21554b4ff3cedd66d417a'\"", "module": "__init__", - "msecs": 894.3264484405518, + "msecs": 479.15053367614746, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17458.053827285767, + "relativeCreated": 17471.64225578308, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160595,26 +160542,26 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:46,894", - "created": 1610361466.8944848, + "asctime": "2021-01-14 00:26:29,479", + "created": 1610580389.4792967, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 894.4847583770752, + "msecs": 479.2966842651367, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17458.21213722229, + "relativeCreated": 17471.78840637207, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -160623,37 +160570,37 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'d76a98c9bfb11d5af5e83d5cc5002aba57715c298c59d62ef35bfe59ea5c88a8f1cf07831bb37be09661bc1dcc31e698bb4743461d813b7e2f38068545bf2b0c'" + "'6c79228613fc62db89ad4d3c8c86c1f81530cbd9796dbe56e181bd64d205c3aeb2590ea31b0bfa0d244e058d39bc0ca2a7eb19671551b3f441b0cba9f19aea42'" ], - "asctime": "2021-01-11 11:37:46,894", - "created": 1610361466.8947048, + "asctime": "2021-01-14 00:26:29,479", + "created": 1610580389.4795158, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'d76a98c9bfb11d5af5e83d5cc5002aba57715c298c59d62ef35bfe59ea5c88a8f1cf07831bb37be09661bc1dcc31e698bb4743461d813b7e2f38068545bf2b0c'\"", + "lineno": 450, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'6c79228613fc62db89ad4d3c8c86c1f81530cbd9796dbe56e181bd64d205c3aeb2590ea31b0bfa0d244e058d39bc0ca2a7eb19671551b3f441b0cba9f19aea42'\"", "module": "__init__", - "msecs": 894.7048187255859, + "msecs": 479.51579093933105, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17458.4321975708, + "relativeCreated": 17472.007513046265, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 37 36 61" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 63 37 39" ], - "asctime": "2021-01-11 11:37:46,895", - "created": 1610361466.8955936, + "asctime": "2021-01-14 00:26:29,480", + "created": 1610580389.4803705, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160661,26 +160608,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 37 36 61", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 63 37 39", "module": "__init__", - "msecs": 895.5936431884766, + "msecs": 480.37052154541016, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17459.32102203369, + "relativeCreated": 17472.862243652344, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 37 36 61" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 63 37 39" ], - "asctime": "2021-01-11 11:37:46,904", - "created": 1610361466.904036, + "asctime": "2021-01-14 00:26:29,488", + "created": 1610580389.4888034, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160688,17 +160635,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 37 36 61", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 63 37 39", "module": "__init__", - "msecs": 904.0360450744629, + "msecs": 488.8033866882324, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17467.763423919678, + "relativeCreated": 17481.295108795166, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160706,8 +160653,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,904", - "created": 1610361466.9043176, + "asctime": "2021-01-14 00:26:29,489", + "created": 1610580389.4890735, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160717,15 +160664,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 904.3176174163818, + "msecs": 489.0735149383545, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17468.044996261597, + "relativeCreated": 17481.565237045288, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160734,8 +160681,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,904", - "created": 1610361466.9044685, + "asctime": "2021-01-14 00:26:29,489", + "created": 1610580389.4892652, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160745,15 +160692,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 904.4685363769531, + "msecs": 489.26520347595215, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17468.195915222168, + "relativeCreated": 17481.756925582886, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160761,8 +160708,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,904", - "created": 1610361466.9046607, + "asctime": "2021-01-14 00:26:29,489", + "created": 1610580389.489458, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160772,15 +160719,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 904.660701751709, + "msecs": 489.4580841064453, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17468.388080596924, + "relativeCreated": 17481.94980621338, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160789,8 +160736,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,904", - "created": 1610361466.9048407, + "asctime": "2021-01-14 00:26:29,489", + "created": 1610580389.489588, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160800,15 +160747,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 904.8407077789307, + "msecs": 489.58802223205566, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17468.568086624146, + "relativeCreated": 17482.07974433899, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160816,8 +160763,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,905", - "created": 1610361466.9050524, + "asctime": "2021-01-14 00:26:29,489", + "created": 1610580389.4897685, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160827,15 +160774,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 905.0524234771729, + "msecs": 489.76850509643555, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17468.779802322388, + "relativeCreated": 17482.26022720337, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160844,8 +160791,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,905", - "created": 1610361466.9051857, + "asctime": "2021-01-14 00:26:29,489", + "created": 1610580389.4898899, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160855,15 +160802,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 905.1856994628906, + "msecs": 489.88986015319824, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17468.913078308105, + "relativeCreated": 17482.381582260132, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160871,8 +160818,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,905", - "created": 1610361466.9053674, + "asctime": "2021-01-14 00:26:29,490", + "created": 1610580389.490051, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160882,15 +160829,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 905.367374420166, + "msecs": 490.0510311126709, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17469.09475326538, + "relativeCreated": 17482.542753219604, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160899,8 +160846,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,905", - "created": 1610361466.905498, + "asctime": "2021-01-14 00:26:29,490", + "created": 1610580389.4901674, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160910,15 +160857,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 905.4980278015137, + "msecs": 490.16737937927246, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17469.22540664673, + "relativeCreated": 17482.659101486206, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160926,8 +160873,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,905", - "created": 1610361466.905671, + "asctime": "2021-01-14 00:26:29,490", + "created": 1610580389.4903207, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160937,15 +160884,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 905.6708812713623, + "msecs": 490.32068252563477, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17469.398260116577, + "relativeCreated": 17482.81240463257, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -160954,8 +160901,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,905", - "created": 1610361466.9058218, + "asctime": "2021-01-14 00:26:29,490", + "created": 1610580389.4904463, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -160965,24 +160912,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 905.8218002319336, + "msecs": 490.4463291168213, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17469.54917907715, + "relativeCreated": 17482.938051223755, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-client:", - "(64): 39 38 63 39 62 66 62 31 31 64 35 61 66 35 65 38 33 64 35 63 63 35 30 30 32 61 62 61 35 37 37 31 35 63 32 39 38 63 35 39 64 36 32 65 66 33 35 62 66 65 35 39 65 61 35 63 38 38 61 38 66 31 63 66" + "(64): 32 32 38 36 31 33 66 63 36 32 64 62 38 39 61 64 34 64 33 63 38 63 38 36 63 31 66 38 31 35 33 30 63 62 64 39 37 39 36 64 62 65 35 36 65 31 38 31 62 64 36 34 64 32 30 35 63 33 61 65 62 32 35 39" ], - "asctime": "2021-01-11 11:37:46,906", - "created": 1610361466.9061491, + "asctime": "2021-01-14 00:26:29,490", + "created": 1610580389.4907453, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -160990,26 +160937,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 39 38 63 39 62 66 62 31 31 64 35 61 66 35 65 38 33 64 35 63 63 35 30 30 32 61 62 61 35 37 37 31 35 63 32 39 38 63 35 39 64 36 32 65 66 33 35 62 66 65 35 39 65 61 35 63 38 38 61 38 66 31 63 66", + "message": "comm-client: TX -> (64): 32 32 38 36 31 33 66 63 36 32 64 62 38 39 61 64 34 64 33 63 38 63 38 36 63 31 66 38 31 35 33 30 63 62 64 39 37 39 36 64 62 65 35 36 65 31 38 31 62 64 36 34 64 32 30 35 63 33 61 65 62 32 35 39", "module": "__init__", - "msecs": 906.14914894104, + "msecs": 490.74530601501465, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17469.876527786255, + "relativeCreated": 17483.23702812195, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 39 38 63 39 62 66 62 31 31 64 35 61 66 35 65 38 33 64 35 63 63 35 30 30 32 61 62 61 35 37 37 31 35 63 32 39 38 63 35 39 64 36 32 65 66 33 35 62 66 65 35 39 65 61 35 63 38 38 61 38 66 31 63 66" + "(64): 32 32 38 36 31 33 66 63 36 32 64 62 38 39 61 64 34 64 33 63 38 63 38 36 63 31 66 38 31 35 33 30 63 62 64 39 37 39 36 64 62 65 35 36 65 31 38 31 62 64 36 34 64 32 30 35 63 33 61 65 62 32 35 39" ], - "asctime": "2021-01-11 11:37:46,914", - "created": 1610361466.9145527, + "asctime": "2021-01-14 00:26:29,499", + "created": 1610580389.4991734, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161017,26 +160964,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 39 38 63 39 62 66 62 31 31 64 35 61 66 35 65 38 33 64 35 63 63 35 30 30 32 61 62 61 35 37 37 31 35 63 32 39 38 63 35 39 64 36 32 65 66 33 35 62 66 65 35 39 65 61 35 63 38 38 61 38 66 31 63 66", + "message": "comm-server: RX <- (64): 32 32 38 36 31 33 66 63 36 32 64 62 38 39 61 64 34 64 33 63 38 63 38 36 63 31 66 38 31 35 33 30 63 62 64 39 37 39 36 64 62 65 35 36 65 31 38 31 62 64 36 34 64 32 30 35 63 33 61 65 62 32 35 39", "module": "__init__", - "msecs": 914.5526885986328, + "msecs": 499.1734027862549, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17478.280067443848, + "relativeCreated": 17491.66512489319, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-client:", - "(64): 30 37 38 33 31 62 62 33 37 62 65 30 39 36 36 31 62 63 31 64 63 63 33 31 65 36 39 38 62 62 34 37 34 33 34 36 31 64 38 31 33 62 37 65 32 66 33 38 30 36 38 35 34 35 62 66 32 62 30 63 22 7d 93 6e" + "(64): 30 65 61 33 31 62 30 62 66 61 30 64 32 34 34 65 30 35 38 64 33 39 62 63 30 63 61 32 61 37 65 62 31 39 36 37 31 35 35 31 62 33 66 34 34 31 62 30 63 62 61 39 66 31 39 61 65 61 34 32 22 7d b3 f5" ], - "asctime": "2021-01-11 11:37:46,915", - "created": 1610361466.9152205, + "asctime": "2021-01-14 00:26:29,499", + "created": 1610580389.499876, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161044,26 +160991,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 30 37 38 33 31 62 62 33 37 62 65 30 39 36 36 31 62 63 31 64 63 63 33 31 65 36 39 38 62 62 34 37 34 33 34 36 31 64 38 31 33 62 37 65 32 66 33 38 30 36 38 35 34 35 62 66 32 62 30 63 22 7d 93 6e", + "message": "comm-client: TX -> (64): 30 65 61 33 31 62 30 62 66 61 30 64 32 34 34 65 30 35 38 64 33 39 62 63 30 63 61 32 61 37 65 62 31 39 36 37 31 35 35 31 62 33 66 34 34 31 62 30 63 62 61 39 66 31 39 61 65 61 34 32 22 7d b3 f5", "module": "__init__", - "msecs": 915.2204990386963, + "msecs": 499.8760223388672, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17478.94787788391, + "relativeCreated": 17492.3677444458, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(64): 30 37 38 33 31 62 62 33 37 62 65 30 39 36 36 31 62 63 31 64 63 63 33 31 65 36 39 38 62 62 34 37 34 33 34 36 31 64 38 31 33 62 37 65 32 66 33 38 30 36 38 35 34 35 62 66 32 62 30 63 22 7d 93 6e" + "(64): 30 65 61 33 31 62 30 62 66 61 30 64 32 34 34 65 30 35 38 64 33 39 62 63 30 63 61 32 61 37 65 62 31 39 36 37 31 35 35 31 62 33 66 34 34 31 62 30 63 62 61 39 66 31 39 61 65 61 34 32 22 7d b3 f5" ], - "asctime": "2021-01-11 11:37:46,923", - "created": 1610361466.923661, + "asctime": "2021-01-14 00:26:29,508", + "created": 1610580389.5083358, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161071,26 +161018,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 30 37 38 33 31 62 62 33 37 62 65 30 39 36 36 31 62 63 31 64 63 63 33 31 65 36 39 38 62 62 34 37 34 33 34 36 31 64 38 31 33 62 37 65 32 66 33 38 30 36 38 35 34 35 62 66 32 62 30 63 22 7d 93 6e", + "message": "comm-server: RX <- (64): 30 65 61 33 31 62 30 62 66 61 30 64 32 34 34 65 30 35 38 64 33 39 62 63 30 63 61 32 61 37 65 62 31 39 36 37 31 35 35 31 62 33 66 34 34 31 62 30 63 62 61 39 66 31 39 61 65 61 34 32 22 7d b3 f5", "module": "__init__", - "msecs": 923.6609935760498, + "msecs": 508.33582878112793, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17487.388372421265, + "relativeCreated": 17500.82755088806, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-client:", - "(4): 5b a5 3a 3e" + "(4): a9 cf 3a 3e" ], - "asctime": "2021-01-11 11:37:46,924", - "created": 1610361466.9242945, + "asctime": "2021-01-14 00:26:29,509", + "created": 1610580389.5090113, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161098,26 +161045,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 5b a5 3a 3e", + "message": "comm-client: TX -> (4): a9 cf 3a 3e", "module": "__init__", - "msecs": 924.2944717407227, + "msecs": 509.01126861572266, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17488.021850585938, + "relativeCreated": 17501.502990722656, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "comm-server:", - "(4): 5b a5 3a 3e" + "(4): a9 cf 3a 3e" ], - "asctime": "2021-01-11 11:37:46,925", - "created": 1610361466.9250927, + "asctime": "2021-01-14 00:26:29,509", + "created": 1610580389.509847, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161125,17 +161072,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 5b a5 3a 3e", + "message": "comm-server: RX <- (4): a9 cf 3a 3e", "module": "__init__", - "msecs": 925.0926971435547, + "msecs": 509.84692573547363, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17488.82007598877, + "relativeCreated": 17502.338647842407, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -161143,8 +161090,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,925", - "created": 1610361466.925276, + "asctime": "2021-01-14 00:26:29,510", + "created": 1610580389.5100288, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161154,15 +161101,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 925.2760410308838, + "msecs": 510.0288391113281, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17489.0034198761, + "relativeCreated": 17502.52056121826, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -161171,8 +161118,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,925", - "created": 1610361466.9254236, + "asctime": "2021-01-14 00:26:29,510", + "created": 1610580389.5101762, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161182,24 +161129,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 925.4236221313477, + "msecs": 510.1761817932129, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17489.151000976562, + "relativeCreated": 17502.667903900146, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { "args": [ "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 37 36 61 39 38 63 39 62 66 62 31 31 64 35 61 66 35 65 38 33 64 35 63 63 35 30 30 32 61 62 61 35 37 37 31 35 63 32 39 38 63 35 39 64 36 32 65 66 33 35 62 66 65 35 39 65 61 35 63 38 38 61 38 66 31 63 66 30 37 38 33 31 62 62 33 37 62 65 30 39 36 36 31 62 63 31 64 63 63 33 31 65 36 39 38 62 62 34 37 34 33 34 36 31 64 38 31 33 62 37 65 32 66 33 38 30 36 38 35 34 35 62 66 32 62 30 63 22 7d 93 6e 5b a5" + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 63 37 39 32 32 38 36 31 33 66 63 36 32 64 62 38 39 61 64 34 64 33 63 38 63 38 36 63 31 66 38 31 35 33 30 63 62 64 39 37 39 36 64 62 65 35 36 65 31 38 31 62 64 36 34 64 32 30 35 63 33 61 65 62 32 35 39 30 65 61 33 31 62 30 62 66 61 30 64 32 34 34 65 30 35 38 64 33 39 62 63 30 63 61 32 61 37 65 62 31 39 36 37 31 35 35 31 62 33 66 34 34 31 62 30 63 62 61 39 66 31 39 61 65 61 34 32 22 7d b3 f5 a9 cf" ], - "asctime": "2021-01-11 11:37:46,925", - "created": 1610361466.9258573, + "asctime": "2021-01-14 00:26:29,510", + "created": 1610580389.5106719, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161207,17 +161154,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 37 36 61 39 38 63 39 62 66 62 31 31 64 35 61 66 35 65 38 33 64 35 63 63 35 30 30 32 61 62 61 35 37 37 31 35 63 32 39 38 63 35 39 64 36 32 65 66 33 35 62 66 65 35 39 65 61 35 63 38 38 61 38 66 31 63 66 30 37 38 33 31 62 62 33 37 62 65 30 39 36 36 31 62 63 31 64 63 63 33 31 65 36 39 38 62 62 34 37 34 33 34 36 31 64 38 31 33 62 37 65 32 66 33 38 30 36 38 35 34 35 62 66 32 62 30 63 22 7d 93 6e 5b a5", + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 63 37 39 32 32 38 36 31 33 66 63 36 32 64 62 38 39 61 64 34 64 33 63 38 63 38 36 63 31 66 38 31 35 33 30 63 62 64 39 37 39 36 64 62 65 35 36 65 31 38 31 62 64 36 34 64 32 30 35 63 33 61 65 62 32 35 39 30 65 61 33 31 62 30 62 66 61 30 64 32 34 34 65 30 35 38 64 33 39 62 63 30 63 61 32 61 37 65 62 31 39 36 37 31 35 35 31 62 33 66 34 34 31 62 30 63 62 61 39 66 31 39 61 65 61 34 32 22 7d b3 f5 a9 cf", "module": "stp", - "msecs": 925.8573055267334, + "msecs": 510.67185401916504, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17489.58468437195, + "relativeCreated": 17503.1635761261, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -161226,28 +161173,28 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "'d76a98c9bfb11d5af5e83d5cc5002aba57715c298c59d62ef35bfe59ea5c88a8f1cf07831bb37be09661bc1dcc31e698bb4743461d813b7e2f38068545bf2b0c'" + "'6c79228613fc62db89ad4d3c8c86c1f81530cbd9796dbe56e181bd64d205c3aeb2590ea31b0bfa0d244e058d39bc0ca2a7eb19671551b3f441b0cba9f19aea42'" ], - "asctime": "2021-01-11 11:37:46,926", - "created": 1610361466.926316, + "asctime": "2021-01-14 00:26:29,511", + "created": 1610580389.5110965, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'d76a98c9bfb11d5af5e83d5cc5002aba57715c298c59d62ef35bfe59ea5c88a8f1cf07831bb37be09661bc1dcc31e698bb4743461d813b7e2f38068545bf2b0c'\"", + "lineno": 450, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'6c79228613fc62db89ad4d3c8c86c1f81530cbd9796dbe56e181bd64d205c3aeb2590ea31b0bfa0d244e058d39bc0ca2a7eb19671551b3f441b0cba9f19aea42'\"", "module": "__init__", - "msecs": 926.3160228729248, + "msecs": 511.0964775085449, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17490.04340171814, + "relativeCreated": 17503.58819961548, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -161255,26 +161202,26 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:46,926", - "created": 1610361466.926542, + "asctime": "2021-01-14 00:26:29,511", + "created": 1610580389.5112984, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 926.5420436859131, + "msecs": 511.29841804504395, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17490.269422531128, + "relativeCreated": 17503.790140151978, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -161285,26 +161232,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:46,926", - "created": 1610361466.9268253, + "asctime": "2021-01-14 00:26:29,511", + "created": 1610580389.5115917, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 926.8252849578857, + "msecs": 511.59167289733887, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17490.5526638031, + "relativeCreated": 17504.083395004272, "stack_info": null, - "thread": 139975383308032, + "thread": 140580361324288, "threadName": "Thread-29" }, { @@ -161312,8 +161259,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:46,927", - "created": 1610361466.9277694, + "asctime": "2021-01-14 00:26:29,513", + "created": 1610580389.5131943, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161323,15 +161270,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 927.7694225311279, + "msecs": 513.1943225860596, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17491.496801376343, + "relativeCreated": 17505.686044692993, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161339,8 +161286,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:46,936", - "created": 1610361466.9360948, + "asctime": "2021-01-14 00:26:29,521", + "created": 1610580389.52159, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161350,15 +161297,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 936.0947608947754, + "msecs": 521.589994430542, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17499.82213973999, + "relativeCreated": 17514.081716537476, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161366,8 +161313,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,936", - "created": 1610361466.9362886, + "asctime": "2021-01-14 00:26:29,521", + "created": 1610580389.5218039, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161377,15 +161324,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 936.288595199585, + "msecs": 521.8038558959961, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.0159740448, + "relativeCreated": 17514.29557800293, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161394,8 +161341,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,936", - "created": 1610361466.9363983, + "asctime": "2021-01-14 00:26:29,521", + "created": 1610580389.5219176, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161405,15 +161352,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 936.3982677459717, + "msecs": 521.9175815582275, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.125646591187, + "relativeCreated": 17514.40930366516, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161421,8 +161368,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,936", - "created": 1610361466.9365299, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.5220516, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161432,15 +161379,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 936.5298748016357, + "msecs": 522.0515727996826, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.25725364685, + "relativeCreated": 17514.543294906616, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161449,8 +161396,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,936", - "created": 1610361466.936623, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.5221486, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161460,15 +161407,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 936.6230964660645, + "msecs": 522.148609161377, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.35047531128, + "relativeCreated": 17514.64033126831, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161476,8 +161423,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,936", - "created": 1610361466.9367924, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.5222864, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161487,15 +161434,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 936.7923736572266, + "msecs": 522.2864151000977, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.51975250244, + "relativeCreated": 17514.77813720703, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161504,8 +161451,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,936", - "created": 1610361466.936902, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.5223782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161515,15 +161462,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 936.9020462036133, + "msecs": 522.3782062530518, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.629425048828, + "relativeCreated": 17514.869928359985, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161531,8 +161478,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,937", - "created": 1610361466.9370549, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.522544, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161542,15 +161489,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 937.0548725128174, + "msecs": 522.5439071655273, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.782251358032, + "relativeCreated": 17515.03562927246, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161559,8 +161506,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,937", - "created": 1610361466.9371603, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.5226355, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161570,15 +161517,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 937.1602535247803, + "msecs": 522.6354598999023, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17500.887632369995, + "relativeCreated": 17515.127182006836, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161586,8 +161533,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,937", - "created": 1610361466.9373014, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.5227592, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161597,15 +161544,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 937.3013973236084, + "msecs": 522.759199142456, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17501.028776168823, + "relativeCreated": 17515.25092124939, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161614,8 +161561,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,937", - "created": 1610361466.937394, + "asctime": "2021-01-14 00:26:29,522", + "created": 1610580389.5228484, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161625,15 +161572,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 937.3939037322998, + "msecs": 522.84836769104, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17501.121282577515, + "relativeCreated": 17515.340089797974, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161641,8 +161588,8 @@ "comm-server:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:46,937", - "created": 1610361466.937557, + "asctime": "2021-01-14 00:26:29,523", + "created": 1610580389.5230122, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161652,15 +161599,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 937.5569820404053, + "msecs": 523.0121612548828, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17501.28436088562, + "relativeCreated": 17515.503883361816, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161668,8 +161615,8 @@ "comm-client:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:46,938", - "created": 1610361466.9385564, + "asctime": "2021-01-14 00:26:29,524", + "created": 1610580389.5240922, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -161679,15 +161626,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 938.556432723999, + "msecs": 524.0921974182129, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17502.283811569214, + "relativeCreated": 17516.583919525146, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161695,8 +161642,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,938", - "created": 1610361466.93872, + "asctime": "2021-01-14 00:26:29,524", + "created": 1610580389.5243502, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161706,15 +161653,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 938.7199878692627, + "msecs": 524.3501663208008, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17502.447366714478, + "relativeCreated": 17516.841888427734, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161723,8 +161670,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,938", - "created": 1610361466.938829, + "asctime": "2021-01-14 00:26:29,524", + "created": 1610580389.52447, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161734,15 +161681,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 938.8289451599121, + "msecs": 524.4700908660889, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17502.556324005127, + "relativeCreated": 17516.961812973022, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161750,8 +161697,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" ], - "asctime": "2021-01-11 11:37:46,938", - "created": 1610361466.9389908, + "asctime": "2021-01-14 00:26:29,524", + "created": 1610580389.5246406, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -161761,15 +161708,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", "module": "stp", - "msecs": 938.9908313751221, + "msecs": 524.6405601501465, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17502.718210220337, + "relativeCreated": 17517.13228225708, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161780,26 +161727,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:46,939", - "created": 1610361466.9392617, + "asctime": "2021-01-14 00:26:29,524", + "created": 1610580389.5249338, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 939.2616748809814, + "msecs": 524.9338150024414, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17502.989053726196, + "relativeCreated": 17517.425537109375, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { @@ -161807,74 +161754,74 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:46,939", - "created": 1610361466.939386, + "asctime": "2021-01-14 00:26:29,525", + "created": 1610580389.5250654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 939.3858909606934, + "msecs": 525.0654220581055, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17503.11326980591, + "relativeCreated": 17517.55714416504, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,939", - "created": 1610361466.9394865, + "asctime": "2021-01-14 00:26:29,525", + "created": 1610580389.5251975, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 939.4865036010742, + "msecs": 525.1975059509277, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17503.21388244629, + "relativeCreated": 17517.68922805786, "stack_info": null, - "thread": 139975374915328, + "thread": 140580352931584, "threadName": "Thread-30" } ], - "msecs": 958.594799041748, + "msecs": 544.6071624755859, "msg": "Doing authentification", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17522.322177886963, + "relativeCreated": 17537.09888458252, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.019108295440673828 + "time_consumption": 0.019409656524658203 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:46,959", - "created": 1610361466.9595666, + "asctime": "2021-01-14 00:26:29,545", + "created": 1610580389.545584, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -161891,8 +161838,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,959", - "created": 1610361466.9592032, + "asctime": "2021-01-14 00:26:29,545", + "created": 1610580389.545192, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -161902,15 +161849,15 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 959.2032432556152, + "msecs": 545.1920032501221, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17522.93062210083, + "relativeCreated": 17537.683725357056, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -161919,8 +161866,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,959", - "created": 1610361466.9594102, + "asctime": "2021-01-14 00:26:29,545", + "created": 1610580389.5454214, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -161930,37 +161877,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 959.4101905822754, + "msecs": 545.4213619232178, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17523.13756942749, + "relativeCreated": 17537.91308403015, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 959.566593170166, + "msecs": 545.583963394165, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17523.29397201538, + "relativeCreated": 17538.0756855011, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000156402587890625 + "time_consumption": 0.00016260147094726562 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:46,960", - "created": 1610361466.9601042, + "asctime": "2021-01-14 00:26:29,546", + "created": 1610580389.5461302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -161977,8 +161924,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,959", - "created": 1610361466.9598248, + "asctime": "2021-01-14 00:26:29,545", + "created": 1610580389.5458477, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -161988,15 +161935,15 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 959.824800491333, + "msecs": 545.8476543426514, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17523.552179336548, + "relativeCreated": 17538.339376449585, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162005,8 +161952,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:46,959", - "created": 1610361466.959967, + "asctime": "2021-01-14 00:26:29,545", + "created": 1610580389.5459907, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -162016,41 +161963,41 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 959.9668979644775, + "msecs": 545.9907054901123, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17523.694276809692, + "relativeCreated": 17538.482427597046, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 960.10422706604, + "msecs": 546.1301803588867, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17523.831605911255, + "relativeCreated": 17538.62190246582, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001373291015625 + "time_consumption": 0.00013947486877441406 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.8081333637237549, - "time_finished": "2021-01-11 11:37:46,960", - "time_start": "2021-01-11 11:37:46,151" + "time_consumption": 0.8068406581878662, + "time_finished": "2021-01-14 00:26:29,546", + "time_start": "2021-01-14 00:26:28,739" }, "_elO7wE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:46,960", - "created": 1610361466.9607873, + "asctime": "2021-01-14 00:26:29,546", + "created": 1610580389.5466762, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162061,19 +162008,19 @@ "message": "_elO7wE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 960.787296295166, + "msecs": 546.6761589050293, "msg": "_elO7wE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17524.51467514038, + "relativeCreated": 17539.167881011963, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.969979, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5558171, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -162088,8 +162035,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,962", - "created": 1610361466.9624183, + "asctime": "2021-01-14 00:26:29,548", + "created": 1610580389.5483384, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162099,23 +162046,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 962.4183177947998, + "msecs": 548.3384132385254, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17526.145696640015, + "relativeCreated": 17540.83013534546, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,963", - "created": 1610361466.9636042, + "asctime": "2021-01-14 00:26:29,549", + "created": 1610580389.5495694, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162125,23 +162072,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 963.604211807251, + "msecs": 549.5693683624268, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17527.331590652466, + "relativeCreated": 17542.06109046936, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,963", - "created": 1610361466.9638333, + "asctime": "2021-01-14 00:26:29,549", + "created": 1610580389.5498044, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162151,41 +162098,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 963.8333320617676, + "msecs": 549.8044490814209, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17527.560710906982, + "relativeCreated": 17542.296171188354, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,964", - "created": 1610361466.9641552, + "asctime": "2021-01-14 00:26:29,550", + "created": 1610580389.5501697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 964.1551971435547, + "msecs": 550.1697063446045, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17527.88257598877, + "relativeCreated": 17542.661428451538, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162194,26 +162141,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:46,964", - "created": 1610361466.964333, + "asctime": "2021-01-14 00:26:29,550", + "created": 1610580389.5503595, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 964.3330574035645, + "msecs": 550.3594875335693, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17528.06043624878, + "relativeCreated": 17542.851209640503, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162221,26 +162168,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,964", - "created": 1610361466.9645662, + "asctime": "2021-01-14 00:26:29,550", + "created": 1610580389.5505922, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 964.5662307739258, + "msecs": 550.5921840667725, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17528.29360961914, + "relativeCreated": 17543.083906173706, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162248,26 +162195,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,964", - "created": 1610361466.9647255, + "asctime": "2021-01-14 00:26:29,550", + "created": 1610580389.5507643, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 964.7254943847656, + "msecs": 550.7643222808838, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17528.45287322998, + "relativeCreated": 17543.256044387817, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162275,26 +162222,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:46,964", - "created": 1610361466.9649034, + "asctime": "2021-01-14 00:26:29,550", + "created": 1610580389.5509136, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 964.9033546447754, + "msecs": 550.9135723114014, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17528.63073348999, + "relativeCreated": 17543.405294418335, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162302,26 +162249,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:46,965", - "created": 1610361466.9650488, + "asctime": "2021-01-14 00:26:29,551", + "created": 1610580389.551059, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 965.0487899780273, + "msecs": 551.0590076446533, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17528.776168823242, + "relativeCreated": 17543.550729751587, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162331,8 +162278,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:46,965", - "created": 1610361466.9652205, + "asctime": "2021-01-14 00:26:29,551", + "created": 1610580389.551232, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162342,15 +162289,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 965.2204513549805, + "msecs": 551.232099533081, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17528.947830200195, + "relativeCreated": 17543.723821640015, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162360,8 +162307,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:46,965", - "created": 1610361466.9653945, + "asctime": "2021-01-14 00:26:29,551", + "created": 1610580389.5513966, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162371,15 +162318,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 965.3944969177246, + "msecs": 551.3966083526611, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17529.12187576294, + "relativeCreated": 17543.888330459595, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162389,8 +162336,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:46,965", - "created": 1610361466.9655504, + "asctime": "2021-01-14 00:26:29,551", + "created": 1610580389.5515535, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162400,15 +162347,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 965.550422668457, + "msecs": 551.55348777771, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17529.277801513672, + "relativeCreated": 17544.045209884644, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162418,8 +162365,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:46,965", - "created": 1610361466.965702, + "asctime": "2021-01-14 00:26:29,551", + "created": 1610580389.5517197, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162429,41 +162376,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 965.7020568847656, + "msecs": 551.7196655273438, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17529.42943572998, + "relativeCreated": 17544.211387634277, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,965", - "created": 1610361466.9658372, + "asctime": "2021-01-14 00:26:29,551", + "created": 1610580389.551863, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 965.8372402191162, + "msecs": 551.8629550933838, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17529.56461906433, + "relativeCreated": 17544.354677200317, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162472,26 +162419,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:46,966", - "created": 1610361466.9660163, + "asctime": "2021-01-14 00:26:29,552", + "created": 1610580389.5520165, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 966.0162925720215, + "msecs": 552.0164966583252, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17529.743671417236, + "relativeCreated": 17544.50821876526, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162499,26 +162446,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:46,966", - "created": 1610361466.9661849, + "asctime": "2021-01-14 00:26:29,552", + "created": 1610580389.5521834, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 966.1848545074463, + "msecs": 552.1833896636963, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17529.91223335266, + "relativeCreated": 17544.67511177063, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162526,26 +162473,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:46,966", - "created": 1610361466.9663386, + "asctime": "2021-01-14 00:26:29,552", + "created": 1610580389.5523403, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 966.3386344909668, + "msecs": 552.3402690887451, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17530.06601333618, + "relativeCreated": 17544.83199119568, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162555,8 +162502,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:46,966", - "created": 1610361466.9664876, + "asctime": "2021-01-14 00:26:29,552", + "created": 1610580389.5524938, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162566,15 +162513,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 966.4876461029053, + "msecs": 552.4938106536865, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17530.21502494812, + "relativeCreated": 17544.98553276062, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162584,8 +162531,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:46,966", - "created": 1610361466.9666398, + "asctime": "2021-01-14 00:26:29,552", + "created": 1610580389.5526497, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162595,15 +162542,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 966.6397571563721, + "msecs": 552.649736404419, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17530.367136001587, + "relativeCreated": 17545.141458511353, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162612,26 +162559,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:46,966", - "created": 1610361466.9667833, + "asctime": "2021-01-14 00:26:29,552", + "created": 1610580389.552799, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 966.7832851409912, + "msecs": 552.7989864349365, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17530.510663986206, + "relativeCreated": 17545.29070854187, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162640,26 +162587,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:46,966", - "created": 1610361466.9669218, + "asctime": "2021-01-14 00:26:29,552", + "created": 1610580389.5529394, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 966.9218063354492, + "msecs": 552.9394149780273, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17530.649185180664, + "relativeCreated": 17545.43113708496, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162668,78 +162615,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:46,967", - "created": 1610361466.967066, + "asctime": "2021-01-14 00:26:29,553", + "created": 1610580389.5530872, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 967.0660495758057, + "msecs": 553.0872344970703, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17530.79342842102, + "relativeCreated": 17545.578956604004, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,967", - "created": 1610361466.9672046, + "asctime": "2021-01-14 00:26:29,553", + "created": 1610580389.5532637, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 967.2045707702637, + "msecs": 553.2636642456055, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17530.93194961548, + "relativeCreated": 17545.75538635254, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,967", - "created": 1610361466.9674795, + "asctime": "2021-01-14 00:26:29,553", + "created": 1610580389.5535467, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 967.4794673919678, + "msecs": 553.546667098999, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17531.206846237183, + "relativeCreated": 17546.038389205933, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162748,26 +162695,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:46,967", - "created": 1610361466.9676323, + "asctime": "2021-01-14 00:26:29,553", + "created": 1610580389.5537014, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 967.6322937011719, + "msecs": 553.7014007568359, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17531.359672546387, + "relativeCreated": 17546.19312286377, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162775,26 +162722,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,967", - "created": 1610361466.967847, + "asctime": "2021-01-14 00:26:29,553", + "created": 1610580389.5539086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 967.8471088409424, + "msecs": 553.9085865020752, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17531.574487686157, + "relativeCreated": 17546.40030860901, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162802,26 +162749,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:46,968", - "created": 1610361466.9680054, + "asctime": "2021-01-14 00:26:29,554", + "created": 1610580389.5540679, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 968.0054187774658, + "msecs": 554.067850112915, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17531.73279762268, + "relativeCreated": 17546.55957221985, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162829,26 +162776,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:46,968", - "created": 1610361466.9681475, + "asctime": "2021-01-14 00:26:29,554", + "created": 1610580389.5542123, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 968.1475162506104, + "msecs": 554.2123317718506, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17531.874895095825, + "relativeCreated": 17546.704053878784, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162856,26 +162803,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:46,968", - "created": 1610361466.968288, + "asctime": "2021-01-14 00:26:29,554", + "created": 1610580389.5543554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 968.2879447937012, + "msecs": 554.3553829193115, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.015323638916, + "relativeCreated": 17546.847105026245, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162885,8 +162832,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:46,968", - "created": 1610361466.9684358, + "asctime": "2021-01-14 00:26:29,554", + "created": 1610580389.5545075, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162896,15 +162843,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 968.4357643127441, + "msecs": 554.5074939727783, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.16314315796, + "relativeCreated": 17546.999216079712, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162914,8 +162861,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:46,968", - "created": 1610361466.9685879, + "asctime": "2021-01-14 00:26:29,554", + "created": 1610580389.5546634, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162925,15 +162872,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 968.5878753662109, + "msecs": 554.6634197235107, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.315254211426, + "relativeCreated": 17547.155141830444, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162943,8 +162890,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:46,968", - "created": 1610361466.9687786, + "asctime": "2021-01-14 00:26:29,554", + "created": 1610580389.5548174, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162954,15 +162901,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 968.7786102294922, + "msecs": 554.8174381256104, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.505989074707, + "relativeCreated": 17547.309160232544, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -162972,8 +162919,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:46,968", - "created": 1610361466.9689064, + "asctime": "2021-01-14 00:26:29,554", + "created": 1610580389.5549695, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -162983,41 +162930,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 968.9064025878906, + "msecs": 554.9695491790771, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.633781433105, + "relativeCreated": 17547.46127128601, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.969004, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5552876, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 969.0039157867432, + "msecs": 555.2875995635986, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.731294631958, + "relativeCreated": 17547.779321670532, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163026,26 +162973,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.9691033, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5553737, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 969.1033363342285, + "msecs": 555.3736686706543, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.830715179443, + "relativeCreated": 17547.865390777588, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163053,26 +163000,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.96921, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5554366, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 969.2099094390869, + "msecs": 555.4366111755371, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17532.9372882843, + "relativeCreated": 17547.92833328247, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163080,26 +163027,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.9693134, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5554872, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 969.313383102417, + "msecs": 555.4871559143066, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.040761947632, + "relativeCreated": 17547.97887802124, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163109,8 +163056,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.9694126, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.555542, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163120,15 +163067,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 969.4125652313232, + "msecs": 555.5419921875, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.139944076538, + "relativeCreated": 17548.033714294434, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163138,8 +163085,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.9695177, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.555593, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163149,15 +163096,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 969.517707824707, + "msecs": 555.5930137634277, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.245086669922, + "relativeCreated": 17548.08473587036, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163166,26 +163113,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.969617, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5556457, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 969.6168899536133, + "msecs": 555.6457042694092, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.344268798828, + "relativeCreated": 17548.137426376343, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163194,26 +163141,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.969707, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5556905, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 969.7070121765137, + "msecs": 555.6905269622803, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.43439102173, + "relativeCreated": 17548.182249069214, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163222,71 +163169,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.969795, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5557334, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 969.7949886322021, + "msecs": 555.7334423065186, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.522367477417, + "relativeCreated": 17548.225164413452, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,969", - "created": 1610361466.9698875, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5557764, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 969.8874950408936, + "msecs": 555.7763576507568, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.61487388611, + "relativeCreated": 17548.26807975769, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 969.9790477752686, + "msecs": 555.8171272277832, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.706426620483, + "relativeCreated": 17548.308849334717, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 9.1552734375e-05 + "time_consumption": 4.076957702636719e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:47,314", - "created": 1610361467.3145113, + "asctime": "2021-01-14 00:26:29,899", + "created": 1610580389.8996267, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -163301,8 +163248,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,970", - "created": 1610361466.970171, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.555917, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163312,23 +163259,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 970.1709747314453, + "msecs": 555.9170246124268, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.89835357666, + "relativeCreated": 17548.40874671936, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:46,970", - "created": 1610361466.9702706, + "asctime": "2021-01-14 00:26:29,555", + "created": 1610580389.5559664, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163338,41 +163285,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 970.2706336975098, + "msecs": 555.9663772583008, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17533.998012542725, + "relativeCreated": 17548.458099365234, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:46,970", - "created": 1610361466.9703631, + "asctime": "2021-01-14 00:26:29,556", + "created": 1610580389.55601, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 970.3631401062012, + "msecs": 556.0100078582764, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17534.090518951416, + "relativeCreated": 17548.50172996521, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -163383,61 +163330,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,970", - "created": 1610361466.9705267, + "asctime": "2021-01-14 00:26:29,556", + "created": 1610580389.5560904, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 970.5266952514648, + "msecs": 556.0903549194336, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17534.25407409668, + "relativeCreated": 17548.582077026367, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-01-11 11:37:46,971", - "created": 1610361466.9710615, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 971.0614681243896, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "src/helpers/__init__.py", - "process": 36202, - "processName": "MainProcess", - "relativeCreated": 17534.788846969604, - "stack_info": null, - "thread": 139975366522624, - "threadName": "Thread-31" - }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,971", - "created": 1610361466.9711518, + "asctime": "2021-01-14 00:26:29,556", + "created": 1610580389.5562723, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163447,23 +163367,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 971.1518287658691, + "msecs": 556.2722682952881, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17534.879207611084, + "relativeCreated": 17548.76399040222, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:46,971", - "created": 1610361466.9712331, + "asctime": "2021-01-14 00:26:29,556", + "created": 1610580389.5563219, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163473,50 +163393,77 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 971.2331295013428, + "msecs": 556.3218593597412, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17534.960508346558, + "relativeCreated": 17548.813581466675, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:46,971", - "created": 1610361466.971287, + "asctime": "2021-01-14 00:26:29,556", + "created": 1610580389.5563667, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 971.2870121002197, + "msecs": 556.3666820526123, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17535.014390945435, + "relativeCreated": 17548.858404159546, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-14 00:26:29,556", + "created": 1610580389.5565522, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 556.5521717071533, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 5267, + "processName": "MainProcess", + "relativeCreated": 17549.043893814087, + "stack_info": null, + "thread": 140580344538880, + "threadName": "Thread-31" + }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9792562, + "asctime": "2021-01-14 00:26:29,564", + "created": 1610580389.5647616, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163526,15 +163473,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 979.2561531066895, + "msecs": 564.7616386413574, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17542.983531951904, + "relativeCreated": 17557.25336074829, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163542,8 +163489,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.979375, + "asctime": "2021-01-14 00:26:29,564", + "created": 1610580389.5648842, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163553,15 +163500,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 979.374885559082, + "msecs": 564.8841857910156, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.102264404297, + "relativeCreated": 17557.37590789795, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163570,8 +163517,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9794261, + "asctime": "2021-01-14 00:26:29,564", + "created": 1610580389.5649362, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163581,15 +163528,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 979.4261455535889, + "msecs": 564.9361610412598, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.153524398804, + "relativeCreated": 17557.427883148193, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163597,8 +163544,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9794874, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.565013, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163608,15 +163555,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 979.487419128418, + "msecs": 565.0129318237305, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.214797973633, + "relativeCreated": 17557.504653930664, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163625,8 +163572,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9795306, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5650575, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163636,15 +163583,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 979.5305728912354, + "msecs": 565.0575160980225, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.25795173645, + "relativeCreated": 17557.549238204956, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163652,8 +163599,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9796042, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5651371, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163663,15 +163610,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 979.6042442321777, + "msecs": 565.1371479034424, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.331623077393, + "relativeCreated": 17557.628870010376, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163680,8 +163627,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9796453, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5651808, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163691,15 +163638,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 979.6452522277832, + "msecs": 565.180778503418, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.372631072998, + "relativeCreated": 17557.67250061035, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163707,8 +163654,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9797006, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5652373, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163718,15 +163665,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 979.7005653381348, + "msecs": 565.237283706665, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.42794418335, + "relativeCreated": 17557.7290058136, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163735,8 +163682,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9797437, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5652778, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163746,15 +163693,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 979.7437191009521, + "msecs": 565.2778148651123, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.471097946167, + "relativeCreated": 17557.769536972046, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163762,8 +163709,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9797983, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5653317, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163773,15 +163720,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 979.7983169555664, + "msecs": 565.3316974639893, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.52569580078, + "relativeCreated": 17557.823419570923, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163790,8 +163737,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9798386, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5653725, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163801,15 +163748,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 979.8386096954346, + "msecs": 565.3724670410156, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.56598854065, + "relativeCreated": 17557.86418914795, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163817,8 +163764,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:46,979", - "created": 1610361466.9799223, + "asctime": "2021-01-14 00:26:29,565", + "created": 1610580389.5654538, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163828,15 +163775,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 979.9222946166992, + "msecs": 565.4537677764893, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17543.649673461914, + "relativeCreated": 17557.945489883423, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163844,8 +163791,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:46,980", - "created": 1610361466.980853, + "asctime": "2021-01-14 00:26:29,566", + "created": 1610580389.5664217, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -163855,15 +163802,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 980.8530807495117, + "msecs": 566.4217472076416, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17544.580459594727, + "relativeCreated": 17558.913469314575, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163871,8 +163818,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,980", - "created": 1610361466.9809756, + "asctime": "2021-01-14 00:26:29,566", + "created": 1610580389.5665696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163882,15 +163829,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 980.9756278991699, + "msecs": 566.5695667266846, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17544.703006744385, + "relativeCreated": 17559.061288833618, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163899,8 +163846,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,981", - "created": 1610361466.9810276, + "asctime": "2021-01-14 00:26:29,566", + "created": 1610580389.5666392, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163910,15 +163857,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 981.0276031494141, + "msecs": 566.6391849517822, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17544.75498199463, + "relativeCreated": 17559.130907058716, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163926,8 +163873,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:46,981", - "created": 1610361466.9811041, + "asctime": "2021-01-14 00:26:29,566", + "created": 1610580389.5667198, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -163937,15 +163884,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 981.1041355133057, + "msecs": 566.7197704315186, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17544.83151435852, + "relativeCreated": 17559.211492538452, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163956,26 +163903,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,981", - "created": 1610361466.9812477, + "asctime": "2021-01-14 00:26:29,566", + "created": 1610580389.566871, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 981.2476634979248, + "msecs": 566.870927810669, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17544.97504234314, + "relativeCreated": 17559.362649917603, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -163983,26 +163930,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:46,981", - "created": 1610361466.9813066, + "asctime": "2021-01-14 00:26:29,566", + "created": 1610580389.5669346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 981.3065528869629, + "msecs": 566.9345855712891, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17545.033931732178, + "relativeCreated": 17559.426307678223, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -164013,26 +163960,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,981", - "created": 1610361466.9813857, + "asctime": "2021-01-14 00:26:29,567", + "created": 1610580389.5670216, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 981.3857078552246, + "msecs": 567.0216083526611, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17545.11308670044, + "relativeCreated": 17559.513330459595, "stack_info": null, - "thread": 139975366522624, + "thread": 140580344538880, "threadName": "Thread-31" }, { @@ -164040,8 +163987,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,981", - "created": 1610361466.9817023, + "asctime": "2021-01-14 00:26:29,567", + "created": 1610580389.5673125, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -164051,15 +163998,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 981.7023277282715, + "msecs": 567.312479019165, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17545.429706573486, + "relativeCreated": 17559.8042011261, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164067,8 +164014,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:46,989", - "created": 1610361466.989954, + "asctime": "2021-01-14 00:26:29,575", + "created": 1610580389.5755699, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -164078,15 +164025,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 989.9539947509766, + "msecs": 575.5698680877686, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17553.68137359619, + "relativeCreated": 17568.061590194702, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164094,8 +164041,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9901264, + "asctime": "2021-01-14 00:26:29,575", + "created": 1610580389.575737, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164105,15 +164052,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 990.126371383667, + "msecs": 575.7369995117188, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17553.853750228882, + "relativeCreated": 17568.228721618652, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164122,8 +164069,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9902136, + "asctime": "2021-01-14 00:26:29,575", + "created": 1610580389.5758202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164133,15 +164080,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 990.2136325836182, + "msecs": 575.8202075958252, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17553.941011428833, + "relativeCreated": 17568.31192970276, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164149,8 +164096,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9903185, + "asctime": "2021-01-14 00:26:29,575", + "created": 1610580389.575923, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164160,15 +164107,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 990.3185367584229, + "msecs": 575.922966003418, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.045915603638, + "relativeCreated": 17568.41468811035, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164177,8 +164124,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9904072, + "asctime": "2021-01-14 00:26:29,575", + "created": 1610580389.575995, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164188,15 +164135,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 990.4072284698486, + "msecs": 575.9949684143066, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.134607315063, + "relativeCreated": 17568.48669052124, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164204,8 +164151,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9905162, + "asctime": "2021-01-14 00:26:29,576", + "created": 1610580389.5760956, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164215,15 +164162,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 990.516185760498, + "msecs": 576.0955810546875, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.243564605713, + "relativeCreated": 17568.58730316162, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164232,8 +164179,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9905941, + "asctime": "2021-01-14 00:26:29,576", + "created": 1610580389.5761628, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164243,15 +164190,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 990.5941486358643, + "msecs": 576.1628150939941, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.32152748108, + "relativeCreated": 17568.654537200928, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164259,8 +164206,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.990693, + "asctime": "2021-01-14 00:26:29,576", + "created": 1610580389.576279, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164270,15 +164217,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 990.6930923461914, + "msecs": 576.2789249420166, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.420471191406, + "relativeCreated": 17568.77064704895, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164287,8 +164234,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9908004, + "asctime": "2021-01-14 00:26:29,576", + "created": 1610580389.576347, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164298,15 +164245,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 990.8003807067871, + "msecs": 576.3471126556396, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.527759552002, + "relativeCreated": 17568.838834762573, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164314,8 +164261,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9909077, + "asctime": "2021-01-14 00:26:29,576", + "created": 1610580389.5764387, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164325,15 +164272,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 990.9076690673828, + "msecs": 576.4386653900146, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.635047912598, + "relativeCreated": 17568.93038749695, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164342,8 +164289,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:46,990", - "created": 1610361466.9909785, + "asctime": "2021-01-14 00:26:29,576", + "created": 1610580389.5765038, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164353,15 +164300,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 990.978479385376, + "msecs": 576.5037536621094, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.70585823059, + "relativeCreated": 17568.995475769043, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164369,8 +164316,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:46,991", - "created": 1610361466.9911072, + "asctime": "2021-01-14 00:26:29,576", + "created": 1610580389.5766315, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -164380,15 +164327,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 991.1072254180908, + "msecs": 576.6315460205078, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17554.834604263306, + "relativeCreated": 17569.12326812744, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164396,8 +164343,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:46,992", - "created": 1610361466.9921176, + "asctime": "2021-01-14 00:26:29,577", + "created": 1610580389.5775642, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -164407,15 +164354,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 992.1176433563232, + "msecs": 577.5642395019531, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17555.845022201538, + "relativeCreated": 17570.055961608887, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164423,8 +164370,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:46,992", - "created": 1610361466.9923062, + "asctime": "2021-01-14 00:26:29,577", + "created": 1610580389.57769, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164434,15 +164381,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 992.3062324523926, + "msecs": 577.6898860931396, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17556.033611297607, + "relativeCreated": 17570.181608200073, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164451,8 +164398,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:46,992", - "created": 1610361466.9923954, + "asctime": "2021-01-14 00:26:29,577", + "created": 1610580389.5777736, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164462,15 +164409,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 992.3954010009766, + "msecs": 577.7735710144043, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17556.12277984619, + "relativeCreated": 17570.265293121338, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164478,8 +164425,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:46,992", - "created": 1610361466.9925265, + "asctime": "2021-01-14 00:26:29,577", + "created": 1610580389.577895, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -164489,15 +164436,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 992.5265312194824, + "msecs": 577.894926071167, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17556.253910064697, + "relativeCreated": 17570.3866481781, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164508,26 +164455,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:46,992", - "created": 1610361466.992739, + "asctime": "2021-01-14 00:26:29,578", + "created": 1610580389.578094, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 992.7389621734619, + "msecs": 578.0940055847168, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17556.466341018677, + "relativeCreated": 17570.58572769165, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" }, { @@ -164535,48 +164482,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:46,992", - "created": 1610361466.9928617, + "asctime": "2021-01-14 00:26:29,578", + "created": 1610580389.5781898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 992.8617477416992, + "msecs": 578.1898498535156, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17556.589126586914, + "relativeCreated": 17570.68157196045, "stack_info": null, - "thread": 139975358129920, + "thread": 140580336146176, "threadName": "Thread-32" } ], - "msecs": 314.5112991333008, + "msecs": 899.6267318725586, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17878.238677978516, + "relativeCreated": 17892.118453979492, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.32164955139160156 + "time_consumption": 0.32143688201904297 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:47,315", - "created": 1610361467.3153512, + "asctime": "2021-01-14 00:26:29,900", + "created": 1610580389.9005878, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164593,8 +164540,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,315", - "created": 1610361467.3150074, + "asctime": "2021-01-14 00:26:29,900", + "created": 1610580389.9002306, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164604,15 +164551,15 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 315.00744819641113, + "msecs": 900.2306461334229, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17878.734827041626, + "relativeCreated": 17892.722368240356, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -164621,8 +164568,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,315", - "created": 1610361467.3151836, + "asctime": "2021-01-14 00:26:29,900", + "created": 1610580389.9004138, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164632,37 +164579,37 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 315.1836395263672, + "msecs": 900.4137516021729, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17878.911018371582, + "relativeCreated": 17892.905473709106, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 315.3512477874756, + "msecs": 900.587797164917, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17879.07862663269, + "relativeCreated": 17893.07951927185, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016760826110839844 + "time_consumption": 0.00017404556274414062 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:47,315", - "created": 1610361467.3159108, + "asctime": "2021-01-14 00:26:29,901", + "created": 1610580389.9012132, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164679,8 +164626,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,315", - "created": 1610361467.3156075, + "asctime": "2021-01-14 00:26:29,900", + "created": 1610580389.9008424, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164690,15 +164637,15 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 315.60754776000977, + "msecs": 900.8424282073975, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17879.334926605225, + "relativeCreated": 17893.33415031433, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -164707,8 +164654,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,315", - "created": 1610361467.3157718, + "asctime": "2021-01-14 00:26:29,900", + "created": 1610580389.900991, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164718,34 +164665,34 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 315.77181816101074, + "msecs": 900.9909629821777, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17879.499197006226, + "relativeCreated": 17893.48268508911, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 315.91081619262695, + "msecs": 901.2131690979004, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17879.63819503784, + "relativeCreated": 17893.704891204834, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013899803161621094 + "time_consumption": 0.00022220611572265625 }, { "args": [], - "asctime": "2021-01-11 11:37:47,316", - "created": 1610361467.3167024, + "asctime": "2021-01-14 00:26:29,902", + "created": 1610580389.9020207, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -164760,8 +164707,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:47,316", - "created": 1610361467.316125, + "asctime": "2021-01-14 00:26:29,901", + "created": 1610580389.9014378, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -164771,49 +164718,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 316.12491607666016, + "msecs": 901.4377593994141, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17879.852294921875, + "relativeCreated": 17893.929481506348, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:47,316", - "created": 1610361467.3162818, + "asctime": "2021-01-14 00:26:29,901", + "created": 1610580389.9016056, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 316.281795501709, + "msecs": 901.6056060791016, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17880.009174346924, + "relativeCreated": 17894.097328186035, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,316", - "created": 1610361467.316421, + "asctime": "2021-01-14 00:26:29,901", + "created": 1610580389.901748, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -164823,63 +164770,63 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 316.4210319519043, + "msecs": 901.7479419708252, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17880.14841079712, + "relativeCreated": 17894.23966407776, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:47,316", - "created": 1610361467.3165689, + "asctime": "2021-01-14 00:26:29,901", + "created": 1610580389.9018853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 316.56885147094727, + "msecs": 901.8852710723877, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17880.296230316162, + "relativeCreated": 17894.37699317932, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 316.70236587524414, + "msecs": 902.0206928253174, "msg": "Disconnecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17880.42974472046, + "relativeCreated": 17894.51241493225, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000133514404296875 + "time_consumption": 0.0001354217529296875 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:47,317", - "created": 1610361467.317233, + "asctime": "2021-01-14 00:26:29,902", + "created": 1610580389.9025397, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164896,8 +164843,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,316", - "created": 1610361467.3169622, + "asctime": "2021-01-14 00:26:29,902", + "created": 1610580389.902266, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164907,15 +164854,15 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): False ()", "module": "test", - "msecs": 316.96224212646484, + "msecs": 902.2660255432129, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17880.68962097168, + "relativeCreated": 17894.757747650146, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -164924,8 +164871,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,317", - "created": 1610361467.3170984, + "asctime": "2021-01-14 00:26:29,902", + "created": 1610580389.902405, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164935,27 +164882,27 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = False ()", "module": "test", - "msecs": 317.09837913513184, + "msecs": 902.4050235748291, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17880.825757980347, + "relativeCreated": 17894.896745681763, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 317.2330856323242, + "msecs": 902.5397300720215, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17880.96046447754, + "relativeCreated": 17895.031452178955, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0001347064971923828 }, @@ -164964,8 +164911,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,317", - "created": 1610361467.317718, + "asctime": "2021-01-14 00:26:29,903", + "created": 1610580389.9030316, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164982,8 +164929,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,317", - "created": 1610361467.3174553, + "asctime": "2021-01-14 00:26:29,902", + "created": 1610580389.9027658, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -164993,15 +164940,15 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): False ()", "module": "test", - "msecs": 317.4552917480469, + "msecs": 902.7657508850098, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17881.18267059326, + "relativeCreated": 17895.257472991943, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165010,8 +164957,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,317", - "created": 1610361467.3175871, + "asctime": "2021-01-14 00:26:29,902", + "created": 1610580389.9028997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -165021,41 +164968,41 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = False ()", "module": "test", - "msecs": 317.58713722229004, + "msecs": 902.8997421264648, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17881.314516067505, + "relativeCreated": 17895.3914642334, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 317.7180290222168, + "msecs": 903.031587600708, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17881.44540786743, + "relativeCreated": 17895.52330970764, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001308917999267578 + "time_consumption": 0.00013184547424316406 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3569307327270508, - "time_finished": "2021-01-11 11:37:47,317", - "time_start": "2021-01-11 11:37:46,960" + "time_consumption": 0.3563554286956787, + "time_finished": "2021-01-14 00:26:29,903", + "time_start": "2021-01-14 00:26:29,546" }, "_gvJ1oE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:47,318", - "created": 1610361467.3181615, + "asctime": "2021-01-14 00:26:29,903", + "created": 1610580389.903457, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165066,19 +165013,19 @@ "message": "_gvJ1oE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 318.1614875793457, + "msecs": 903.4569263458252, "msg": "_gvJ1oE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17881.88886642456, + "relativeCreated": 17895.94864845276, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3254282, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9101913, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -165093,8 +165040,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:47,319", - "created": 1610361467.3190734, + "asctime": "2021-01-14 00:26:29,904", + "created": 1610580389.9045486, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165104,23 +165051,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 319.0734386444092, + "msecs": 904.5486450195312, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17882.800817489624, + "relativeCreated": 17897.040367126465, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,319", - "created": 1610361467.3199213, + "asctime": "2021-01-14 00:26:29,905", + "created": 1610580389.9054492, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165130,23 +165077,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 319.92125511169434, + "msecs": 905.4491519927979, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17883.64863395691, + "relativeCreated": 17897.94087409973, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,320", - "created": 1610361467.3201525, + "asctime": "2021-01-14 00:26:29,905", + "created": 1610580389.9056623, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165156,41 +165103,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 320.15252113342285, + "msecs": 905.6622982025146, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17883.879899978638, + "relativeCreated": 17898.15402030945, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:47,320", - "created": 1610361467.3204708, + "asctime": "2021-01-14 00:26:29,906", + "created": 1610580389.9060082, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 320.47080993652344, + "msecs": 906.008243560791, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17884.19818878174, + "relativeCreated": 17898.499965667725, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165199,26 +165146,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:47,320", - "created": 1610361467.3206656, + "asctime": "2021-01-14 00:26:29,906", + "created": 1610580389.9061928, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 320.6655979156494, + "msecs": 906.1927795410156, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17884.392976760864, + "relativeCreated": 17898.68450164795, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165226,26 +165173,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:47,320", - "created": 1610361467.3209305, + "asctime": "2021-01-14 00:26:29,906", + "created": 1610580389.9064333, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 320.93048095703125, + "msecs": 906.4333438873291, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17884.657859802246, + "relativeCreated": 17898.925065994263, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165253,26 +165200,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:47,321", - "created": 1610361467.321148, + "asctime": "2021-01-14 00:26:29,906", + "created": 1610580389.9066002, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 321.1479187011719, + "msecs": 906.6002368927002, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17884.875297546387, + "relativeCreated": 17899.091958999634, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165280,26 +165227,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:47,321", - "created": 1610361467.3213153, + "asctime": "2021-01-14 00:26:29,906", + "created": 1610580389.9067514, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 321.3152885437012, + "msecs": 906.7513942718506, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17885.042667388916, + "relativeCreated": 17899.243116378784, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165307,26 +165254,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:47,321", - "created": 1610361467.321459, + "asctime": "2021-01-14 00:26:29,906", + "created": 1610580389.9068964, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 321.4590549468994, + "msecs": 906.8963527679443, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17885.186433792114, + "relativeCreated": 17899.388074874878, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165336,8 +165283,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:47,321", - "created": 1610361467.3216162, + "asctime": "2021-01-14 00:26:29,907", + "created": 1610580389.9070575, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165347,15 +165294,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 321.61617279052734, + "msecs": 907.057523727417, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17885.343551635742, + "relativeCreated": 17899.54924583435, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165365,8 +165312,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:47,321", - "created": 1610361467.321789, + "asctime": "2021-01-14 00:26:29,907", + "created": 1610580389.9072225, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165376,15 +165323,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 321.789026260376, + "msecs": 907.2225093841553, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17885.51640510559, + "relativeCreated": 17899.71423149109, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165394,8 +165341,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:47,321", - "created": 1610361467.321946, + "asctime": "2021-01-14 00:26:29,907", + "created": 1610580389.9073803, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165405,15 +165352,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 321.9459056854248, + "msecs": 907.3803424835205, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17885.67328453064, + "relativeCreated": 17899.872064590454, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165423,8 +165370,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:47,322", - "created": 1610361467.3220978, + "asctime": "2021-01-14 00:26:29,907", + "created": 1610580389.9075925, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165434,41 +165381,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 322.0977783203125, + "msecs": 907.5925350189209, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17885.825157165527, + "relativeCreated": 17900.084257125854, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:47,322", - "created": 1610361467.3222322, + "asctime": "2021-01-14 00:26:29,907", + "created": 1610580389.9077473, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 322.2322463989258, + "msecs": 907.7472686767578, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17885.95962524414, + "relativeCreated": 17900.23899078369, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165477,26 +165424,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:47,322", - "created": 1610361467.322394, + "asctime": "2021-01-14 00:26:29,907", + "created": 1610580389.9079, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 322.39389419555664, + "msecs": 907.9000949859619, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17886.12127304077, + "relativeCreated": 17900.391817092896, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165504,26 +165451,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:47,322", - "created": 1610361467.322577, + "asctime": "2021-01-14 00:26:29,908", + "created": 1610580389.9080856, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 322.57699966430664, + "msecs": 908.0855846405029, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17886.30437850952, + "relativeCreated": 17900.577306747437, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165531,26 +165478,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:47,322", - "created": 1610361467.3227212, + "asctime": "2021-01-14 00:26:29,908", + "created": 1610580389.908242, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 322.7212429046631, + "msecs": 908.2419872283936, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17886.448621749878, + "relativeCreated": 17900.733709335327, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165560,8 +165507,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:47,322", - "created": 1610361467.32287, + "asctime": "2021-01-14 00:26:29,908", + "created": 1610580389.908395, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165571,15 +165518,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 322.87001609802246, + "msecs": 908.3950519561768, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17886.597394943237, + "relativeCreated": 17900.88677406311, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165589,8 +165536,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:47,323", - "created": 1610361467.3230217, + "asctime": "2021-01-14 00:26:29,908", + "created": 1610580389.908551, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165600,15 +165547,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 323.02165031433105, + "msecs": 908.5509777069092, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17886.749029159546, + "relativeCreated": 17901.042699813843, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165617,26 +165564,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:47,323", - "created": 1610361467.3231673, + "asctime": "2021-01-14 00:26:29,908", + "created": 1610580389.9087002, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 323.1673240661621, + "msecs": 908.7002277374268, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17886.894702911377, + "relativeCreated": 17901.19194984436, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165645,26 +165592,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:47,323", - "created": 1610361467.323304, + "asctime": "2021-01-14 00:26:29,908", + "created": 1610580389.9088402, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 323.3039379119873, + "msecs": 908.8401794433594, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17887.031316757202, + "relativeCreated": 17901.331901550293, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165673,78 +165620,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:47,323", - "created": 1610361467.3234386, + "asctime": "2021-01-14 00:26:29,908", + "created": 1610580389.908978, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 323.4386444091797, + "msecs": 908.9779853820801, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17887.166023254395, + "relativeCreated": 17901.469707489014, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:47,323", - "created": 1610361467.323576, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9091594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 323.5759735107422, + "msecs": 909.1594219207764, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17887.303352355957, + "relativeCreated": 17901.65114402771, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:47,323", - "created": 1610361467.32385, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9092493, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 323.8499164581299, + "msecs": 909.2493057250977, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17887.577295303345, + "relativeCreated": 17901.74102783203, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165753,26 +165700,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.3240027, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.909298, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 324.002742767334, + "msecs": 909.2979431152344, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17887.73012161255, + "relativeCreated": 17901.789665222168, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165780,26 +165727,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.3242087, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9093645, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 324.20873641967773, + "msecs": 909.3644618988037, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17887.936115264893, + "relativeCreated": 17901.856184005737, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165807,26 +165754,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.3243537, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9094102, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 324.3536949157715, + "msecs": 909.4102382659912, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.081073760986, + "relativeCreated": 17901.901960372925, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165834,26 +165781,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.3245037, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9094574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 324.50366020202637, + "msecs": 909.4574451446533, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.23103904724, + "relativeCreated": 17901.949167251587, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165861,26 +165808,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.324642, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9095006, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 324.6419429779053, + "msecs": 909.5005989074707, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.36932182312, + "relativeCreated": 17901.992321014404, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165890,8 +165837,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.3247974, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9095502, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165901,15 +165848,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 324.7973918914795, + "msecs": 909.5501899719238, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.524770736694, + "relativeCreated": 17902.041912078857, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165919,8 +165866,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.324846, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.909599, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165930,15 +165877,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 324.8460292816162, + "msecs": 909.5990657806396, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.57340812683, + "relativeCreated": 17902.090787887573, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165948,8 +165895,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.3248951, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9096463, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165959,15 +165906,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 324.89514350891113, + "msecs": 909.6462726593018, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.622522354126, + "relativeCreated": 17902.137994766235, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -165977,8 +165924,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.3249419, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.909693, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -165988,41 +165935,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 324.94187355041504, + "msecs": 909.6930027008057, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.66925239563, + "relativeCreated": 17902.18472480774, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:47,324", - "created": 1610361467.324983, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9097345, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 324.9828815460205, + "msecs": 909.7344875335693, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.710260391235, + "relativeCreated": 17902.226209640503, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166031,26 +165978,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3250282, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.909784, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 325.0281810760498, + "msecs": 909.7840785980225, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.755559921265, + "relativeCreated": 17902.275800704956, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166058,26 +166005,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3250813, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9098375, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 325.08134841918945, + "msecs": 909.8374843597412, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.808727264404, + "relativeCreated": 17902.329206466675, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166085,26 +166032,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3251257, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9098825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 325.12569427490234, + "msecs": 909.8825454711914, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.853073120117, + "relativeCreated": 17902.374267578125, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166114,8 +166061,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3251703, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9099286, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166125,15 +166072,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 325.17027854919434, + "msecs": 909.928560256958, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.89765739441, + "relativeCreated": 17902.42028236389, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166143,8 +166090,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3252163, + "asctime": "2021-01-14 00:26:29,909", + "created": 1610580389.9099753, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166154,15 +166101,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 325.21629333496094, + "msecs": 909.9752902984619, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.943672180176, + "relativeCreated": 17902.467012405396, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166171,26 +166118,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3252633, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9100235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 325.26326179504395, + "msecs": 910.0234508514404, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17888.99064064026, + "relativeCreated": 17902.515172958374, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166199,26 +166146,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3253055, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9100664, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 325.3054618835449, + "msecs": 910.0663661956787, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.03284072876, + "relativeCreated": 17902.558088302612, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166227,71 +166174,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3253465, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9101083, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 325.3464698791504, + "msecs": 910.1083278656006, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.073848724365, + "relativeCreated": 17902.600049972534, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3253894, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9101515, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 325.3893852233887, + "msecs": 910.151481628418, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.116764068604, + "relativeCreated": 17902.64320373535, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 325.4282474517822, + "msecs": 910.1912975311279, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.155626296997, + "relativeCreated": 17902.68301963806, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 3.981590270996094e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:47,668", - "created": 1610361467.668978, + "asctime": "2021-01-14 00:26:30,253", + "created": 1610580390.2538774, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -166306,8 +166253,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3255174, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9102826, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166317,23 +166264,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 325.5174160003662, + "msecs": 910.2826118469238, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.24479484558, + "relativeCreated": 17902.774333953857, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3255603, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9103258, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166343,41 +166290,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 325.5603313446045, + "msecs": 910.3257656097412, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.28771018982, + "relativeCreated": 17902.817487716675, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3256025, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.910371, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 325.60253143310547, + "msecs": 910.3710651397705, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.32991027832, + "relativeCreated": 17902.862787246704, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166388,34 +166335,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3256857, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9104564, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 325.6857395172119, + "msecs": 910.4564189910889, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.413118362427, + "relativeCreated": 17902.948141098022, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3258638, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9106362, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166425,23 +166372,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 325.8638381958008, + "msecs": 910.6361865997314, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.591217041016, + "relativeCreated": 17903.127908706665, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3259144, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9106872, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166451,41 +166398,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 325.9143829345703, + "msecs": 910.6872081756592, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.641761779785, + "relativeCreated": 17903.178930282593, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:47,325", - "created": 1610361467.3259592, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9107327, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 325.9592056274414, + "msecs": 910.7327461242676, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.686584472656, + "relativeCreated": 17903.2244682312, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -166493,8 +166440,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,326", - "created": 1610361467.326115, + "asctime": "2021-01-14 00:26:29,910", + "created": 1610580389.9108927, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166504,15 +166451,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 326.1148929595947, + "msecs": 910.8927249908447, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17889.84227180481, + "relativeCreated": 17903.38444709778, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166520,8 +166467,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3343165, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9190526, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166531,15 +166478,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 334.3164920806885, + "msecs": 919.0526008605957, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.043870925903, + "relativeCreated": 17911.54432296753, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166547,8 +166494,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3344486, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9191875, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166558,15 +166505,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 334.44857597351074, + "msecs": 919.1875457763672, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.175954818726, + "relativeCreated": 17911.6792678833, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166575,8 +166522,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3345003, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9192395, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166586,15 +166533,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 334.5003128051758, + "msecs": 919.2395210266113, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.22769165039, + "relativeCreated": 17911.731243133545, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166602,8 +166549,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3345625, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.919306, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166613,15 +166560,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 334.5625400543213, + "msecs": 919.3060398101807, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.289918899536, + "relativeCreated": 17911.797761917114, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166630,8 +166577,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3346055, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.919352, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166641,15 +166588,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 334.60545539855957, + "msecs": 919.3520545959473, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.332834243774, + "relativeCreated": 17911.84377670288, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166657,8 +166604,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.334668, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9194148, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166668,15 +166615,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 334.6679210662842, + "msecs": 919.414758682251, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.3952999115, + "relativeCreated": 17911.906480789185, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166685,8 +166632,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3347092, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9194562, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166696,15 +166643,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 334.70916748046875, + "msecs": 919.4562435150146, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.436546325684, + "relativeCreated": 17911.94796562195, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166712,8 +166659,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.334765, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9195116, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166723,15 +166670,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 334.7649574279785, + "msecs": 919.5115566253662, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.492336273193, + "relativeCreated": 17912.0032787323, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166740,8 +166687,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.334805, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9195518, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166751,15 +166698,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 334.8050117492676, + "msecs": 919.5518493652344, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.532390594482, + "relativeCreated": 17912.043571472168, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166767,8 +166714,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3348587, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9196057, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166778,15 +166725,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 334.85865592956543, + "msecs": 919.6057319641113, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.58603477478, + "relativeCreated": 17912.097454071045, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166795,8 +166742,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3349025, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.919652, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166806,15 +166753,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 334.9025249481201, + "msecs": 919.651985168457, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.629903793335, + "relativeCreated": 17912.14370727539, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166822,8 +166769,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:47,334", - "created": 1610361467.3349903, + "asctime": "2021-01-14 00:26:29,919", + "created": 1610580389.9197369, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166833,15 +166780,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 334.9902629852295, + "msecs": 919.7368621826172, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17898.717641830444, + "relativeCreated": 17912.22858428955, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166849,8 +166796,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:47,336", - "created": 1610361467.3360558, + "asctime": "2021-01-14 00:26:29,920", + "created": 1610580389.920688, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -166860,15 +166807,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 336.0557556152344, + "msecs": 920.6879138946533, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17899.78313446045, + "relativeCreated": 17913.179636001587, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166876,8 +166823,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,336", - "created": 1610361467.3362498, + "asctime": "2021-01-14 00:26:29,920", + "created": 1610580389.9208179, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166887,15 +166834,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 336.24982833862305, + "msecs": 920.8178520202637, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17899.977207183838, + "relativeCreated": 17913.309574127197, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166904,8 +166851,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:47,336", - "created": 1610361467.3363748, + "asctime": "2021-01-14 00:26:29,920", + "created": 1610580389.920873, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166915,15 +166862,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 336.37475967407227, + "msecs": 920.8729267120361, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17900.102138519287, + "relativeCreated": 17913.36464881897, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166931,8 +166878,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:47,336", - "created": 1610361467.336513, + "asctime": "2021-01-14 00:26:29,920", + "created": 1610580389.9209602, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -166942,15 +166889,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 336.5130424499512, + "msecs": 920.9601879119873, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17900.240421295166, + "relativeCreated": 17913.45191001892, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166961,26 +166908,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,336", - "created": 1610361467.3367255, + "asctime": "2021-01-14 00:26:29,921", + "created": 1610580389.9210982, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 336.72547340393066, + "msecs": 921.0982322692871, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17900.452852249146, + "relativeCreated": 17913.58995437622, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -166988,26 +166935,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:47,336", - "created": 1610361467.336842, + "asctime": "2021-01-14 00:26:29,921", + "created": 1610580389.9212039, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 336.8420600891113, + "msecs": 921.2038516998291, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17900.569438934326, + "relativeCreated": 17913.695573806763, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -167018,26 +166965,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,336", - "created": 1610361467.336978, + "asctime": "2021-01-14 00:26:29,921", + "created": 1610580389.9213426, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 336.9779586791992, + "msecs": 921.3426113128662, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17900.705337524414, + "relativeCreated": 17913.8343334198, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -167045,8 +166992,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,337", - "created": 1610361467.3379767, + "asctime": "2021-01-14 00:26:29,921", + "created": 1610580389.9218013, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -167056,15 +167003,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 337.97669410705566, + "msecs": 921.8013286590576, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17901.70407295227, + "relativeCreated": 17914.29305076599, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167072,8 +167019,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,346", - "created": 1610361467.34626, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9301023, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -167083,15 +167030,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 346.26007080078125, + "msecs": 930.1023483276367, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17909.987449645996, + "relativeCreated": 17922.59407043457, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167099,8 +167046,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,346", - "created": 1610361467.3464286, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9302824, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167110,15 +167057,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 346.42863273620605, + "msecs": 930.2823543548584, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.15601158142, + "relativeCreated": 17922.774076461792, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167127,8 +167074,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:47,346", - "created": 1610361467.346515, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9303727, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167138,15 +167085,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 346.5149402618408, + "msecs": 930.3727149963379, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.242319107056, + "relativeCreated": 17922.86443710327, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167154,8 +167101,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,346", - "created": 1610361467.346643, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9304993, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167165,15 +167112,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 346.64297103881836, + "msecs": 930.4993152618408, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.370349884033, + "relativeCreated": 17922.991037368774, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167182,8 +167129,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,346", - "created": 1610361467.3467188, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9305756, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167193,15 +167140,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 346.71878814697266, + "msecs": 930.5756092071533, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.446166992188, + "relativeCreated": 17923.067331314087, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167209,8 +167156,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,346", - "created": 1610361467.3468351, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9306931, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167220,15 +167167,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 346.8351364135742, + "msecs": 930.6931495666504, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.56251525879, + "relativeCreated": 17923.184871673584, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167237,8 +167184,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,346", - "created": 1610361467.346906, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9307659, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167248,15 +167195,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 346.9059467315674, + "msecs": 930.7658672332764, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.633325576782, + "relativeCreated": 17923.25758934021, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167264,8 +167211,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,347", - "created": 1610361467.3470023, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.930864, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167275,15 +167222,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 347.0022678375244, + "msecs": 930.8640956878662, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.72964668274, + "relativeCreated": 17923.3558177948, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167292,8 +167239,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,347", - "created": 1610361467.3470752, + "asctime": "2021-01-14 00:26:29,930", + "created": 1610580389.9309359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167303,15 +167250,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 347.0752239227295, + "msecs": 930.9358596801758, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.802602767944, + "relativeCreated": 17923.42758178711, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167319,8 +167266,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,347", - "created": 1610361467.3471673, + "asctime": "2021-01-14 00:26:29,931", + "created": 1610580389.9310327, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167330,15 +167277,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 347.1672534942627, + "msecs": 931.032657623291, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17910.894632339478, + "relativeCreated": 17923.524379730225, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167347,8 +167294,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,347", - "created": 1610361467.3474379, + "asctime": "2021-01-14 00:26:29,931", + "created": 1610580389.9313128, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167358,15 +167305,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 347.43785858154297, + "msecs": 931.3127994537354, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17911.165237426758, + "relativeCreated": 17923.80452156067, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167374,8 +167321,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:47,347", - "created": 1610361467.3475733, + "asctime": "2021-01-14 00:26:29,931", + "created": 1610580389.931451, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -167385,15 +167332,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 347.57328033447266, + "msecs": 931.4510822296143, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17911.300659179688, + "relativeCreated": 17923.942804336548, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167401,8 +167348,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:47,348", - "created": 1610361467.3485012, + "asctime": "2021-01-14 00:26:29,932", + "created": 1610580389.9324787, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -167412,15 +167359,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 348.50120544433594, + "msecs": 932.478666305542, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17912.22858428955, + "relativeCreated": 17924.970388412476, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167428,8 +167375,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,348", - "created": 1610361467.3485935, + "asctime": "2021-01-14 00:26:29,932", + "created": 1610580389.932693, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167439,15 +167386,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 348.59347343444824, + "msecs": 932.6930046081543, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17912.320852279663, + "relativeCreated": 17925.184726715088, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167456,8 +167403,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:47,348", - "created": 1610361467.3486648, + "asctime": "2021-01-14 00:26:29,932", + "created": 1610580389.9327862, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167467,15 +167414,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 348.6647605895996, + "msecs": 932.786226272583, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17912.392139434814, + "relativeCreated": 17925.277948379517, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167483,8 +167430,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:47,348", - "created": 1610361467.3487947, + "asctime": "2021-01-14 00:26:29,932", + "created": 1610580389.9329202, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -167494,15 +167441,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 348.79469871520996, + "msecs": 932.9202175140381, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17912.522077560425, + "relativeCreated": 17925.41193962097, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167513,26 +167460,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,348", - "created": 1610361467.348999, + "asctime": "2021-01-14 00:26:29,933", + "created": 1610580389.9331813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 348.9990234375, + "msecs": 933.1812858581543, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17912.726402282715, + "relativeCreated": 17925.673007965088, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -167540,48 +167487,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:47,349", - "created": 1610361467.3490953, + "asctime": "2021-01-14 00:26:29,933", + "created": 1610580389.9332879, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 349.09534454345703, + "msecs": 933.2878589630127, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 17912.822723388672, + "relativeCreated": 17925.779581069946, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" } ], - "msecs": 668.9779758453369, + "msecs": 253.8774013519287, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18232.70535469055, + "relativeCreated": 18246.369123458862, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3198826313018799 + "time_consumption": 0.320589542388916 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:47,669", - "created": 1610361467.669824, + "asctime": "2021-01-14 00:26:30,254", + "created": 1610580390.25478, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167598,8 +167545,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,669", - "created": 1610361467.6694715, + "asctime": "2021-01-14 00:26:30,254", + "created": 1610580390.2543907, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167609,15 +167556,15 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 669.4715023040771, + "msecs": 254.39071655273438, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18233.198881149292, + "relativeCreated": 18246.882438659668, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -167626,8 +167573,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,669", - "created": 1610361467.6696458, + "asctime": "2021-01-14 00:26:30,254", + "created": 1610580390.2545884, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167637,37 +167584,37 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 669.6457862854004, + "msecs": 254.58836555480957, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18233.373165130615, + "relativeCreated": 18247.080087661743, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 669.8238849639893, + "msecs": 254.78005409240723, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18233.551263809204, + "relativeCreated": 18247.27177619934, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001780986785888672 + "time_consumption": 0.00019168853759765625 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:47,670", - "created": 1610361467.6703339, + "asctime": "2021-01-14 00:26:30,255", + "created": 1610580390.2553542, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167684,8 +167631,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,670", - "created": 1610361467.6700628, + "asctime": "2021-01-14 00:26:30,255", + "created": 1610580390.2550397, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167695,15 +167642,15 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 670.062780380249, + "msecs": 255.03969192504883, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18233.790159225464, + "relativeCreated": 18247.531414031982, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -167712,8 +167659,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:47,670", - "created": 1610361467.6702006, + "asctime": "2021-01-14 00:26:30,255", + "created": 1610580390.2552047, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167723,34 +167670,34 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 670.2005863189697, + "msecs": 255.2046775817871, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18233.927965164185, + "relativeCreated": 18247.69639968872, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 670.3338623046875, + "msecs": 255.3541660308838, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18234.061241149902, + "relativeCreated": 18247.845888137817, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013327598571777344 + "time_consumption": 0.0001494884490966797 }, { "args": [], - "asctime": "2021-01-11 11:37:47,671", - "created": 1610361467.6711507, + "asctime": "2021-01-14 00:26:30,256", + "created": 1610580390.2561889, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -167765,8 +167712,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:47,670", - "created": 1610361467.6705577, + "asctime": "2021-01-14 00:26:30,255", + "created": 1610580390.255576, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -167776,49 +167723,49 @@ "lineno": 296, "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 670.5577373504639, + "msecs": 255.57589530944824, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18234.28511619568, + "relativeCreated": 18248.067617416382, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:47,670", - "created": 1610361467.670717, + "asctime": "2021-01-14 00:26:30,255", + "created": 1610580390.2557416, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 670.7170009613037, + "msecs": 255.74159622192383, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18234.44437980652, + "relativeCreated": 18248.233318328857, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,670", - "created": 1610361467.670867, + "asctime": "2021-01-14 00:26:30,255", + "created": 1610580390.2559037, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -167828,63 +167775,63 @@ "lineno": 296, "message": "comm-server: Connection Lost...", "module": "__init__", - "msecs": 670.8669662475586, + "msecs": 255.9037208557129, "msg": "%s Connection Lost...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18234.594345092773, + "relativeCreated": 18248.395442962646, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:47,671", - "created": 1610361467.6710138, + "asctime": "2021-01-14 00:26:30,256", + "created": 1610580390.2560444, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 671.0138320922852, + "msecs": 256.0443878173828, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18234.7412109375, + "relativeCreated": 18248.536109924316, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 671.1506843566895, + "msecs": 256.18886947631836, "msg": "Disconnecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18234.878063201904, + "relativeCreated": 18248.680591583252, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013685226440429688 + "time_consumption": 0.00014448165893554688 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:47,671", - "created": 1610361467.671645, + "asctime": "2021-01-14 00:26:30,256", + "created": 1610580390.2567132, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167901,8 +167848,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,671", - "created": 1610361467.6713753, + "asctime": "2021-01-14 00:26:30,256", + "created": 1610580390.2564254, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167912,15 +167859,15 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): False ()", "module": "test", - "msecs": 671.3752746582031, + "msecs": 256.4253807067871, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18235.102653503418, + "relativeCreated": 18248.91710281372, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -167929,8 +167876,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,671", - "created": 1610361467.6715121, + "asctime": "2021-01-14 00:26:30,256", + "created": 1610580390.256576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167940,37 +167887,37 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = False ()", "module": "test", - "msecs": 671.5121269226074, + "msecs": 256.5760612487793, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18235.239505767822, + "relativeCreated": 18249.067783355713, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 671.644926071167, + "msecs": 256.7131519317627, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18235.372304916382, + "relativeCreated": 18249.204874038696, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001327991485595703 + "time_consumption": 0.00013709068298339844 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:47,672", - "created": 1610361467.6721308, + "asctime": "2021-01-14 00:26:30,257", + "created": 1610580390.2572644, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167987,8 +167934,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,671", - "created": 1610361467.6718552, + "asctime": "2021-01-14 00:26:30,256", + "created": 1610580390.2569246, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -167998,15 +167945,15 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): False ()", "module": "test", - "msecs": 671.8552112579346, + "msecs": 256.9246292114258, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18235.58259010315, + "relativeCreated": 18249.41635131836, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -168015,8 +167962,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:47,671", - "created": 1610361467.6719875, + "asctime": "2021-01-14 00:26:30,257", + "created": 1610580390.2570808, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -168026,34 +167973,34 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = False ()", "module": "test", - "msecs": 671.9875335693359, + "msecs": 257.0807933807373, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18235.71491241455, + "relativeCreated": 18249.57251548767, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 672.130823135376, + "msecs": 257.2643756866455, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18235.85820198059, + "relativeCreated": 18249.75609779358, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014328956604003906 + "time_consumption": 0.00018358230590820312 }, { "args": [], - "asctime": "2021-01-11 11:37:48,016", - "created": 1610361468.0166476, + "asctime": "2021-01-14 00:26:30,602", + "created": 1610580390.602299, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", @@ -168068,8 +168015,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:47,672", - "created": 1610361467.6723516, + "asctime": "2021-01-14 00:26:30,257", + "created": 1610580390.25751, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168079,23 +168026,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 672.351598739624, + "msecs": 257.5099468231201, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18236.07897758484, + "relativeCreated": 18250.001668930054, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:47,672", - "created": 1610361467.6724918, + "asctime": "2021-01-14 00:26:30,257", + "created": 1610580390.257651, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168105,41 +168052,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 672.4917888641357, + "msecs": 257.65109062194824, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18236.21916770935, + "relativeCreated": 18250.142812728882, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:47,672", - "created": 1610361467.6726327, + "asctime": "2021-01-14 00:26:30,257", + "created": 1610580390.2577932, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 672.6326942443848, + "msecs": 257.7931880950928, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18236.3600730896, + "relativeCreated": 18250.284910202026, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -168150,34 +168097,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,672", - "created": 1610361467.6728883, + "asctime": "2021-01-14 00:26:30,258", + "created": 1610580390.2580752, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 672.8882789611816, + "msecs": 258.0752372741699, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18236.615657806396, + "relativeCreated": 18250.566959381104, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,673", - "created": 1610361467.6732736, + "asctime": "2021-01-14 00:26:30,258", + "created": 1610580390.2586374, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168187,23 +168134,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 673.2735633850098, + "msecs": 258.6374282836914, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18237.000942230225, + "relativeCreated": 18251.129150390625, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:47,673", - "created": 1610361467.673378, + "asctime": "2021-01-14 00:26:30,258", + "created": 1610580390.2588012, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168213,41 +168160,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 673.3779907226562, + "msecs": 258.8012218475342, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18237.10536956787, + "relativeCreated": 18251.292943954468, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:47,673", - "created": 1610361467.6734698, + "asctime": "2021-01-14 00:26:30,258", + "created": 1610580390.2589478, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 673.4697818756104, + "msecs": 258.94784927368164, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18237.197160720825, + "relativeCreated": 18251.439571380615, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -168255,8 +168202,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,674", - "created": 1610361467.6740615, + "asctime": "2021-01-14 00:26:30,259", + "created": 1610580390.2594674, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168266,15 +168213,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 674.0615367889404, + "msecs": 259.46736335754395, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18237.788915634155, + "relativeCreated": 18251.959085464478, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168282,8 +168229,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,682", - "created": 1610361467.68235, + "asctime": "2021-01-14 00:26:30,267", + "created": 1610580390.2676783, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168293,15 +168240,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 682.3499202728271, + "msecs": 267.67826080322266, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.077299118042, + "relativeCreated": 18260.169982910156, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168309,8 +168256,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,682", - "created": 1610361467.682542, + "asctime": "2021-01-14 00:26:30,267", + "created": 1610580390.267835, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168320,15 +168267,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 682.542085647583, + "msecs": 267.8349018096924, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.269464492798, + "relativeCreated": 18260.326623916626, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168337,8 +168284,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:47,682", - "created": 1610361467.6826437, + "asctime": "2021-01-14 00:26:30,267", + "created": 1610580390.2679024, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168348,15 +168295,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 682.6436519622803, + "msecs": 267.9023742675781, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.371030807495, + "relativeCreated": 18260.39409637451, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168364,8 +168311,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,682", - "created": 1610361467.6827652, + "asctime": "2021-01-14 00:26:30,267", + "created": 1610580390.2679815, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168375,15 +168322,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 682.7652454376221, + "msecs": 267.98152923583984, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.492624282837, + "relativeCreated": 18260.473251342773, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168392,8 +168339,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,682", - "created": 1610361467.682852, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.2680404, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168403,15 +168350,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 682.852029800415, + "msecs": 268.04041862487793, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.57940864563, + "relativeCreated": 18260.53214073181, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168419,8 +168366,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,682", - "created": 1610361467.682975, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.2681162, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168430,15 +168377,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 682.9750537872314, + "msecs": 268.1162357330322, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.702432632446, + "relativeCreated": 18260.607957839966, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168447,8 +168394,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,683", - "created": 1610361467.68308, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.2681665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168458,15 +168405,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 683.0799579620361, + "msecs": 268.16654205322266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.80733680725, + "relativeCreated": 18260.658264160156, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168474,8 +168421,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,683", - "created": 1610361467.6831982, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.2682512, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168485,15 +168432,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 683.1982135772705, + "msecs": 268.2511806488037, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18246.925592422485, + "relativeCreated": 18260.742902755737, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168502,8 +168449,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,683", - "created": 1610361467.6832793, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.2683182, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168513,15 +168460,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 683.279275894165, + "msecs": 268.31817626953125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18247.00665473938, + "relativeCreated": 18260.809898376465, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168529,8 +168476,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,683", - "created": 1610361467.683386, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.268386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168540,15 +168487,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 683.3860874176025, + "msecs": 268.3858871459961, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18247.113466262817, + "relativeCreated": 18260.87760925293, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168557,8 +168504,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,683", - "created": 1610361467.6834664, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.268437, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168568,15 +168515,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 683.4664344787598, + "msecs": 268.4369087219238, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18247.193813323975, + "relativeCreated": 18260.928630828857, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168584,8 +168531,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:47,683", - "created": 1610361467.6836262, + "asctime": "2021-01-14 00:26:30,268", + "created": 1610580390.2685344, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168595,15 +168542,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 683.6261749267578, + "msecs": 268.53442192077637, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18247.353553771973, + "relativeCreated": 18261.02614402771, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168611,8 +168558,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:47,684", - "created": 1610361467.6846056, + "asctime": "2021-01-14 00:26:30,269", + "created": 1610580390.2694287, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168622,15 +168569,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 684.605598449707, + "msecs": 269.4287300109863, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18248.332977294922, + "relativeCreated": 18261.92045211792, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168638,8 +168585,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,684", - "created": 1610361467.6847737, + "asctime": "2021-01-14 00:26:30,269", + "created": 1610580390.2694983, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168649,15 +168596,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 684.7736835479736, + "msecs": 269.498348236084, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18248.50106239319, + "relativeCreated": 18261.990070343018, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168666,8 +168613,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:47,684", - "created": 1610361467.6848798, + "asctime": "2021-01-14 00:26:30,269", + "created": 1610580390.2695508, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168677,15 +168624,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 684.8797798156738, + "msecs": 269.5508003234863, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18248.60715866089, + "relativeCreated": 18262.04252243042, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168693,8 +168640,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:47,685", - "created": 1610361467.6850305, + "asctime": "2021-01-14 00:26:30,269", + "created": 1610580390.269644, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168704,15 +168651,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 685.030460357666, + "msecs": 269.64402198791504, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18248.75783920288, + "relativeCreated": 18262.13574409485, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168723,26 +168670,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,685", - "created": 1610361467.6852686, + "asctime": "2021-01-14 00:26:30,269", + "created": 1610580390.269799, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 685.2686405181885, + "msecs": 269.79899406433105, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18248.996019363403, + "relativeCreated": 18262.290716171265, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168750,26 +168697,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:47,685", - "created": 1610361467.6853848, + "asctime": "2021-01-14 00:26:30,269", + "created": 1610580390.2698681, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 685.3847503662109, + "msecs": 269.8681354522705, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18249.112129211426, + "relativeCreated": 18262.359857559204, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168780,26 +168727,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,685", - "created": 1610361467.6855407, + "asctime": "2021-01-14 00:26:30,269", + "created": 1610580390.2699666, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 685.5406761169434, + "msecs": 269.96660232543945, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18249.26805496216, + "relativeCreated": 18262.458324432373, "stack_info": null, - "thread": 139975349737216, + "thread": 140579983849216, "threadName": "Thread-33" }, { @@ -168807,8 +168754,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,686", - "created": 1610361467.6860507, + "asctime": "2021-01-14 00:26:30,270", + "created": 1610580390.2702732, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168818,15 +168765,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 686.0506534576416, + "msecs": 270.27320861816406, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18249.778032302856, + "relativeCreated": 18262.764930725098, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -168834,8 +168781,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:47,694", - "created": 1610361467.6944013, + "asctime": "2021-01-14 00:26:30,278", + "created": 1610580390.2784674, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -168845,15 +168792,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 694.4012641906738, + "msecs": 278.46741676330566, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18258.12864303589, + "relativeCreated": 18270.95913887024, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -168861,8 +168808,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,694", - "created": 1610361467.6946502, + "asctime": "2021-01-14 00:26:30,278", + "created": 1610580390.2786086, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168872,15 +168819,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 694.6501731872559, + "msecs": 278.6085605621338, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18258.37755203247, + "relativeCreated": 18271.100282669067, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -168889,8 +168836,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:47,694", - "created": 1610361467.6948164, + "asctime": "2021-01-14 00:26:30,278", + "created": 1610580390.2786868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168900,15 +168847,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 694.8163509368896, + "msecs": 278.6867618560791, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18258.543729782104, + "relativeCreated": 18271.178483963013, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -168916,8 +168863,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,694", - "created": 1610361467.6949933, + "asctime": "2021-01-14 00:26:30,278", + "created": 1610580390.2787652, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168927,15 +168874,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 694.993257522583, + "msecs": 278.7652015686035, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18258.720636367798, + "relativeCreated": 18271.256923675537, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -168944,8 +168891,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,695", - "created": 1610361467.6951191, + "asctime": "2021-01-14 00:26:30,278", + "created": 1610580390.2788222, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168955,15 +168902,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 695.1191425323486, + "msecs": 278.8221836090088, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18258.846521377563, + "relativeCreated": 18271.313905715942, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -168971,8 +168918,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,695", - "created": 1610361467.6952987, + "asctime": "2021-01-14 00:26:30,278", + "created": 1610580390.2788985, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -168982,15 +168929,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 695.2986717224121, + "msecs": 278.8984775543213, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18259.026050567627, + "relativeCreated": 18271.390199661255, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -168999,8 +168946,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,695", - "created": 1610361467.6954186, + "asctime": "2021-01-14 00:26:30,278", + "created": 1610580390.278953, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169010,15 +168957,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 695.4185962677002, + "msecs": 278.95307540893555, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18259.145975112915, + "relativeCreated": 18271.44479751587, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169026,8 +168973,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,695", - "created": 1610361467.6955817, + "asctime": "2021-01-14 00:26:30,279", + "created": 1610580390.279022, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169037,15 +168984,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 695.5816745758057, + "msecs": 279.0219783782959, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18259.30905342102, + "relativeCreated": 18271.51370048523, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169054,8 +169001,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,695", - "created": 1610361467.6957023, + "asctime": "2021-01-14 00:26:30,279", + "created": 1610580390.2790728, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169065,15 +169012,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 695.702314376831, + "msecs": 279.07276153564453, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18259.429693222046, + "relativeCreated": 18271.564483642578, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169081,8 +169028,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,695", - "created": 1610361467.695858, + "asctime": "2021-01-14 00:26:30,279", + "created": 1610580390.2791386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169092,15 +169039,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 695.8580017089844, + "msecs": 279.13856506347656, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18259.5853805542, + "relativeCreated": 18271.63028717041, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169109,8 +169056,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:47,695", - "created": 1610361467.6959841, + "asctime": "2021-01-14 00:26:30,279", + "created": 1610580390.2791877, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169120,15 +169067,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 695.9841251373291, + "msecs": 279.1876792907715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18259.711503982544, + "relativeCreated": 18271.679401397705, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169136,8 +169083,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:47,696", - "created": 1610361467.6961892, + "asctime": "2021-01-14 00:26:30,279", + "created": 1610580390.2792904, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169147,15 +169094,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 696.1891651153564, + "msecs": 279.29043769836426, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18259.91654396057, + "relativeCreated": 18271.782159805298, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169163,8 +169110,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:47,697", - "created": 1610361467.6971993, + "asctime": "2021-01-14 00:26:30,280", + "created": 1610580390.2801855, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169174,15 +169121,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 697.1993446350098, + "msecs": 280.1854610443115, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18260.926723480225, + "relativeCreated": 18272.677183151245, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169190,8 +169137,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:47,697", - "created": 1610361467.6973703, + "asctime": "2021-01-14 00:26:30,280", + "created": 1610580390.2802527, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169201,15 +169148,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 697.3702907562256, + "msecs": 280.25269508361816, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18261.09766960144, + "relativeCreated": 18272.74441719055, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169218,8 +169165,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:47,697", - "created": 1610361467.6975067, + "asctime": "2021-01-14 00:26:30,280", + "created": 1610580390.28031, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169229,15 +169176,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 697.5066661834717, + "msecs": 280.30991554260254, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18261.234045028687, + "relativeCreated": 18272.801637649536, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169245,8 +169192,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:47,697", - "created": 1610361467.697719, + "asctime": "2021-01-14 00:26:30,280", + "created": 1610580390.280401, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -169256,15 +169203,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 697.7190971374512, + "msecs": 280.40099143981934, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18261.446475982666, + "relativeCreated": 18272.892713546753, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169275,26 +169222,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:47,698", - "created": 1610361467.6980467, + "asctime": "2021-01-14 00:26:30,280", + "created": 1610580390.280556, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 698.0466842651367, + "msecs": 280.55596351623535, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18261.77406311035, + "relativeCreated": 18273.04768562317, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" }, { @@ -169302,48 +169249,48 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:47,698", - "created": 1610361467.6982071, + "asctime": "2021-01-14 00:26:30,280", + "created": 1610580390.2806323, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 698.2071399688721, + "msecs": 280.63225746154785, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18261.934518814087, + "relativeCreated": 18273.12397956848, "stack_info": null, - "thread": 139974997440256, + "thread": 140579975456512, "threadName": "Thread-34" } ], - "msecs": 16.6475772857666, + "msecs": 602.2989749908447, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18580.37495613098, + "relativeCreated": 18594.79069709778, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.31844043731689453 + "time_consumption": 0.3216667175292969 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:48,017", - "created": 1610361468.0174906, + "asctime": "2021-01-14 00:26:30,603", + "created": 1610580390.603146, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -169360,8 +169307,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,017", - "created": 1610361468.0171585, + "asctime": "2021-01-14 00:26:30,602", + "created": 1610580390.6028156, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -169371,15 +169318,15 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 17.15850830078125, + "msecs": 602.8156280517578, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18580.885887145996, + "relativeCreated": 18595.30735015869, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169388,8 +169335,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,017", - "created": 1610361468.0173366, + "asctime": "2021-01-14 00:26:30,602", + "created": 1610580390.602991, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -169399,37 +169346,37 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 17.336606979370117, + "msecs": 602.9911041259766, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18581.063985824585, + "relativeCreated": 18595.48282623291, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 17.490625381469727, + "msecs": 603.1460762023926, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18581.218004226685, + "relativeCreated": 18595.637798309326, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.00015497207641601562 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:48,018", - "created": 1610361468.0180302, + "asctime": "2021-01-14 00:26:30,603", + "created": 1610580390.6036887, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -169446,8 +169393,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,017", - "created": 1610361468.0177267, + "asctime": "2021-01-14 00:26:30,603", + "created": 1610580390.6033864, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -169457,15 +169404,15 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 17.726659774780273, + "msecs": 603.386402130127, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18581.454038619995, + "relativeCreated": 18595.87812423706, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169474,8 +169421,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:48,017", - "created": 1610361468.0178938, + "asctime": "2021-01-14 00:26:30,603", + "created": 1610580390.6035516, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -169485,41 +169432,41 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 17.89379119873047, + "msecs": 603.5516262054443, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18581.621170043945, + "relativeCreated": 18596.043348312378, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 18.030166625976562, + "msecs": 603.6887168884277, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 18581.75754547119, + "relativeCreated": 18596.18043899536, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013637542724609375 + "time_consumption": 0.00013709068298339844 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.6998686790466309, - "time_finished": "2021-01-11 11:37:48,018", - "time_start": "2021-01-11 11:37:47,318" + "time_consumption": 0.7002317905426025, + "time_finished": "2021-01-14 00:26:30,603", + "time_start": "2021-01-14 00:26:29,903" }, "_j-npsE0MEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:31,266", - "created": 1610361451.2665668, + "asctime": "2021-01-14 00:26:13,840", + "created": 1610580373.8403277, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169530,19 +169477,19 @@ "message": "_j-npsE0MEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 266.5667533874512, + "msecs": 840.3277397155762, "msg": "_j-npsE0MEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1830.294132232666, + "relativeCreated": 1832.8194618225098, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:31,275", - "created": 1610361451.2758079, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.846872, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -169557,8 +169504,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:31,267", - "created": 1610361451.2674937, + "asctime": "2021-01-14 00:26:13,841", + "created": 1610580373.8417091, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169568,23 +169515,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 267.49372482299805, + "msecs": 841.7091369628906, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1831.221103668213, + "relativeCreated": 1834.2008590698242, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:31,268", - "created": 1610361451.2683864, + "asctime": "2021-01-14 00:26:13,843", + "created": 1610580373.8431237, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169594,23 +169541,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 268.3863639831543, + "msecs": 843.1236743927002, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1832.1137428283691, + "relativeCreated": 1835.6153964996338, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:31,268", - "created": 1610361451.2686384, + "asctime": "2021-01-14 00:26:13,843", + "created": 1610580373.843449, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169620,41 +169567,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 268.63837242126465, + "msecs": 843.4491157531738, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1832.3657512664795, + "relativeCreated": 1835.9408378601074, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:31,268", - "created": 1610361451.2689989, + "asctime": "2021-01-14 00:26:13,843", + "created": 1610580373.8437688, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 268.9988613128662, + "msecs": 843.768835067749, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1832.726240158081, + "relativeCreated": 1836.2605571746826, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169663,26 +169610,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:31,269", - "created": 1610361451.2691844, + "asctime": "2021-01-14 00:26:13,843", + "created": 1610580373.843946, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 269.1843509674072, + "msecs": 843.9459800720215, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1832.911729812622, + "relativeCreated": 1836.437702178955, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169690,26 +169637,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:31,269", - "created": 1610361451.269405, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8441486, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 269.4048881530762, + "msecs": 844.1486358642578, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1833.132266998291, + "relativeCreated": 1836.6403579711914, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169717,26 +169664,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:31,269", - "created": 1610361451.2695618, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.844268, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 269.561767578125, + "msecs": 844.2680835723877, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1833.2891464233398, + "relativeCreated": 1836.7598056793213, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169744,26 +169691,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:31,269", - "created": 1610361451.2697072, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.844357, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 269.70720291137695, + "msecs": 844.3570137023926, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1833.4345817565918, + "relativeCreated": 1836.8487358093262, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169771,26 +169718,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:31,269", - "created": 1610361451.2698472, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8444204, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 269.84715461730957, + "msecs": 844.4204330444336, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1833.5745334625244, + "relativeCreated": 1836.9121551513672, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169800,8 +169747,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:31,270", - "created": 1610361451.2700238, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8444974, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169811,15 +169758,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 270.0238227844238, + "msecs": 844.4974422454834, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1833.7512016296387, + "relativeCreated": 1836.989164352417, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169829,8 +169776,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:31,270", - "created": 1610361451.2701845, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8445666, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169840,15 +169787,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 270.1845169067383, + "msecs": 844.5665836334229, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1833.9118957519531, + "relativeCreated": 1837.0583057403564, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169858,8 +169805,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:31,270", - "created": 1610361451.2703536, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8446336, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169869,15 +169816,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 270.3535556793213, + "msecs": 844.6335792541504, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1834.0809345245361, + "relativeCreated": 1837.125301361084, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169887,8 +169834,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:31,270", - "created": 1610361451.2705083, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8446958, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -169898,41 +169845,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 270.5082893371582, + "msecs": 844.6958065032959, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1834.235668182373, + "relativeCreated": 1837.1875286102295, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:31,270", - "created": 1610361451.2706435, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.844755, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 270.6434726715088, + "msecs": 844.7549343109131, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1834.3708515167236, + "relativeCreated": 1837.2466564178467, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169941,26 +169888,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:31,270", - "created": 1610361451.2707944, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8448253, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 270.7943916320801, + "msecs": 844.825267791748, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1834.521770477295, + "relativeCreated": 1837.3169898986816, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169968,26 +169915,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:31,270", - "created": 1610361451.2709572, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.844897, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 270.95723152160645, + "msecs": 844.8970317840576, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1834.6846103668213, + "relativeCreated": 1837.3887538909912, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -169995,26 +169942,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:31,271", - "created": 1610361451.271099, + "asctime": "2021-01-14 00:26:13,844", + "created": 1610580373.8449576, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 271.0990905761719, + "msecs": 844.9575901031494, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1834.8264694213867, + "relativeCreated": 1837.449312210083, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170024,8 +169971,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:31,271", - "created": 1610361451.2712467, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8450222, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170035,15 +169982,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 271.24667167663574, + "msecs": 845.0222015380859, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1834.9740505218506, + "relativeCreated": 1837.5139236450195, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170053,8 +170000,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:31,271", - "created": 1610361451.2717083, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8450887, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170064,15 +170011,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 271.70825004577637, + "msecs": 845.0887203216553, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1835.4356288909912, + "relativeCreated": 1837.5804424285889, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170081,26 +170028,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:31,271", - "created": 1610361451.2718887, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8451946, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 271.88873291015625, + "msecs": 845.1945781707764, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1835.616111755371, + "relativeCreated": 1837.68630027771, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170109,26 +170056,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:31,272", - "created": 1610361451.272051, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8454227, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 272.0510959625244, + "msecs": 845.4227447509766, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1835.7784748077393, + "relativeCreated": 1837.9144668579102, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170137,78 +170084,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:31,272", - "created": 1610361451.272201, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8454819, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 272.2010612487793, + "msecs": 845.4818725585938, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1835.9284400939941, + "relativeCreated": 1837.9735946655273, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:31,272", - "created": 1610361451.2723563, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8455431, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 272.3562717437744, + "msecs": 845.5431461334229, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1836.0836505889893, + "relativeCreated": 1838.0348682403564, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:31,272", - "created": 1610361451.2726371, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8456697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 272.63712882995605, + "msecs": 845.6697463989258, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1836.364507675171, + "relativeCreated": 1838.1614685058594, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170217,26 +170164,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:31,272", - "created": 1610361451.2728138, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8457336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 272.8137969970703, + "msecs": 845.733642578125, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1836.5411758422852, + "relativeCreated": 1838.2253646850586, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170244,26 +170191,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:31,273", - "created": 1610361451.273017, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8458233, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 273.01692962646484, + "msecs": 845.8232879638672, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1836.7443084716797, + "relativeCreated": 1838.3150100708008, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170271,26 +170218,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:31,273", - "created": 1610361451.2731688, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8458865, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 273.16880226135254, + "msecs": 845.8864688873291, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1836.8961811065674, + "relativeCreated": 1838.3781909942627, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170298,26 +170245,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:31,273", - "created": 1610361451.2733226, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.8459423, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 273.32258224487305, + "msecs": 845.9422588348389, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1837.049961090088, + "relativeCreated": 1838.4339809417725, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170325,26 +170272,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:31,273", - "created": 1610361451.2734618, + "asctime": "2021-01-14 00:26:13,845", + "created": 1610580373.845997, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 273.46181869506836, + "msecs": 845.9970951080322, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1837.1891975402832, + "relativeCreated": 1838.4888172149658, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170354,8 +170301,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:31,273", - "created": 1610361451.2736099, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8460526, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170365,15 +170312,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 273.60987663269043, + "msecs": 846.0526466369629, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1837.3372554779053, + "relativeCreated": 1838.5443687438965, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170383,8 +170330,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:31,273", - "created": 1610361451.2737634, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8461158, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170394,15 +170341,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 273.76341819763184, + "msecs": 846.1158275604248, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1837.4907970428467, + "relativeCreated": 1838.6075496673584, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170412,8 +170359,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:31,273", - "created": 1610361451.2739143, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8461769, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170423,15 +170370,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 273.9143371582031, + "msecs": 846.1768627166748, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1837.641716003418, + "relativeCreated": 1838.6685848236084, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170441,8 +170388,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:31,274", - "created": 1610361451.274064, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8462334, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170452,41 +170399,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 274.0640640258789, + "msecs": 846.2333679199219, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1837.7914428710938, + "relativeCreated": 1838.7250900268555, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:31,274", - "created": 1610361451.2742105, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8462958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 274.21045303344727, + "msecs": 846.2958335876465, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1837.937831878662, + "relativeCreated": 1838.78755569458, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170495,26 +170442,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:31,274", - "created": 1610361451.274362, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8463619, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 274.36208724975586, + "msecs": 846.3618755340576, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1838.0894660949707, + "relativeCreated": 1838.8535976409912, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170522,26 +170469,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:31,274", - "created": 1610361451.2745228, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8464277, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 274.5227813720703, + "msecs": 846.4276790618896, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1838.2501602172852, + "relativeCreated": 1838.9194011688232, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170549,26 +170496,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:31,274", - "created": 1610361451.274667, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8464847, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 274.66702461242676, + "msecs": 846.4846611022949, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1838.3944034576416, + "relativeCreated": 1838.9763832092285, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170578,8 +170525,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:31,274", - "created": 1610361451.2748127, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8465438, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170589,15 +170536,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 274.8126983642578, + "msecs": 846.5437889099121, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1838.5400772094727, + "relativeCreated": 1839.0355110168457, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170607,8 +170554,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:31,274", - "created": 1610361451.274989, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8466015, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170618,15 +170565,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 274.98888969421387, + "msecs": 846.6014862060547, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1838.7162685394287, + "relativeCreated": 1839.0932083129883, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170635,26 +170582,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:31,275", - "created": 1610361451.2751656, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8466573, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 275.1655578613281, + "msecs": 846.6572761535645, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1838.892936706543, + "relativeCreated": 1839.148998260498, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170663,26 +170610,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:31,275", - "created": 1610361451.2753294, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8467147, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 275.3293514251709, + "msecs": 846.7147350311279, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1839.0567302703857, + "relativeCreated": 1839.2064571380615, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170691,71 +170638,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:31,275", - "created": 1610361451.2754908, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8467643, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 275.49076080322266, + "msecs": 846.764326095581, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1839.2181396484375, + "relativeCreated": 1839.2560482025146, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:31,275", - "created": 1610361451.2756658, + "asctime": "2021-01-14 00:26:13,846", + "created": 1610580373.8468177, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 275.6657600402832, + "msecs": 846.8177318572998, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1839.393138885498, + "relativeCreated": 1839.3094539642334, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 275.80785751342773, + "msecs": 846.872091293335, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1839.5352363586426, + "relativeCreated": 1839.3638134002686, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014209747314453125 + "time_consumption": 5.435943603515625e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:31,620", - "created": 1610361451.6202834, + "asctime": "2021-01-14 00:26:14,190", + "created": 1610580374.1908958, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -170770,8 +170717,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:31,276", - "created": 1610361451.276096, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.8470087, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170781,23 +170728,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 276.0961055755615, + "msecs": 847.0087051391602, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1839.8234844207764, + "relativeCreated": 1839.5004272460938, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:31,276", - "created": 1610361451.2762554, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.8470707, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170807,41 +170754,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 276.25536918640137, + "msecs": 847.0706939697266, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1839.9827480316162, + "relativeCreated": 1839.5624160766602, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:31,276", - "created": 1610361451.2763984, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.8471296, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 276.3984203338623, + "msecs": 847.1295833587646, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1840.1257991790771, + "relativeCreated": 1839.6213054656982, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170852,34 +170799,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,276", - "created": 1610361451.2766542, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.8472404, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 276.6542434692383, + "msecs": 847.2404479980469, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1840.3816223144531, + "relativeCreated": 1839.7321701049805, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:31,276", - "created": 1610361451.2769322, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.8475013, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170889,23 +170836,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 276.9322395324707, + "msecs": 847.501277923584, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1840.6596183776855, + "relativeCreated": 1839.9930000305176, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:31,276", - "created": 1610361451.2769847, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.8475757, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170915,41 +170862,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 276.98469161987305, + "msecs": 847.5756645202637, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1840.712070465088, + "relativeCreated": 1840.0673866271973, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:31,277", - "created": 1610361451.2770305, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.8476334, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 277.03046798706055, + "msecs": 847.6333618164062, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1840.7578468322754, + "relativeCreated": 1840.1250839233398, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -170957,8 +170904,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,277", - "created": 1610361451.2771428, + "asctime": "2021-01-14 00:26:13,847", + "created": 1610580373.847789, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170968,15 +170915,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 277.1427631378174, + "msecs": 847.7890491485596, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1840.8701419830322, + "relativeCreated": 1840.2807712554932, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -170984,8 +170931,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2852674, + "asctime": "2021-01-14 00:26:13,856", + "created": 1610580373.856063, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -170995,15 +170942,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 285.2673530578613, + "msecs": 856.0628890991211, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1848.9947319030762, + "relativeCreated": 1848.5546112060547, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171011,8 +170958,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2853885, + "asctime": "2021-01-14 00:26:13,856", + "created": 1610580373.856388, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171022,15 +170969,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 285.3884696960449, + "msecs": 856.3880920410156, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.1158485412598, + "relativeCreated": 1848.8798141479492, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171039,8 +170986,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2854414, + "asctime": "2021-01-14 00:26:13,856", + "created": 1610580373.8565907, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171050,15 +170997,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 285.44139862060547, + "msecs": 856.590747833252, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.1687774658203, + "relativeCreated": 1849.0824699401855, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171066,8 +171013,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2855124, + "asctime": "2021-01-14 00:26:13,856", + "created": 1610580373.856802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171077,15 +171024,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 285.51244735717773, + "msecs": 856.8019866943359, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.2398262023926, + "relativeCreated": 1849.2937088012695, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171094,8 +171041,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2855773, + "asctime": "2021-01-14 00:26:13,857", + "created": 1610580373.8570225, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171105,15 +171052,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 285.57729721069336, + "msecs": 857.0225238800049, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.3046760559082, + "relativeCreated": 1849.5142459869385, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171121,8 +171068,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2856584, + "asctime": "2021-01-14 00:26:13,857", + "created": 1610580373.8575194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171132,15 +171079,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 285.6583595275879, + "msecs": 857.5193881988525, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.3857383728027, + "relativeCreated": 1850.0111103057861, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171149,8 +171096,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.285701, + "asctime": "2021-01-14 00:26:13,857", + "created": 1610580373.857735, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171160,15 +171107,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 285.70103645324707, + "msecs": 857.7349185943604, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.428415298462, + "relativeCreated": 1850.226640701294, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171176,8 +171123,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.285773, + "asctime": "2021-01-14 00:26:13,857", + "created": 1610580373.85794, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171187,15 +171134,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 285.77303886413574, + "msecs": 857.9399585723877, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.5004177093506, + "relativeCreated": 1850.4316806793213, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171204,8 +171151,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2858105, + "asctime": "2021-01-14 00:26:13,858", + "created": 1610580373.8581364, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171215,15 +171162,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 285.8104705810547, + "msecs": 858.1364154815674, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.5378494262695, + "relativeCreated": 1850.628137588501, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171231,8 +171178,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,285", - "created": 1610361451.2858622, + "asctime": "2021-01-14 00:26:13,858", + "created": 1610580373.8583293, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171242,15 +171189,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 285.8622074127197, + "msecs": 858.3292961120605, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.5895862579346, + "relativeCreated": 1850.8210182189941, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171259,8 +171206,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,286", - "created": 1610361451.286011, + "asctime": "2021-01-14 00:26:13,858", + "created": 1610580373.8585086, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171270,15 +171217,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 286.0109806060791, + "msecs": 858.5085868835449, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1849.738359451294, + "relativeCreated": 1851.0003089904785, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171286,8 +171233,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:31,286", - "created": 1610361451.2863302, + "asctime": "2021-01-14 00:26:13,858", + "created": 1610580373.8588173, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -171297,15 +171244,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 286.3302230834961, + "msecs": 858.8173389434814, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1850.057601928711, + "relativeCreated": 1851.309061050415, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171313,8 +171260,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:31,287", - "created": 1610361451.2873595, + "asctime": "2021-01-14 00:26:13,859", + "created": 1610580373.859949, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -171324,15 +171271,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 287.35947608947754, + "msecs": 859.9491119384766, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1851.0868549346924, + "relativeCreated": 1852.4408340454102, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171340,8 +171287,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,287", - "created": 1610361451.2874842, + "asctime": "2021-01-14 00:26:13,860", + "created": 1610580373.8602545, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171351,15 +171298,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 287.48416900634766, + "msecs": 860.2545261383057, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1851.2115478515625, + "relativeCreated": 1852.7462482452393, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171368,8 +171315,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,287", - "created": 1610361451.2875516, + "asctime": "2021-01-14 00:26:13,860", + "created": 1610580373.8604934, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171379,15 +171326,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 287.5516414642334, + "msecs": 860.4934215545654, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1851.2790203094482, + "relativeCreated": 1852.985143661499, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171395,8 +171342,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:31,287", - "created": 1610361451.2876453, + "asctime": "2021-01-14 00:26:13,861", + "created": 1610580373.8610637, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171406,15 +171353,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 287.6453399658203, + "msecs": 861.0637187957764, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1851.3727188110352, + "relativeCreated": 1853.55544090271, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171425,26 +171372,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,287", - "created": 1610361451.2879438, + "asctime": "2021-01-14 00:26:13,861", + "created": 1610580373.8618658, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 287.94384002685547, + "msecs": 861.865758895874, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1851.6712188720703, + "relativeCreated": 1854.3574810028076, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171452,26 +171399,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:31,288", - "created": 1610361451.2880461, + "asctime": "2021-01-14 00:26:13,862", + "created": 1610580373.8621752, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 288.04612159729004, + "msecs": 862.1752262115479, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1851.7735004425049, + "relativeCreated": 1854.6669483184814, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171482,26 +171429,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,288", - "created": 1610361451.2881851, + "asctime": "2021-01-14 00:26:13,862", + "created": 1610580373.8625667, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 288.18511962890625, + "msecs": 862.5667095184326, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1851.912498474121, + "relativeCreated": 1855.0584316253662, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -171509,8 +171456,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,288", - "created": 1610361451.288711, + "asctime": "2021-01-14 00:26:13,863", + "created": 1610580373.8635614, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -171520,15 +171467,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 288.7110710144043, + "msecs": 863.5613918304443, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1852.4384498596191, + "relativeCreated": 1856.053113937378, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171536,8 +171483,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,296", - "created": 1610361451.2969315, + "asctime": "2021-01-14 00:26:13,871", + "created": 1610580373.8718967, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -171547,15 +171494,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 296.93150520324707, + "msecs": 871.8967437744141, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1860.658884048462, + "relativeCreated": 1864.3884658813477, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171563,8 +171510,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2970161, + "asctime": "2021-01-14 00:26:13,872", + "created": 1610580373.8720489, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171574,15 +171521,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 297.0161437988281, + "msecs": 872.0488548278809, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1860.743522644043, + "relativeCreated": 1864.5405769348145, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171591,8 +171538,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2970672, + "asctime": "2021-01-14 00:26:13,872", + "created": 1610580373.8721402, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171602,15 +171549,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 297.06716537475586, + "msecs": 872.1401691436768, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1860.7945442199707, + "relativeCreated": 1864.6318912506104, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171618,8 +171565,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.297129, + "asctime": "2021-01-14 00:26:13,872", + "created": 1610580373.8722417, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171629,15 +171576,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 297.12891578674316, + "msecs": 872.241735458374, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1860.856294631958, + "relativeCreated": 1864.7334575653076, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171646,8 +171593,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2971725, + "asctime": "2021-01-14 00:26:13,872", + "created": 1610580373.8723392, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171657,15 +171604,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 297.17254638671875, + "msecs": 872.3392486572266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1860.8999252319336, + "relativeCreated": 1864.8309707641602, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171673,8 +171620,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2972438, + "asctime": "2021-01-14 00:26:13,872", + "created": 1610580373.8724573, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171684,15 +171631,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 297.2438335418701, + "msecs": 872.4572658538818, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1860.971212387085, + "relativeCreated": 1864.9489879608154, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171701,8 +171648,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2972858, + "asctime": "2021-01-14 00:26:13,872", + "created": 1610580373.8727245, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171712,15 +171659,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 297.285795211792, + "msecs": 872.7245330810547, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1861.0131740570068, + "relativeCreated": 1865.2162551879883, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171728,8 +171675,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2973628, + "asctime": "2021-01-14 00:26:13,872", + "created": 1610580373.872988, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171739,15 +171686,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 297.3628044128418, + "msecs": 872.9879856109619, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1861.0901832580566, + "relativeCreated": 1865.4797077178955, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171756,8 +171703,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2974193, + "asctime": "2021-01-14 00:26:13,873", + "created": 1610580373.8732884, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171767,15 +171714,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 297.41930961608887, + "msecs": 873.2883930206299, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1861.1466884613037, + "relativeCreated": 1865.7801151275635, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171783,8 +171730,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2974787, + "asctime": "2021-01-14 00:26:13,873", + "created": 1610580373.8734498, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171794,15 +171741,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 297.47867584228516, + "msecs": 873.4498023986816, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1861.2060546875, + "relativeCreated": 1865.9415245056152, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171811,8 +171758,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2975197, + "asctime": "2021-01-14 00:26:13,873", + "created": 1610580373.873511, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171822,15 +171769,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 297.5196838378906, + "msecs": 873.5110759735107, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1861.2470626831055, + "relativeCreated": 1866.0027980804443, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171838,8 +171785,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:31,297", - "created": 1610361451.2975907, + "asctime": "2021-01-14 00:26:13,873", + "created": 1610580373.8737543, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -171849,15 +171796,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 297.5907325744629, + "msecs": 873.7542629241943, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1861.3181114196777, + "relativeCreated": 1866.245985031128, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171865,8 +171812,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:31,298", - "created": 1610361451.2984812, + "asctime": "2021-01-14 00:26:13,874", + "created": 1610580373.8747327, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -171876,15 +171823,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 298.4812259674072, + "msecs": 874.7327327728271, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1862.208604812622, + "relativeCreated": 1867.2244548797607, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171892,8 +171839,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,298", - "created": 1610361451.2985578, + "asctime": "2021-01-14 00:26:13,874", + "created": 1610580373.8749204, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171903,15 +171850,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 298.5577583312988, + "msecs": 874.9203681945801, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1862.2851371765137, + "relativeCreated": 1867.4120903015137, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171920,8 +171867,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,298", - "created": 1610361451.2986088, + "asctime": "2021-01-14 00:26:13,875", + "created": 1610580373.875011, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171931,15 +171878,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 298.60877990722656, + "msecs": 875.0109672546387, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1862.3361587524414, + "relativeCreated": 1867.5026893615723, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171947,8 +171894,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:31,298", - "created": 1610361451.2986841, + "asctime": "2021-01-14 00:26:13,875", + "created": 1610580373.8751824, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -171958,15 +171905,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 298.68412017822266, + "msecs": 875.1823902130127, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1862.4114990234375, + "relativeCreated": 1867.6741123199463, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -171977,26 +171924,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,298", - "created": 1610361451.2988086, + "asctime": "2021-01-14 00:26:13,875", + "created": 1610580373.8756022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 298.8085746765137, + "msecs": 875.6022453308105, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1862.5359535217285, + "relativeCreated": 1868.0939674377441, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -172004,45 +171951,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:31,298", - "created": 1610361451.2988675, + "asctime": "2021-01-14 00:26:13,875", + "created": 1610580373.8757186, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 298.86746406555176, + "msecs": 875.7185935974121, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 1862.5948429107666, + "relativeCreated": 1868.2103157043457, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" } ], - "msecs": 620.2833652496338, + "msecs": 190.89579582214355, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2184.0107440948486, + "relativeCreated": 2183.387517929077, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.32141590118408203 + "time_consumption": 0.31517720222473145 }, { "args": [], - "asctime": "2021-01-11 11:37:31,620", - "created": 1610361451.6207862, + "asctime": "2021-01-14 00:26:14,191", + "created": 1610580374.1913884, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -172053,22 +172000,22 @@ "message": "No secret set", "module": "test_communication", "moduleLogger": [], - "msecs": 620.786190032959, + "msecs": 191.38836860656738, "msg": "No secret set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2184.513568878174, + "relativeCreated": 2183.880090713501, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:31,621", - "created": 1610361451.6210403, + "asctime": "2021-01-14 00:26:14,191", + "created": 1610580374.1916375, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -172079,15 +172026,15 @@ "message": "Performing Authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 621.0403442382812, + "msecs": 191.63751602172852, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2184.767723083496, + "relativeCreated": 2184.129238128662, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -172096,8 +172043,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,621", - "created": 1610361451.6216156, + "asctime": "2021-01-14 00:26:14,192", + "created": 1610580374.1922152, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172114,8 +172061,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,621", - "created": 1610361451.6212971, + "asctime": "2021-01-14 00:26:14,191", + "created": 1610580374.1918924, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172125,15 +172072,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 621.2971210479736, + "msecs": 191.8923854827881, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2185.0244998931885, + "relativeCreated": 2184.3841075897217, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -172142,8 +172089,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,621", - "created": 1610361451.6214666, + "asctime": "2021-01-14 00:26:14,192", + "created": 1610580374.192052, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172153,37 +172100,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 621.4666366577148, + "msecs": 192.05188751220703, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2185.1940155029297, + "relativeCreated": 2184.5436096191406, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 621.6156482696533, + "msecs": 192.2152042388916, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2185.343027114868, + "relativeCreated": 2184.706926345825, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014901161193847656 + "time_consumption": 0.0001633167266845703 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:31,622", - "created": 1610361451.6221104, + "asctime": "2021-01-14 00:26:14,192", + "created": 1610580374.1927152, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172200,8 +172147,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,621", - "created": 1610361451.621838, + "asctime": "2021-01-14 00:26:14,192", + "created": 1610580374.1924393, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172211,15 +172158,15 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 621.8380928039551, + "msecs": 192.43931770324707, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2185.56547164917, + "relativeCreated": 2184.9310398101807, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -172228,8 +172175,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,621", - "created": 1610361451.6219752, + "asctime": "2021-01-14 00:26:14,192", + "created": 1610580374.1925807, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172239,37 +172186,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 621.9751834869385, + "msecs": 192.5806999206543, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2185.7025623321533, + "relativeCreated": 2185.072422027588, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 622.1103668212891, + "msecs": 192.71516799926758, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2185.837745666504, + "relativeCreated": 2185.206890106201, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013518333435058594 + "time_consumption": 0.00013446807861328125 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:31,622", - "created": 1610361451.6226, + "asctime": "2021-01-14 00:26:14,193", + "created": 1610580374.193251, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172286,8 +172233,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,622", - "created": 1610361451.6223323, + "asctime": "2021-01-14 00:26:14,192", + "created": 1610580374.1929374, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172297,15 +172244,15 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 622.3323345184326, + "msecs": 192.93737411499023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2186.0597133636475, + "relativeCreated": 2185.429096221924, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -172314,8 +172261,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,622", - "created": 1610361451.6224678, + "asctime": "2021-01-14 00:26:14,193", + "created": 1610580374.1930742, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172325,34 +172272,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 622.4677562713623, + "msecs": 193.07422637939453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2186.195135116577, + "relativeCreated": 2185.565948486328, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 622.6000785827637, + "msecs": 193.2508945465088, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2186.3274574279785, + "relativeCreated": 2185.7426166534424, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001323223114013672 + "time_consumption": 0.0001766681671142578 }, { "args": [], - "asctime": "2021-01-11 11:37:31,622", - "created": 1610361451.6227891, + "asctime": "2021-01-14 00:26:14,193", + "created": 1610580374.1934485, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -172363,15 +172310,15 @@ "message": "Different secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 622.7891445159912, + "msecs": 193.44854354858398, "msg": "Different secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2186.516523361206, + "relativeCreated": 2185.9402656555176, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -172380,8 +172327,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,623", - "created": 1610361451.6232655, + "asctime": "2021-01-14 00:26:14,193", + "created": 1610580374.1939244, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172398,8 +172345,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,622", - "created": 1610361451.6229923, + "asctime": "2021-01-14 00:26:14,193", + "created": 1610580374.19365, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172409,15 +172356,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 622.9922771453857, + "msecs": 193.6500072479248, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2186.7196559906006, + "relativeCreated": 2186.1417293548584, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -172426,8 +172373,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,623", - "created": 1610361451.623124, + "asctime": "2021-01-14 00:26:14,193", + "created": 1610580374.193783, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172437,37 +172384,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 623.1238842010498, + "msecs": 193.78304481506348, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2186.8512630462646, + "relativeCreated": 2186.274766921997, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 623.2655048370361, + "msecs": 193.9244270324707, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2186.992883682251, + "relativeCreated": 2186.4161491394043, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014162063598632812 + "time_consumption": 0.00014138221740722656 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:31,623", - "created": 1610361451.6237566, + "asctime": "2021-01-14 00:26:14,194", + "created": 1610580374.194413, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172484,8 +172431,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,623", - "created": 1610361451.6234722, + "asctime": "2021-01-14 00:26:14,194", + "created": 1610580374.1941302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172495,15 +172442,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 623.4722137451172, + "msecs": 194.13018226623535, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2187.199592590332, + "relativeCreated": 2186.621904373169, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -172512,8 +172459,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,623", - "created": 1610361451.6236246, + "asctime": "2021-01-14 00:26:14,194", + "created": 1610580374.1942737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -172523,34 +172470,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 623.6245632171631, + "msecs": 194.2737102508545, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2187.351942062378, + "relativeCreated": 2186.765432357788, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 623.7566471099854, + "msecs": 194.4129467010498, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2187.4840259552, + "relativeCreated": 2186.9046688079834, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013208389282226562 + "time_consumption": 0.0001392364501953125 }, { "args": [], - "asctime": "2021-01-11 11:37:31,724", - "created": 1610361451.7249432, + "asctime": "2021-01-14 00:26:14,295", + "created": 1610580374.2955654, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -172569,26 +172516,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,624", - "created": 1610361451.6240745, + "asctime": "2021-01-14 00:26:14,194", + "created": 1610580374.1947281, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 624.0744590759277, + "msecs": 194.72813606262207, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2187.8018379211426, + "relativeCreated": 2187.2198581695557, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -172596,8 +172543,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,625", - "created": 1610361451.625227, + "asctime": "2021-01-14 00:26:14,195", + "created": 1610580374.1958761, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -172607,15 +172554,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 625.2269744873047, + "msecs": 195.8761215209961, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2188.9543533325195, + "relativeCreated": 2188.3678436279297, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172623,8 +172570,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,633", - "created": 1610361451.6336656, + "asctime": "2021-01-14 00:26:14,204", + "created": 1610580374.2043886, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -172634,15 +172581,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 633.6655616760254, + "msecs": 204.38861846923828, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2197.3929405212402, + "relativeCreated": 2196.880340576172, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172650,8 +172597,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,633", - "created": 1610361451.6339803, + "asctime": "2021-01-14 00:26:14,204", + "created": 1610580374.2047486, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172661,15 +172608,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 633.9802742004395, + "msecs": 204.74863052368164, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2197.7076530456543, + "relativeCreated": 2197.2403526306152, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172678,8 +172625,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,634", - "created": 1610361451.6341474, + "asctime": "2021-01-14 00:26:14,204", + "created": 1610580374.2049263, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172689,15 +172636,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 634.1474056243896, + "msecs": 204.9262523651123, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2197.8747844696045, + "relativeCreated": 2197.417974472046, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172705,8 +172652,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,634", - "created": 1610361451.6343484, + "asctime": "2021-01-14 00:26:14,205", + "created": 1610580374.205171, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172716,15 +172663,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 634.3483924865723, + "msecs": 205.1711082458496, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2198.075771331787, + "relativeCreated": 2197.662830352783, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172733,8 +172680,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,634", - "created": 1610361451.63449, + "asctime": "2021-01-14 00:26:14,205", + "created": 1610580374.205321, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172744,15 +172691,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 634.4900131225586, + "msecs": 205.3210735321045, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2198.2173919677734, + "relativeCreated": 2197.812795639038, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172760,8 +172707,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,634", - "created": 1610361451.634693, + "asctime": "2021-01-14 00:26:14,205", + "created": 1610580374.2055235, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172771,15 +172718,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 634.692907333374, + "msecs": 205.52349090576172, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2198.420286178589, + "relativeCreated": 2198.0152130126953, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172788,8 +172735,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,634", - "created": 1610361451.6348388, + "asctime": "2021-01-14 00:26:14,205", + "created": 1610580374.2056744, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172799,15 +172746,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 634.8388195037842, + "msecs": 205.674409866333, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2198.566198348999, + "relativeCreated": 2198.1661319732666, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172815,8 +172762,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,635", - "created": 1610361451.6350229, + "asctime": "2021-01-14 00:26:14,205", + "created": 1610580374.2058606, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172826,15 +172773,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 635.0228786468506, + "msecs": 205.86061477661133, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2198.7502574920654, + "relativeCreated": 2198.352336883545, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172843,8 +172790,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,635", - "created": 1610361451.6351664, + "asctime": "2021-01-14 00:26:14,206", + "created": 1610580374.2060072, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172854,15 +172801,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 635.1664066314697, + "msecs": 206.0072422027588, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2198.8937854766846, + "relativeCreated": 2198.4989643096924, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172870,8 +172817,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,635", - "created": 1610361451.6353397, + "asctime": "2021-01-14 00:26:14,206", + "created": 1610580374.2061834, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172881,15 +172828,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 635.3397369384766, + "msecs": 206.18343353271484, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2199.0671157836914, + "relativeCreated": 2198.6751556396484, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172898,8 +172845,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,635", - "created": 1610361451.6354682, + "asctime": "2021-01-14 00:26:14,206", + "created": 1610580374.206315, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172909,15 +172856,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 635.4682445526123, + "msecs": 206.3150405883789, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2199.195623397827, + "relativeCreated": 2198.8067626953125, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172925,8 +172872,8 @@ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:31,635", - "created": 1610361451.6357007, + "asctime": "2021-01-14 00:26:14,206", + "created": 1610580374.2065535, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -172936,15 +172883,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 635.7007026672363, + "msecs": 206.55345916748047, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2199.428081512451, + "relativeCreated": 2199.045181274414, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172952,8 +172899,8 @@ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:31,636", - "created": 1610361451.6367984, + "asctime": "2021-01-14 00:26:14,207", + "created": 1610580374.2076237, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -172963,15 +172910,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 636.7983818054199, + "msecs": 207.62372016906738, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2200.5257606506348, + "relativeCreated": 2200.115442276001, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -172979,8 +172926,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,637", - "created": 1610361451.6370187, + "asctime": "2021-01-14 00:26:14,207", + "created": 1610580374.2078793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -172990,15 +172937,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 637.0186805725098, + "msecs": 207.87930488586426, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2200.7460594177246, + "relativeCreated": 2200.371026992798, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173007,8 +172954,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,637", - "created": 1610361451.6371303, + "asctime": "2021-01-14 00:26:14,208", + "created": 1610580374.2080479, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173018,15 +172965,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 637.1302604675293, + "msecs": 208.04786682128906, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2200.857639312744, + "relativeCreated": 2200.5395889282227, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173034,8 +172981,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" ], - "asctime": "2021-01-11 11:37:31,637", - "created": 1610361451.6372962, + "asctime": "2021-01-14 00:26:14,208", + "created": 1610580374.2082984, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173045,15 +172992,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", "module": "stp", - "msecs": 637.296199798584, + "msecs": 208.2984447479248, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2201.023578643799, + "relativeCreated": 2200.7901668548584, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173064,26 +173011,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,637", - "created": 1610361451.6375608, + "asctime": "2021-01-14 00:26:14,208", + "created": 1610580374.208677, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 637.5608444213867, + "msecs": 208.6770534515381, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2201.2882232666016, + "relativeCreated": 2201.1687755584717, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173091,26 +173038,26 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:31,637", - "created": 1610361451.637688, + "asctime": "2021-01-14 00:26:14,208", + "created": 1610580374.2088637, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 637.6879215240479, + "msecs": 208.8637351989746, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2201.4153003692627, + "relativeCreated": 2201.355457305908, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173119,37 +173066,37 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'acf35a494fe9f6b9e762f27c8a95beef462627daf468b55262445f7563bfc43e'" + "'fe8dc24eafa66c1497558342bdab3b316547584dbb6ed6a41baf127fe490309c'" ], - "asctime": "2021-01-11 11:37:31,637", - "created": 1610361451.637885, + "asctime": "2021-01-14 00:26:14,209", + "created": 1610580374.209173, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'acf35a494fe9f6b9e762f27c8a95beef462627daf468b55262445f7563bfc43e'\"", + "lineno": 450, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'fe8dc24eafa66c1497558342bdab3b316547584dbb6ed6a41baf127fe490309c'\"", "module": "__init__", - "msecs": 637.8850936889648, + "msecs": 209.17296409606934, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2201.6124725341797, + "relativeCreated": 2201.664686203003, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 63 66 33" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 65 38 64" ], - "asctime": "2021-01-11 11:37:31,638", - "created": 1610361451.6385305, + "asctime": "2021-01-14 00:26:14,210", + "created": 1610580374.2101374, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173157,26 +173104,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 63 66 33", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 65 38 64", "module": "__init__", - "msecs": 638.5304927825928, + "msecs": 210.13736724853516, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2202.2578716278076, + "relativeCreated": 2202.6290893554688, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 63 66 33" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 65 38 64" ], - "asctime": "2021-01-11 11:37:31,646", - "created": 1610361451.6468668, + "asctime": "2021-01-14 00:26:14,218", + "created": 1610580374.218598, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173184,17 +173131,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 63 66 33", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 65 38 64", "module": "__init__", - "msecs": 646.8667984008789, + "msecs": 218.5978889465332, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2210.5941772460938, + "relativeCreated": 2211.089611053467, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173202,8 +173149,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.6470866, + "asctime": "2021-01-14 00:26:14,218", + "created": 1610580374.2189212, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173213,15 +173160,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 647.0866203308105, + "msecs": 218.92118453979492, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2210.8139991760254, + "relativeCreated": 2211.4129066467285, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173230,8 +173177,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.6471982, + "asctime": "2021-01-14 00:26:14,219", + "created": 1610580374.2190907, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173241,15 +173188,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 647.1982002258301, + "msecs": 219.09070014953613, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2210.925579071045, + "relativeCreated": 2211.5824222564697, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173257,8 +173204,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.6473315, + "asctime": "2021-01-14 00:26:14,219", + "created": 1610580374.219272, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173268,15 +173215,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 647.3314762115479, + "msecs": 219.27189826965332, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2211.0588550567627, + "relativeCreated": 2211.763620376587, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173285,8 +173232,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.647428, + "asctime": "2021-01-14 00:26:14,219", + "created": 1610580374.219404, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173296,15 +173243,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 647.428035736084, + "msecs": 219.4039821624756, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2211.155414581299, + "relativeCreated": 2211.895704269409, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173312,8 +173259,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.647563, + "asctime": "2021-01-14 00:26:14,219", + "created": 1610580374.2195854, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173323,15 +173270,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 647.5629806518555, + "msecs": 219.58541870117188, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2211.2903594970703, + "relativeCreated": 2212.0771408081055, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173340,8 +173287,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.6476507, + "asctime": "2021-01-14 00:26:14,219", + "created": 1610580374.2197042, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173351,15 +173298,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 647.6507186889648, + "msecs": 219.70415115356445, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2211.3780975341797, + "relativeCreated": 2212.195873260498, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173367,8 +173314,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.6477714, + "asctime": "2021-01-14 00:26:14,219", + "created": 1610580374.2198646, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173378,15 +173325,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 647.7713584899902, + "msecs": 219.8646068572998, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2211.498737335205, + "relativeCreated": 2212.3563289642334, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173395,8 +173342,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,647", - "created": 1610361451.6479895, + "asctime": "2021-01-14 00:26:14,219", + "created": 1610580374.219982, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173406,15 +173353,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 647.9895114898682, + "msecs": 219.98190879821777, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2211.716890335083, + "relativeCreated": 2212.4736309051514, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173422,8 +173369,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,648", - "created": 1610361451.6481771, + "asctime": "2021-01-14 00:26:14,220", + "created": 1610580374.2201355, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173433,15 +173380,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 648.1771469116211, + "msecs": 220.13545036315918, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2211.904525756836, + "relativeCreated": 2212.627172470093, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173450,8 +173397,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,648", - "created": 1610361451.648334, + "asctime": "2021-01-14 00:26:14,220", + "created": 1610580374.2202597, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173461,24 +173408,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 648.3340263366699, + "msecs": 220.2596664428711, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2212.0614051818848, + "relativeCreated": 2212.7513885498047, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(64): 35 61 34 39 34 66 65 39 66 36 62 39 65 37 36 32 66 32 37 63 38 61 39 35 62 65 65 66 34 36 32 36 32 37 64 61 66 34 36 38 62 35 35 32 36 32 34 34 35 66 37 35 36 33 62 66 63 34 33 65 22 7d 55 31" + "(64): 63 32 34 65 61 66 61 36 36 63 31 34 39 37 35 35 38 33 34 32 62 64 61 62 33 62 33 31 36 35 34 37 35 38 34 64 62 62 36 65 64 36 61 34 31 62 61 66 31 32 37 66 65 34 39 30 33 30 39 63 22 7d 24 7d" ], - "asctime": "2021-01-11 11:37:31,648", - "created": 1610361451.6486602, + "asctime": "2021-01-14 00:26:14,220", + "created": 1610580374.2205594, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173486,26 +173433,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 35 61 34 39 34 66 65 39 66 36 62 39 65 37 36 32 66 32 37 63 38 61 39 35 62 65 65 66 34 36 32 36 32 37 64 61 66 34 36 38 62 35 35 32 36 32 34 34 35 66 37 35 36 33 62 66 63 34 33 65 22 7d 55 31", + "message": "comm-server: TX -> (64): 63 32 34 65 61 66 61 36 36 63 31 34 39 37 35 35 38 33 34 32 62 64 61 62 33 62 33 31 36 35 34 37 35 38 34 64 62 62 36 65 64 36 61 34 31 62 61 66 31 32 37 66 65 34 39 30 33 30 39 63 22 7d 24 7d", "module": "__init__", - "msecs": 648.6601829528809, + "msecs": 220.55935859680176, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2212.3875617980957, + "relativeCreated": 2213.0510807037354, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 35 61 34 39 34 66 65 39 66 36 62 39 65 37 36 32 66 32 37 63 38 61 39 35 62 65 65 66 34 36 32 36 32 37 64 61 66 34 36 38 62 35 35 32 36 32 34 34 35 66 37 35 36 33 62 66 63 34 33 65 22 7d 55 31" + "(64): 63 32 34 65 61 66 61 36 36 63 31 34 39 37 35 35 38 33 34 32 62 64 61 62 33 62 33 31 36 35 34 37 35 38 34 64 62 62 36 65 64 36 61 34 31 62 61 66 31 32 37 66 65 34 39 30 33 30 39 63 22 7d 24 7d" ], - "asctime": "2021-01-11 11:37:31,657", - "created": 1610361451.6571157, + "asctime": "2021-01-14 00:26:14,228", + "created": 1610580374.2289474, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173513,26 +173460,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 35 61 34 39 34 66 65 39 66 36 62 39 65 37 36 32 66 32 37 63 38 61 39 35 62 65 65 66 34 36 32 36 32 37 64 61 66 34 36 38 62 35 35 32 36 32 34 34 35 66 37 35 36 33 62 66 63 34 33 65 22 7d 55 31", + "message": "comm-client: RX <- (64): 63 32 34 65 61 66 61 36 36 63 31 34 39 37 35 35 38 33 34 32 62 64 61 62 33 62 33 31 36 35 34 37 35 38 34 64 62 62 36 65 64 36 61 34 31 62 61 66 31 32 37 66 65 34 39 30 33 30 39 63 22 7d 24 7d", "module": "__init__", - "msecs": 657.1156978607178, + "msecs": 228.94740104675293, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2220.8430767059326, + "relativeCreated": 2221.4391231536865, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(4): d3 88 3a 3e" + "(4): 17 7c 3a 3e" ], - "asctime": "2021-01-11 11:37:31,657", - "created": 1610361451.6577425, + "asctime": "2021-01-14 00:26:14,229", + "created": 1610580374.2295601, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173540,26 +173487,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): d3 88 3a 3e", + "message": "comm-server: TX -> (4): 17 7c 3a 3e", "module": "__init__", - "msecs": 657.7425003051758, + "msecs": 229.56013679504395, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2221.4698791503906, + "relativeCreated": 2222.0518589019775, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(4): d3 88 3a 3e" + "(4): 17 7c 3a 3e" ], - "asctime": "2021-01-11 11:37:31,658", - "created": 1610361451.6585402, + "asctime": "2021-01-14 00:26:14,230", + "created": 1610580374.2303824, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173567,17 +173514,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): d3 88 3a 3e", + "message": "comm-client: RX <- (4): 17 7c 3a 3e", "module": "__init__", - "msecs": 658.5402488708496, + "msecs": 230.38244247436523, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2222.2676277160645, + "relativeCreated": 2222.874164581299, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173585,8 +173532,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,658", - "created": 1610361451.658721, + "asctime": "2021-01-14 00:26:14,230", + "created": 1610580374.2306025, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173596,15 +173543,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 658.7209701538086, + "msecs": 230.60250282287598, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2222.4483489990234, + "relativeCreated": 2223.0942249298096, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173613,8 +173560,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,658", - "created": 1610361451.65887, + "asctime": "2021-01-14 00:26:14,230", + "created": 1610580374.230755, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173624,24 +173571,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 658.8699817657471, + "msecs": 230.75509071350098, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2222.597360610962, + "relativeCreated": 2223.2468128204346, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "STP:", - "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 61 63 66 33 35 61 34 39 34 66 65 39 66 36 62 39 65 37 36 32 66 32 37 63 38 61 39 35 62 65 65 66 34 36 32 36 32 37 64 61 66 34 36 38 62 35 35 32 36 32 34 34 35 66 37 35 36 33 62 66 63 34 33 65 22 7d 55 31 d3 88" + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 65 38 64 63 32 34 65 61 66 61 36 36 63 31 34 39 37 35 35 38 33 34 32 62 64 61 62 33 62 33 31 36 35 34 37 35 38 34 64 62 62 36 65 64 36 61 34 31 62 61 66 31 32 37 66 65 34 39 30 33 30 39 63 22 7d 24 7d 17 7c" ], - "asctime": "2021-01-11 11:37:31,659", - "created": 1610361451.6591992, + "asctime": "2021-01-14 00:26:14,231", + "created": 1610580374.231064, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173649,17 +173596,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 61 63 66 33 35 61 34 39 34 66 65 39 66 36 62 39 65 37 36 32 66 32 37 63 38 61 39 35 62 65 65 66 34 36 32 36 32 37 64 61 66 34 36 38 62 35 35 32 36 32 34 34 35 66 37 35 36 33 62 66 63 34 33 65 22 7d 55 31 d3 88", + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 65 38 64 63 32 34 65 61 66 61 36 36 63 31 34 39 37 35 35 38 33 34 32 62 64 61 62 33 62 33 31 36 35 34 37 35 38 34 64 62 62 36 65 64 36 61 34 31 62 61 66 31 32 37 66 65 34 39 30 33 30 39 63 22 7d 24 7d 17 7c", "module": "stp", - "msecs": 659.1992378234863, + "msecs": 231.0640811920166, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2222.926616668701, + "relativeCreated": 2223.55580329895, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173668,28 +173615,28 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "'acf35a494fe9f6b9e762f27c8a95beef462627daf468b55262445f7563bfc43e'" + "'fe8dc24eafa66c1497558342bdab3b316547584dbb6ed6a41baf127fe490309c'" ], - "asctime": "2021-01-11 11:37:31,659", - "created": 1610361451.6596925, + "asctime": "2021-01-14 00:26:14,231", + "created": 1610580374.2314622, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'acf35a494fe9f6b9e762f27c8a95beef462627daf468b55262445f7563bfc43e'\"", + "lineno": 450, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'fe8dc24eafa66c1497558342bdab3b316547584dbb6ed6a41baf127fe490309c'\"", "module": "__init__", - "msecs": 659.6925258636475, + "msecs": 231.4622402191162, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2223.4199047088623, + "relativeCreated": 2223.95396232605, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173697,26 +173644,26 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:31,659", - "created": 1610361451.6598928, + "asctime": "2021-01-14 00:26:14,231", + "created": 1610580374.2316396, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 659.8927974700928, + "msecs": 231.63962364196777, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2223.6201763153076, + "relativeCreated": 2224.1313457489014, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -173725,37 +173672,37 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'fb685ca63f1acf14831879e1c8a03bc8c2a031bef2816d9bf6d5816ed4b1e8ac171f807d923a211fa31d49318b543020974a0935e375e138a7fd30dc728f8238'" + "'7d5542f88dc166eda258a1dafbe347bea05768e3941f3d7b51c1736201f1ffafd0a895b8b3ffeed611c58db32fdc44b65bb3b1b3416c320c56dd68287ba71b79'" ], - "asctime": "2021-01-11 11:37:31,660", - "created": 1610361451.6601946, + "asctime": "2021-01-14 00:26:14,231", + "created": 1610580374.2319071, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'fb685ca63f1acf14831879e1c8a03bc8c2a031bef2816d9bf6d5816ed4b1e8ac171f807d923a211fa31d49318b543020974a0935e375e138a7fd30dc728f8238'\"", + "lineno": 450, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'7d5542f88dc166eda258a1dafbe347bea05768e3941f3d7b51c1736201f1ffafd0a895b8b3ffeed611c58db32fdc44b65bb3b1b3416c320c56dd68287ba71b79'\"", "module": "__init__", - "msecs": 660.1946353912354, + "msecs": 231.90712928771973, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2223.92201423645, + "relativeCreated": 2224.3988513946533, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 62 36 38" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 35 35" ], - "asctime": "2021-01-11 11:37:31,661", - "created": 1610361451.6613348, + "asctime": "2021-01-14 00:26:14,232", + "created": 1610580374.2328832, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173763,26 +173710,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 62 36 38", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 35 35", "module": "__init__", - "msecs": 661.334753036499, + "msecs": 232.88321495056152, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2225.062131881714, + "relativeCreated": 2225.374937057495, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 62 36 38" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 35 35" ], - "asctime": "2021-01-11 11:37:31,669", - "created": 1610361451.6697588, + "asctime": "2021-01-14 00:26:14,241", + "created": 1610580374.2412872, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -173790,17 +173737,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 62 36 38", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 64 35 35", "module": "__init__", - "msecs": 669.7587966918945, + "msecs": 241.2872314453125, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2233.4861755371094, + "relativeCreated": 2233.778953552246, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173808,8 +173755,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,670", - "created": 1610361451.670044, + "asctime": "2021-01-14 00:26:14,241", + "created": 1610580374.2415204, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173819,15 +173766,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 670.0439453125, + "msecs": 241.52040481567383, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2233.771324157715, + "relativeCreated": 2234.0121269226074, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173836,8 +173783,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,670", - "created": 1610361451.6702075, + "asctime": "2021-01-14 00:26:14,241", + "created": 1610580374.2416463, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173847,15 +173794,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 670.2075004577637, + "msecs": 241.64628982543945, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2233.9348793029785, + "relativeCreated": 2234.138011932373, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173863,8 +173810,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,670", - "created": 1610361451.6704097, + "asctime": "2021-01-14 00:26:14,241", + "created": 1610580374.241798, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173874,15 +173821,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 670.4096794128418, + "msecs": 241.79792404174805, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2234.1370582580566, + "relativeCreated": 2234.2896461486816, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173891,8 +173838,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,670", - "created": 1610361451.67055, + "asctime": "2021-01-14 00:26:14,241", + "created": 1610580374.241903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173902,15 +173849,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 670.5501079559326, + "msecs": 241.90306663513184, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2234.2774868011475, + "relativeCreated": 2234.3947887420654, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173918,8 +173865,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,670", - "created": 1610361451.6707504, + "asctime": "2021-01-14 00:26:14,242", + "created": 1610580374.2420504, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173929,15 +173876,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 670.7503795623779, + "msecs": 242.0504093170166, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2234.477758407593, + "relativeCreated": 2234.54213142395, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173946,8 +173893,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,670", - "created": 1610361451.6708817, + "asctime": "2021-01-14 00:26:14,242", + "created": 1610580374.2421484, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173957,15 +173904,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 670.8817481994629, + "msecs": 242.14839935302734, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2234.6091270446777, + "relativeCreated": 2234.640121459961, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -173973,8 +173920,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,671", - "created": 1610361451.6710618, + "asctime": "2021-01-14 00:26:14,242", + "created": 1610580374.2422814, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -173984,15 +173931,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 671.0617542266846, + "msecs": 242.28143692016602, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2234.7891330718994, + "relativeCreated": 2234.7731590270996, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174001,8 +173948,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,671", - "created": 1610361451.6711957, + "asctime": "2021-01-14 00:26:14,242", + "created": 1610580374.2423782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174012,15 +173959,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 671.1957454681396, + "msecs": 242.37823486328125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2234.9231243133545, + "relativeCreated": 2234.869956970215, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174028,8 +173975,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,671", - "created": 1610361451.6713698, + "asctime": "2021-01-14 00:26:14,242", + "created": 1610580374.2425241, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174039,15 +173986,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 671.3697910308838, + "msecs": 242.5241470336914, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2235.0971698760986, + "relativeCreated": 2235.015869140625, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174056,8 +174003,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,671", - "created": 1610361451.6715002, + "asctime": "2021-01-14 00:26:14,242", + "created": 1610580374.242621, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174067,24 +174014,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 671.5002059936523, + "msecs": 242.62094497680664, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2235.227584838867, + "relativeCreated": 2235.1126670837402, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 35 63 61 36 33 66 31 61 63 66 31 34 38 33 31 38 37 39 65 31 63 38 61 30 33 62 63 38 63 32 61 30 33 31 62 65 66 32 38 31 36 64 39 62 66 36 64 35 38 31 36 65 64 34 62 31 65 38 61 63 31 37 31 66" + "(64): 34 32 66 38 38 64 63 31 36 36 65 64 61 32 35 38 61 31 64 61 66 62 65 33 34 37 62 65 61 30 35 37 36 38 65 33 39 34 31 66 33 64 37 62 35 31 63 31 37 33 36 32 30 31 66 31 66 66 61 66 64 30 61 38" ], - "asctime": "2021-01-11 11:37:31,671", - "created": 1610361451.6718676, + "asctime": "2021-01-14 00:26:14,242", + "created": 1610580374.242877, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174092,26 +174039,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 35 63 61 36 33 66 31 61 63 66 31 34 38 33 31 38 37 39 65 31 63 38 61 30 33 62 63 38 63 32 61 30 33 31 62 65 66 32 38 31 36 64 39 62 66 36 64 35 38 31 36 65 64 34 62 31 65 38 61 63 31 37 31 66", + "message": "comm-client: TX -> (64): 34 32 66 38 38 64 63 31 36 36 65 64 61 32 35 38 61 31 64 61 66 62 65 33 34 37 62 65 61 30 35 37 36 38 65 33 39 34 31 66 33 64 37 62 35 31 63 31 37 33 36 32 30 31 66 31 66 66 61 66 64 30 61 38", "module": "__init__", - "msecs": 671.8676090240479, + "msecs": 242.87700653076172, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2235.5949878692627, + "relativeCreated": 2235.3687286376953, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 35 63 61 36 33 66 31 61 63 66 31 34 38 33 31 38 37 39 65 31 63 38 61 30 33 62 63 38 63 32 61 30 33 31 62 65 66 32 38 31 36 64 39 62 66 36 64 35 38 31 36 65 64 34 62 31 65 38 61 63 31 37 31 66" + "(64): 34 32 66 38 38 64 63 31 36 36 65 64 61 32 35 38 61 31 64 61 66 62 65 33 34 37 62 65 61 30 35 37 36 38 65 33 39 34 31 66 33 64 37 62 35 31 63 31 37 33 36 32 30 31 66 31 66 66 61 66 64 30 61 38" ], - "asctime": "2021-01-11 11:37:31,680", - "created": 1610361451.6802442, + "asctime": "2021-01-14 00:26:14,251", + "created": 1610580374.2511215, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174119,26 +174066,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 35 63 61 36 33 66 31 61 63 66 31 34 38 33 31 38 37 39 65 31 63 38 61 30 33 62 63 38 63 32 61 30 33 31 62 65 66 32 38 31 36 64 39 62 66 36 64 35 38 31 36 65 64 34 62 31 65 38 61 63 31 37 31 66", + "message": "comm-server: RX <- (64): 34 32 66 38 38 64 63 31 36 36 65 64 61 32 35 38 61 31 64 61 66 62 65 33 34 37 62 65 61 30 35 37 36 38 65 33 39 34 31 66 33 64 37 62 35 31 63 31 37 33 36 32 30 31 66 31 66 66 61 66 64 30 61 38", "module": "__init__", - "msecs": 680.2442073822021, + "msecs": 251.12152099609375, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2243.971586227417, + "relativeCreated": 2243.6132431030273, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 38 30 37 64 39 32 33 61 32 31 31 66 61 33 31 64 34 39 33 31 38 62 35 34 33 30 32 30 39 37 34 61 30 39 33 35 65 33 37 35 65 31 33 38 61 37 66 64 33 30 64 63 37 32 38 66 38 32 33 38 22 7d 04 a4" + "(64): 39 35 62 38 62 33 66 66 65 65 64 36 31 31 63 35 38 64 62 33 32 66 64 63 34 34 62 36 35 62 62 33 62 31 62 33 34 31 36 63 33 32 30 63 35 36 64 64 36 38 32 38 37 62 61 37 31 62 37 39 22 7d 98 01" ], - "asctime": "2021-01-11 11:37:31,680", - "created": 1610361451.6808069, + "asctime": "2021-01-14 00:26:14,251", + "created": 1610580374.2516963, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174146,26 +174093,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 38 30 37 64 39 32 33 61 32 31 31 66 61 33 31 64 34 39 33 31 38 62 35 34 33 30 32 30 39 37 34 61 30 39 33 35 65 33 37 35 65 31 33 38 61 37 66 64 33 30 64 63 37 32 38 66 38 32 33 38 22 7d 04 a4", + "message": "comm-client: TX -> (64): 39 35 62 38 62 33 66 66 65 65 64 36 31 31 63 35 38 64 62 33 32 66 64 63 34 34 62 36 35 62 62 33 62 31 62 33 34 31 36 63 33 32 30 63 35 36 64 64 36 38 32 38 37 62 61 37 31 62 37 39 22 7d 98 01", "module": "__init__", - "msecs": 680.8068752288818, + "msecs": 251.69634819030762, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2244.5342540740967, + "relativeCreated": 2244.188070297241, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 38 30 37 64 39 32 33 61 32 31 31 66 61 33 31 64 34 39 33 31 38 62 35 34 33 30 32 30 39 37 34 61 30 39 33 35 65 33 37 35 65 31 33 38 61 37 66 64 33 30 64 63 37 32 38 66 38 32 33 38 22 7d 04 a4" + "(64): 39 35 62 38 62 33 66 66 65 65 64 36 31 31 63 35 38 64 62 33 32 66 64 63 34 34 62 36 35 62 62 33 62 31 62 33 34 31 36 63 33 32 30 63 35 36 64 64 36 38 32 38 37 62 61 37 31 62 37 39 22 7d 98 01" ], - "asctime": "2021-01-11 11:37:31,689", - "created": 1610361451.6890666, + "asctime": "2021-01-14 00:26:14,260", + "created": 1610580374.260149, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174173,26 +174120,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 38 30 37 64 39 32 33 61 32 31 31 66 61 33 31 64 34 39 33 31 38 62 35 34 33 30 32 30 39 37 34 61 30 39 33 35 65 33 37 35 65 31 33 38 61 37 66 64 33 30 64 63 37 32 38 66 38 32 33 38 22 7d 04 a4", + "message": "comm-server: RX <- (64): 39 35 62 38 62 33 66 66 65 65 64 36 31 31 63 35 38 64 62 33 32 66 64 63 34 34 62 36 35 62 62 33 62 31 62 33 34 31 36 63 33 32 30 63 35 36 64 64 36 38 32 38 37 62 61 37 31 62 37 39 22 7d 98 01", "module": "__init__", - "msecs": 689.0666484832764, + "msecs": 260.1490020751953, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2252.794027328491, + "relativeCreated": 2252.640724182129, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(4): 7c 4e 3a 3e" + "(4): 66 00 3a 3e" ], - "asctime": "2021-01-11 11:37:31,689", - "created": 1610361451.689542, + "asctime": "2021-01-14 00:26:14,260", + "created": 1610580374.2608552, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174200,26 +174147,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 7c 4e 3a 3e", + "message": "comm-client: TX -> (4): 66 00 3a 3e", "module": "__init__", - "msecs": 689.5420551300049, + "msecs": 260.85519790649414, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2253.2694339752197, + "relativeCreated": 2253.3469200134277, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(4): 7c 4e 3a 3e" + "(4): 66 00 3a 3e" ], - "asctime": "2021-01-11 11:37:31,690", - "created": 1610361451.6903093, + "asctime": "2021-01-14 00:26:14,261", + "created": 1610580374.2616558, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174227,17 +174174,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 7c 4e 3a 3e", + "message": "comm-server: RX <- (4): 66 00 3a 3e", "module": "__init__", - "msecs": 690.3092861175537, + "msecs": 261.6558074951172, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2254.0366649627686, + "relativeCreated": 2254.147529602051, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174245,8 +174192,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,690", - "created": 1610361451.6904857, + "asctime": "2021-01-14 00:26:14,261", + "created": 1610580374.261843, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174256,15 +174203,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 690.4857158660889, + "msecs": 261.8429660797119, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2254.2130947113037, + "relativeCreated": 2254.3346881866455, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174273,8 +174220,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,690", - "created": 1610361451.6906066, + "asctime": "2021-01-14 00:26:14,261", + "created": 1610580374.2619936, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174284,24 +174231,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 690.6065940856934, + "msecs": 261.9936466217041, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2254.333972930908, + "relativeCreated": 2254.4853687286377, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 62 36 38 35 63 61 36 33 66 31 61 63 66 31 34 38 33 31 38 37 39 65 31 63 38 61 30 33 62 63 38 63 32 61 30 33 31 62 65 66 32 38 31 36 64 39 62 66 36 64 35 38 31 36 65 64 34 62 31 65 38 61 63 31 37 31 66 38 30 37 64 39 32 33 61 32 31 31 66 61 33 31 64 34 39 33 31 38 62 35 34 33 30 32 30 39 37 34 61 30 39 33 35 65 33 37 35 65 31 33 38 61 37 66 64 33 30 64 63 37 32 38 66 38 32 33 38 22 7d 04 a4 7c 4e" + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 37 64 35 35 34 32 66 38 38 64 63 31 36 36 65 64 61 32 35 38 61 31 64 61 66 62 65 33 34 37 62 65 61 30 35 37 36 38 65 33 39 34 31 66 33 64 37 62 35 31 63 31 37 33 36 32 30 31 66 31 66 66 61 66 64 30 61 38 39 35 62 38 62 33 66 66 65 65 64 36 31 31 63 35 38 64 62 33 32 66 64 63 34 34 62 36 35 62 62 33 62 31 62 33 34 31 36 63 33 32 30 63 35 36 64 64 36 38 32 38 37 62 61 37 31 62 37 39 22 7d 98 01 66 00" ], - "asctime": "2021-01-11 11:37:31,690", - "created": 1610361451.6909502, + "asctime": "2021-01-14 00:26:14,262", + "created": 1610580374.262432, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174309,17 +174256,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 62 36 38 35 63 61 36 33 66 31 61 63 66 31 34 38 33 31 38 37 39 65 31 63 38 61 30 33 62 63 38 63 32 61 30 33 31 62 65 66 32 38 31 36 64 39 62 66 36 64 35 38 31 36 65 64 34 62 31 65 38 61 63 31 37 31 66 38 30 37 64 39 32 33 61 32 31 31 66 61 33 31 64 34 39 33 31 38 62 35 34 33 30 32 30 39 37 34 61 30 39 33 35 65 33 37 35 65 31 33 38 61 37 66 64 33 30 64 63 37 32 38 66 38 32 33 38 22 7d 04 a4 7c 4e", + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 37 64 35 35 34 32 66 38 38 64 63 31 36 36 65 64 61 32 35 38 61 31 64 61 66 62 65 33 34 37 62 65 61 30 35 37 36 38 65 33 39 34 31 66 33 64 37 62 35 31 63 31 37 33 36 32 30 31 66 31 66 66 61 66 64 30 61 38 39 35 62 38 62 33 66 66 65 65 64 36 31 31 63 35 38 64 62 33 32 66 64 63 34 34 62 36 35 62 62 33 62 31 62 33 34 31 36 63 33 32 30 63 35 36 64 64 36 38 32 38 37 62 61 37 31 62 37 39 22 7d 98 01 66 00", "module": "stp", - "msecs": 690.9501552581787, + "msecs": 262.4320983886719, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2254.6775341033936, + "relativeCreated": 2254.9238204956055, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174328,28 +174275,28 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "'fb685ca63f1acf14831879e1c8a03bc8c2a031bef2816d9bf6d5816ed4b1e8ac171f807d923a211fa31d49318b543020974a0935e375e138a7fd30dc728f8238'" + "'7d5542f88dc166eda258a1dafbe347bea05768e3941f3d7b51c1736201f1ffafd0a895b8b3ffeed611c58db32fdc44b65bb3b1b3416c320c56dd68287ba71b79'" ], - "asctime": "2021-01-11 11:37:31,691", - "created": 1610361451.6912465, + "asctime": "2021-01-14 00:26:14,262", + "created": 1610580374.2628183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'fb685ca63f1acf14831879e1c8a03bc8c2a031bef2816d9bf6d5816ed4b1e8ac171f807d923a211fa31d49318b543020974a0935e375e138a7fd30dc728f8238'\"", + "lineno": 450, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'7d5542f88dc166eda258a1dafbe347bea05768e3941f3d7b51c1736201f1ffafd0a895b8b3ffeed611c58db32fdc44b65bb3b1b3416c320c56dd68287ba71b79'\"", "module": "__init__", - "msecs": 691.246509552002, + "msecs": 262.8183364868164, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2254.973888397217, + "relativeCreated": 2255.31005859375, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174357,26 +174304,26 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:31,691", - "created": 1610361451.691394, + "asctime": "2021-01-14 00:26:14,263", + "created": 1610580374.2630105, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 691.3940906524658, + "msecs": 263.01050186157227, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2255.1214694976807, + "relativeCreated": 2255.502223968506, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174387,26 +174334,26 @@ "status: okay", "False" ], - "asctime": "2021-01-11 11:37:31,691", - "created": 1610361451.691619, + "asctime": "2021-01-14 00:26:14,263", + "created": 1610580374.263335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"False\"", "module": "__init__", - "msecs": 691.6189193725586, + "msecs": 263.3349895477295, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2255.3462982177734, + "relativeCreated": 2255.826711654663, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -174414,8 +174361,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65" ], - "asctime": "2021-01-11 11:37:31,692", - "created": 1610361451.6921978, + "asctime": "2021-01-14 00:26:14,264", + "created": 1610580374.2641807, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174425,15 +174372,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65", "module": "__init__", - "msecs": 692.1977996826172, + "msecs": 264.18066024780273, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2255.925178527832, + "relativeCreated": 2256.6723823547363, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174441,8 +174388,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65" ], - "asctime": "2021-01-11 11:37:31,700", - "created": 1610361451.7005546, + "asctime": "2021-01-14 00:26:14,272", + "created": 1610580374.2727132, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174452,15 +174399,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65", "module": "__init__", - "msecs": 700.554609298706, + "msecs": 272.71318435668945, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2264.281988143921, + "relativeCreated": 2265.204906463623, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174468,8 +174415,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,700", - "created": 1610361451.7007995, + "asctime": "2021-01-14 00:26:14,273", + "created": 1610580374.2730055, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174479,15 +174426,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 700.7994651794434, + "msecs": 273.00548553466797, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2264.526844024658, + "relativeCreated": 2265.4972076416016, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174496,8 +174443,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,700", - "created": 1610361451.700922, + "asctime": "2021-01-14 00:26:14,273", + "created": 1610580374.2732124, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174507,15 +174454,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 700.9220123291016, + "msecs": 273.2124328613281, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2264.6493911743164, + "relativeCreated": 2265.7041549682617, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174523,8 +174470,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.7010665, + "asctime": "2021-01-14 00:26:14,273", + "created": 1610580374.2734995, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174534,15 +174481,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 701.0664939880371, + "msecs": 273.4994888305664, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2264.793872833252, + "relativeCreated": 2265.9912109375, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174551,8 +174498,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.7011673, + "asctime": "2021-01-14 00:26:14,273", + "created": 1610580374.2736468, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174562,15 +174509,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 701.1673450469971, + "msecs": 273.6468315124512, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2264.894723892212, + "relativeCreated": 2266.1385536193848, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174578,8 +174525,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.7013366, + "asctime": "2021-01-14 00:26:14,273", + "created": 1610580374.2738547, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174589,15 +174536,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 701.3366222381592, + "msecs": 273.85473251342773, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2265.064001083374, + "relativeCreated": 2266.3464546203613, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174606,8 +174553,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.7014384, + "asctime": "2021-01-14 00:26:14,274", + "created": 1610580374.2740147, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174617,15 +174564,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 701.4384269714355, + "msecs": 274.0147113800049, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2265.1658058166504, + "relativeCreated": 2266.5064334869385, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174633,8 +174580,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.701572, + "asctime": "2021-01-14 00:26:14,274", + "created": 1610580374.274201, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174644,15 +174591,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 701.5719413757324, + "msecs": 274.2009162902832, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2265.2993202209473, + "relativeCreated": 2266.692638397217, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174661,8 +174608,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.7016664, + "asctime": "2021-01-14 00:26:14,274", + "created": 1610580374.2743335, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174672,15 +174619,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 701.6663551330566, + "msecs": 274.3334770202637, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2265.3937339782715, + "relativeCreated": 2266.8251991271973, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174688,8 +174635,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.7017922, + "asctime": "2021-01-14 00:26:14,274", + "created": 1610580374.2745063, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174699,15 +174646,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 701.7922401428223, + "msecs": 274.5063304901123, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2265.519618988037, + "relativeCreated": 2266.998052597046, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174716,8 +174663,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,701", - "created": 1610361451.701895, + "asctime": "2021-01-14 00:26:14,274", + "created": 1610580374.2746494, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174727,15 +174674,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 701.894998550415, + "msecs": 274.64938163757324, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2265.62237739563, + "relativeCreated": 2267.141103744507, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174743,8 +174690,8 @@ "comm-server:", "(7): 7d ea 0a 5c b4 3a 3e" ], - "asctime": "2021-01-11 11:37:31,702", - "created": 1610361451.70207, + "asctime": "2021-01-14 00:26:14,274", + "created": 1610580374.2748985, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174754,15 +174701,15 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d ea 0a 5c b4 3a 3e", "module": "__init__", - "msecs": 702.0699977874756, + "msecs": 274.8985290527344, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2265.7973766326904, + "relativeCreated": 2267.390251159668, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174770,8 +174717,8 @@ "comm-client:", "(7): 7d ea 0a 5c b4 3a 3e" ], - "asctime": "2021-01-11 11:37:31,703", - "created": 1610361451.7032526, + "asctime": "2021-01-14 00:26:14,276", + "created": 1610580374.2760997, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -174781,15 +174728,15 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d ea 0a 5c b4 3a 3e", "module": "__init__", - "msecs": 703.2525539398193, + "msecs": 276.09968185424805, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2266.979932785034, + "relativeCreated": 2268.5914039611816, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174797,8 +174744,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,703", - "created": 1610361451.703517, + "asctime": "2021-01-14 00:26:14,276", + "created": 1610580374.276339, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174808,15 +174755,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 703.516960144043, + "msecs": 276.339054107666, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2267.244338989258, + "relativeCreated": 2268.8307762145996, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174825,8 +174772,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,703", - "created": 1610361451.7036414, + "asctime": "2021-01-14 00:26:14,276", + "created": 1610580374.2764802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174836,15 +174783,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 703.641414642334, + "msecs": 276.48019790649414, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2267.368793487549, + "relativeCreated": 2268.9719200134277, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174852,8 +174799,8 @@ "STP:", "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4" ], - "asctime": "2021-01-11 11:37:31,703", - "created": 1610361451.7038302, + "asctime": "2021-01-14 00:26:14,276", + "created": 1610580374.2766972, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -174863,15 +174810,15 @@ "lineno": 148, "message": "STP: message identified - (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4", "module": "stp", - "msecs": 703.8302421569824, + "msecs": 276.69715881347656, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2267.5576210021973, + "relativeCreated": 2269.18888092041, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174882,26 +174829,26 @@ "status: okay", "False" ], - "asctime": "2021-01-11 11:37:31,704", - "created": 1610361451.704168, + "asctime": "2021-01-14 00:26:14,277", + "created": 1610580374.2771845, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", "module": "__init__", - "msecs": 704.1680812835693, + "msecs": 277.18448638916016, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2267.895460128784, + "relativeCreated": 2269.6762084960938, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -174909,74 +174856,74 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:31,704", - "created": 1610361451.7043917, + "asctime": "2021-01-14 00:26:14,277", + "created": 1610580374.2773614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 704.3917179107666, + "msecs": 277.3613929748535, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2268.1190967559814, + "relativeCreated": 2269.853115081787, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:31,704", - "created": 1610361451.704549, + "asctime": "2021-01-14 00:26:14,277", + "created": 1610580374.2775311, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 363, + "lineno": 375, "message": "prot-client: Got negative authentification feedback", "module": "__init__", - "msecs": 704.5490741729736, + "msecs": 277.5311470031738, "msg": "%s Got negative authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2268.2764530181885, + "relativeCreated": 2270.0228691101074, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" } ], - "msecs": 724.9431610107422, + "msecs": 295.5653667449951, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2288.670539855957, + "relativeCreated": 2288.0570888519287, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.020394086837768555 + "time_consumption": 0.01803421974182129 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:31,725", - "created": 1610361451.7258446, + "asctime": "2021-01-14 00:26:14,295", + "created": 1610580374.2959108, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -174993,8 +174940,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,725", - "created": 1610361451.7255104, + "asctime": "2021-01-14 00:26:14,295", + "created": 1610580374.2957904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175004,15 +174951,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 725.5103588104248, + "msecs": 295.790433883667, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2289.2377376556396, + "relativeCreated": 2288.2821559906006, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -175021,8 +174968,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,725", - "created": 1610361451.7256892, + "asctime": "2021-01-14 00:26:14,295", + "created": 1610580374.2958488, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175032,37 +174979,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 725.689172744751, + "msecs": 295.8488464355469, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2289.416551589966, + "relativeCreated": 2288.3405685424805, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 725.8446216583252, + "msecs": 295.9108352661133, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2289.57200050354, + "relativeCreated": 2288.402557373047, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015544891357421875 + "time_consumption": 6.198883056640625e-05 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:31,726", - "created": 1610361451.7263608, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.2960768, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175079,8 +175026,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,726", - "created": 1610361451.7260814, + "asctime": "2021-01-14 00:26:14,295", + "created": 1610580374.2959888, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175090,15 +175037,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 726.081371307373, + "msecs": 295.9887981414795, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2289.808750152588, + "relativeCreated": 2288.480520248413, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -175107,8 +175054,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,726", - "created": 1610361451.7262247, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.2960339, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175118,37 +175065,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 726.2246608734131, + "msecs": 296.0338592529297, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2289.952039718628, + "relativeCreated": 2288.5255813598633, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 726.3607978820801, + "msecs": 296.07677459716797, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2290.088176727295, + "relativeCreated": 2288.5684967041016, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001361370086669922 + "time_consumption": 4.291534423828125e-05 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:31,726", - "created": 1610361451.7268448, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.2962282, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175165,8 +175112,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,726", - "created": 1610361451.7265756, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.2961442, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175176,15 +175123,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 726.5756130218506, + "msecs": 296.1442470550537, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2290.3029918670654, + "relativeCreated": 2288.6359691619873, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -175193,8 +175140,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:31,726", - "created": 1610361451.7267106, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.296187, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -175204,34 +175151,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 726.7105579376221, + "msecs": 296.1869239807129, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2290.437936782837, + "relativeCreated": 2288.6786460876465, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 726.8447875976562, + "msecs": 296.22817039489746, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2290.572166442871, + "relativeCreated": 2288.719892501831, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001342296600341797 + "time_consumption": 4.124641418457031e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:31,727", - "created": 1610361451.7270653, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.2962942, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -175242,22 +175189,22 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 727.0653247833252, + "msecs": 296.2942123413086, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2290.79270362854, + "relativeCreated": 2288.785934448242, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-11 11:37:31,828", - "created": 1610361451.8282685, + "asctime": "2021-01-14 00:26:14,396", + "created": 1610580374.3969426, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -175276,26 +175223,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,727", - "created": 1610361451.7273781, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.2963998, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 727.3781299591064, + "msecs": 296.3998317718506, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2291.1055088043213, + "relativeCreated": 2288.891553878784, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -175303,8 +175250,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,728", - "created": 1610361451.7284966, + "asctime": "2021-01-14 00:26:14,296", + "created": 1610580374.2968209, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -175314,15 +175261,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 728.4965515136719, + "msecs": 296.82087898254395, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2292.2239303588867, + "relativeCreated": 2289.3126010894775, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175330,8 +175277,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,737", - "created": 1610361451.7370248, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.30502, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -175341,15 +175288,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 737.0247840881348, + "msecs": 305.0200939178467, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2300.7521629333496, + "relativeCreated": 2297.5118160247803, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175357,8 +175304,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,737", - "created": 1610361451.7373352, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.3052723, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175368,15 +175315,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 737.335205078125, + "msecs": 305.27234077453613, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2301.06258392334, + "relativeCreated": 2297.7640628814697, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175385,8 +175332,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,737", - "created": 1610361451.737513, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.3053827, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175396,15 +175343,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 737.5130653381348, + "msecs": 305.38272857666016, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2301.2404441833496, + "relativeCreated": 2297.8744506835938, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175412,8 +175359,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,737", - "created": 1610361451.7377179, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.3055427, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175423,15 +175370,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 737.717866897583, + "msecs": 305.5427074432373, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2301.445245742798, + "relativeCreated": 2298.034429550171, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175440,8 +175387,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,737", - "created": 1610361451.7378614, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.3056257, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175451,15 +175398,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 737.8613948822021, + "msecs": 305.62567710876465, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2301.588773727417, + "relativeCreated": 2298.1173992156982, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175467,8 +175414,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,738", - "created": 1610361451.7380757, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.305737, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175478,15 +175425,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 738.0757331848145, + "msecs": 305.7370185852051, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2301.8031120300293, + "relativeCreated": 2298.2287406921387, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175495,8 +175442,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,738", - "created": 1610361451.7382135, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.3058147, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175506,15 +175453,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 738.2135391235352, + "msecs": 305.8147430419922, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2301.94091796875, + "relativeCreated": 2298.306465148926, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175522,8 +175469,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,738", - "created": 1610361451.7384007, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.3059218, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175533,15 +175480,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 738.4006977081299, + "msecs": 305.9217929840088, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2302.1280765533447, + "relativeCreated": 2298.4135150909424, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175550,8 +175497,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,738", - "created": 1610361451.7385352, + "asctime": "2021-01-14 00:26:14,305", + "created": 1610580374.305995, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175561,15 +175508,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 738.5351657867432, + "msecs": 305.99498748779297, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2302.262544631958, + "relativeCreated": 2298.4867095947266, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175577,8 +175524,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,738", - "created": 1610361451.738711, + "asctime": "2021-01-14 00:26:14,306", + "created": 1610580374.3060884, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175588,15 +175535,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 738.7111186981201, + "msecs": 306.0884475708008, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2302.438497543335, + "relativeCreated": 2298.5801696777344, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175605,8 +175552,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,738", - "created": 1610361451.7388432, + "asctime": "2021-01-14 00:26:14,306", + "created": 1610580374.3061626, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175616,15 +175563,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 738.8432025909424, + "msecs": 306.16259574890137, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2302.570581436157, + "relativeCreated": 2298.654317855835, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175632,8 +175579,8 @@ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:31,739", - "created": 1610361451.7390897, + "asctime": "2021-01-14 00:26:14,306", + "created": 1610580374.3063078, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -175643,15 +175590,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 739.0897274017334, + "msecs": 306.3077926635742, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2302.8171062469482, + "relativeCreated": 2298.799514770508, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175659,8 +175606,8 @@ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:31,740", - "created": 1610361451.7401607, + "asctime": "2021-01-14 00:26:14,307", + "created": 1610580374.307263, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -175670,15 +175617,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 740.1607036590576, + "msecs": 307.2628974914551, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2303.8880825042725, + "relativeCreated": 2299.7546195983887, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175686,8 +175633,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,740", - "created": 1610361451.7404108, + "asctime": "2021-01-14 00:26:14,307", + "created": 1610580374.3074098, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175697,15 +175644,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 740.4108047485352, + "msecs": 307.40976333618164, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2304.13818359375, + "relativeCreated": 2299.9014854431152, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175714,8 +175661,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,740", - "created": 1610361451.7406063, + "asctime": "2021-01-14 00:26:14,307", + "created": 1610580374.307506, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175725,15 +175672,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 740.6063079833984, + "msecs": 307.5060844421387, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2304.3336868286133, + "relativeCreated": 2299.9978065490723, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175741,8 +175688,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" ], - "asctime": "2021-01-11 11:37:31,740", - "created": 1610361451.7409005, + "asctime": "2021-01-14 00:26:14,307", + "created": 1610580374.307647, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175752,15 +175699,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", "module": "stp", - "msecs": 740.9005165100098, + "msecs": 307.6469898223877, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2304.6278953552246, + "relativeCreated": 2300.1387119293213, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175771,26 +175718,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,741", - "created": 1610361451.7412844, + "asctime": "2021-01-14 00:26:14,307", + "created": 1610580374.3078704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 741.2843704223633, + "msecs": 307.87038803100586, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2305.011749267578, + "relativeCreated": 2300.3621101379395, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175798,26 +175745,26 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:31,741", - "created": 1610361451.7414682, + "asctime": "2021-01-14 00:26:14,307", + "created": 1610580374.3079705, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 741.4681911468506, + "msecs": 307.9705238342285, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2305.1955699920654, + "relativeCreated": 2300.462245941162, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -175826,37 +175773,37 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'c00ac72bd6cfab974b3dc04c9ec197a51f289d4c84cb3fa2705ed4b6f4027cfb'" + "'d53003b580d496debd0dd6f930dcc3437112a3ed05bd0b74b498c1ecbedb72b3'" ], - "asctime": "2021-01-11 11:37:31,741", - "created": 1610361451.7417347, + "asctime": "2021-01-14 00:26:14,308", + "created": 1610580374.308124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'c00ac72bd6cfab974b3dc04c9ec197a51f289d4c84cb3fa2705ed4b6f4027cfb'\"", + "lineno": 450, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'d53003b580d496debd0dd6f930dcc3437112a3ed05bd0b74b498c1ecbedb72b3'\"", "module": "__init__", - "msecs": 741.7347431182861, + "msecs": 308.1240653991699, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2305.462121963501, + "relativeCreated": 2300.6157875061035, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 30 30 61" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 35 33 30" ], - "asctime": "2021-01-11 11:37:31,742", - "created": 1610361451.7426953, + "asctime": "2021-01-14 00:26:14,308", + "created": 1610580374.308678, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -175864,26 +175811,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 30 30 61", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 35 33 30", "module": "__init__", - "msecs": 742.6953315734863, + "msecs": 308.67791175842285, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2306.422710418701, + "relativeCreated": 2301.1696338653564, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 30 30 61" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 35 33 30" ], - "asctime": "2021-01-11 11:37:31,751", - "created": 1610361451.751168, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.3170018, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -175891,17 +175838,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 30 30 61", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 35 33 30", "module": "__init__", - "msecs": 751.1680126190186, + "msecs": 317.0018196105957, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2314.8953914642334, + "relativeCreated": 2309.4935417175293, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -175909,8 +175856,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,751", - "created": 1610361451.7514584, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.3171937, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175920,15 +175867,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 751.4584064483643, + "msecs": 317.19374656677246, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2315.185785293579, + "relativeCreated": 2309.685468673706, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -175937,8 +175884,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,751", - "created": 1610361451.7516491, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.3172865, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175948,15 +175895,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 751.6491413116455, + "msecs": 317.28649139404297, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2315.3765201568604, + "relativeCreated": 2309.7782135009766, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -175964,8 +175911,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,751", - "created": 1610361451.7518532, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.317395, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -175975,15 +175922,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 751.8532276153564, + "msecs": 317.3949718475342, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2315.5806064605713, + "relativeCreated": 2309.886693954468, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -175992,8 +175939,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,752", - "created": 1610361451.7520027, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.317476, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176003,15 +175950,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.0027160644531, + "msecs": 317.4760341644287, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2315.730094909668, + "relativeCreated": 2309.9677562713623, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176019,8 +175966,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,752", - "created": 1610361451.75221, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.3175893, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176030,15 +175977,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 752.2099018096924, + "msecs": 317.58928298950195, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2315.937280654907, + "relativeCreated": 2310.0810050964355, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176047,8 +175994,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,752", - "created": 1610361451.752363, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.317681, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176058,15 +176005,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.3629665374756, + "msecs": 317.68107414245605, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2316.0903453826904, + "relativeCreated": 2310.1727962493896, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176074,8 +176021,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,752", - "created": 1610361451.7525468, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.3178394, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176085,15 +176032,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 752.5467872619629, + "msecs": 317.8393840789795, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2316.2741661071777, + "relativeCreated": 2310.331106185913, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176102,8 +176049,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,752", - "created": 1610361451.752689, + "asctime": "2021-01-14 00:26:14,317", + "created": 1610580374.317965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176113,15 +176060,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 752.6888847351074, + "msecs": 317.965030670166, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2316.4162635803223, + "relativeCreated": 2310.4567527770996, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176129,8 +176076,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,752", - "created": 1610361451.7529058, + "asctime": "2021-01-14 00:26:14,318", + "created": 1610580374.3181298, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176140,15 +176087,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 752.9058456420898, + "msecs": 318.1297779083252, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2316.6332244873047, + "relativeCreated": 2310.621500015259, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176157,8 +176104,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,753", - "created": 1610361451.7530408, + "asctime": "2021-01-14 00:26:14,318", + "created": 1610580374.318257, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176168,24 +176115,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 753.0407905578613, + "msecs": 318.25709342956543, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2316.768169403076, + "relativeCreated": 2310.748815536499, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(64): 63 37 32 62 64 36 63 66 61 62 39 37 34 62 33 64 63 30 34 63 39 65 63 31 39 37 61 35 31 66 32 38 39 64 34 63 38 34 63 62 33 66 61 32 37 30 35 65 64 34 62 36 66 34 30 32 37 63 66 62 22 7d 05 90" + "(64): 30 33 62 35 38 30 64 34 39 36 64 65 62 64 30 64 64 36 66 39 33 30 64 63 63 33 34 33 37 31 31 32 61 33 65 64 30 35 62 64 30 62 37 34 62 34 39 38 63 31 65 63 62 65 64 62 37 32 62 33 22 7d 8e 28" ], - "asctime": "2021-01-11 11:37:31,753", - "created": 1610361451.7533817, + "asctime": "2021-01-14 00:26:14,318", + "created": 1610580374.3185735, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176193,26 +176140,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 63 37 32 62 64 36 63 66 61 62 39 37 34 62 33 64 63 30 34 63 39 65 63 31 39 37 61 35 31 66 32 38 39 64 34 63 38 34 63 62 33 66 61 32 37 30 35 65 64 34 62 36 66 34 30 32 37 63 66 62 22 7d 05 90", + "message": "comm-server: TX -> (64): 30 33 62 35 38 30 64 34 39 36 64 65 62 64 30 64 64 36 66 39 33 30 64 63 63 33 34 33 37 31 31 32 61 33 65 64 30 35 62 64 30 62 37 34 62 34 39 38 63 31 65 63 62 65 64 62 37 32 62 33 22 7d 8e 28", "module": "__init__", - "msecs": 753.3817291259766, + "msecs": 318.5734748840332, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2317.1091079711914, + "relativeCreated": 2311.065196990967, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 63 37 32 62 64 36 63 66 61 62 39 37 34 62 33 64 63 30 34 63 39 65 63 31 39 37 61 35 31 66 32 38 39 64 34 63 38 34 63 62 33 66 61 32 37 30 35 65 64 34 62 36 66 34 30 32 37 63 66 62 22 7d 05 90" + "(64): 30 33 62 35 38 30 64 34 39 36 64 65 62 64 30 64 64 36 66 39 33 30 64 63 63 33 34 33 37 31 31 32 61 33 65 64 30 35 62 64 30 62 37 34 62 34 39 38 63 31 65 63 62 65 64 62 37 32 62 33 22 7d 8e 28" ], - "asctime": "2021-01-11 11:37:31,761", - "created": 1610361451.7616978, + "asctime": "2021-01-14 00:26:14,326", + "created": 1610580374.326901, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176220,26 +176167,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 63 37 32 62 64 36 63 66 61 62 39 37 34 62 33 64 63 30 34 63 39 65 63 31 39 37 61 35 31 66 32 38 39 64 34 63 38 34 63 62 33 66 61 32 37 30 35 65 64 34 62 36 66 34 30 32 37 63 66 62 22 7d 05 90", + "message": "comm-client: RX <- (64): 30 33 62 35 38 30 64 34 39 36 64 65 62 64 30 64 64 36 66 39 33 30 64 63 63 33 34 33 37 31 31 32 61 33 65 64 30 35 62 64 30 62 37 34 62 34 39 38 63 31 65 63 62 65 64 62 37 32 62 33 22 7d 8e 28", "module": "__init__", - "msecs": 761.6977691650391, + "msecs": 326.9009590148926, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2325.425148010254, + "relativeCreated": 2319.392681121826, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-server:", - "(4): 84 1b 3a 3e" + "(4): 37 54 3a 3e" ], - "asctime": "2021-01-11 11:37:31,762", - "created": 1610361451.7621734, + "asctime": "2021-01-14 00:26:14,327", + "created": 1610580374.327382, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176247,26 +176194,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): 84 1b 3a 3e", + "message": "comm-server: TX -> (4): 37 54 3a 3e", "module": "__init__", - "msecs": 762.1734142303467, + "msecs": 327.38208770751953, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2325.9007930755615, + "relativeCreated": 2319.873809814453, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(4): 84 1b 3a 3e" + "(4): 37 54 3a 3e" ], - "asctime": "2021-01-11 11:37:31,762", - "created": 1610361451.7629359, + "asctime": "2021-01-14 00:26:14,328", + "created": 1610580374.3281097, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176274,17 +176221,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): 84 1b 3a 3e", + "message": "comm-client: RX <- (4): 37 54 3a 3e", "module": "__init__", - "msecs": 762.9358768463135, + "msecs": 328.1097412109375, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2326.6632556915283, + "relativeCreated": 2320.601463317871, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176292,8 +176239,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,763", - "created": 1610361451.763097, + "asctime": "2021-01-14 00:26:14,328", + "created": 1610580374.3282304, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176303,15 +176250,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 763.0970478057861, + "msecs": 328.2303810119629, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2326.824426651001, + "relativeCreated": 2320.7221031188965, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176320,8 +176267,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,763", - "created": 1610361451.7632077, + "asctime": "2021-01-14 00:26:14,328", + "created": 1610580374.3283284, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176331,24 +176278,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 763.2076740264893, + "msecs": 328.32837104797363, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2326.935052871704, + "relativeCreated": 2320.820093154907, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "STP:", - "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 30 30 61 63 37 32 62 64 36 63 66 61 62 39 37 34 62 33 64 63 30 34 63 39 65 63 31 39 37 61 35 31 66 32 38 39 64 34 63 38 34 63 62 33 66 61 32 37 30 35 65 64 34 62 36 66 34 30 32 37 63 66 62 22 7d 05 90 84 1b" + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 35 33 30 30 33 62 35 38 30 64 34 39 36 64 65 62 64 30 64 64 36 66 39 33 30 64 63 63 33 34 33 37 31 31 32 61 33 65 64 30 35 62 64 30 62 37 34 62 34 39 38 63 31 65 63 62 65 64 62 37 32 62 33 22 7d 8e 28 37 54" ], - "asctime": "2021-01-11 11:37:31,763", - "created": 1610361451.76345, + "asctime": "2021-01-14 00:26:14,328", + "created": 1610580374.32855, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176356,17 +176303,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 30 30 61 63 37 32 62 64 36 63 66 61 62 39 37 34 62 33 64 63 30 34 63 39 65 63 31 39 37 61 35 31 66 32 38 39 64 34 63 38 34 63 62 33 66 61 32 37 30 35 65 64 34 62 36 66 34 30 32 37 63 66 62 22 7d 05 90 84 1b", + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 35 33 30 30 33 62 35 38 30 64 34 39 36 64 65 62 64 30 64 64 36 66 39 33 30 64 63 63 33 34 33 37 31 31 32 61 33 65 64 30 35 62 64 30 62 37 34 62 34 39 38 63 31 65 63 62 65 64 62 37 32 62 33 22 7d 8e 28 37 54", "module": "stp", - "msecs": 763.4499073028564, + "msecs": 328.5501003265381, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2327.1772861480713, + "relativeCreated": 2321.0418224334717, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176375,28 +176322,28 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "'c00ac72bd6cfab974b3dc04c9ec197a51f289d4c84cb3fa2705ed4b6f4027cfb'" + "'d53003b580d496debd0dd6f930dcc3437112a3ed05bd0b74b498c1ecbedb72b3'" ], - "asctime": "2021-01-11 11:37:31,763", - "created": 1610361451.763727, + "asctime": "2021-01-14 00:26:14,328", + "created": 1610580374.3288336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'c00ac72bd6cfab974b3dc04c9ec197a51f289d4c84cb3fa2705ed4b6f4027cfb'\"", + "lineno": 450, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'d53003b580d496debd0dd6f930dcc3437112a3ed05bd0b74b498c1ecbedb72b3'\"", "module": "__init__", - "msecs": 763.7269496917725, + "msecs": 328.83358001708984, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2327.4543285369873, + "relativeCreated": 2321.3253021240234, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176404,26 +176351,26 @@ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-11 11:37:31,763", - "created": 1610361451.7638545, + "asctime": "2021-01-14 00:26:14,328", + "created": 1610580374.3289587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 763.8545036315918, + "msecs": 328.95874977111816, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2327.5818824768066, + "relativeCreated": 2321.4504718780518, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -176432,37 +176379,37 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'f13cd145997ddbe09e495d393584b50b990d369f32d6907d35724e6282a7cd35fe2e1116604e3c03163562e006fb760ee52b91fc6d1ce1273ba0b039b6265acd'" + "'f67e465ccb6d5037bd908737a3bc6c95278fe13a26088182f87f65bdb3db8c3e8fd6781e762c7ccd31d95c5cbaab8bfa9e35f754ad6ff958b8bfa50f1c712b48'" ], - "asctime": "2021-01-11 11:37:31,764", - "created": 1610361451.7640357, + "asctime": "2021-01-14 00:26:14,329", + "created": 1610580374.3291738, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'f13cd145997ddbe09e495d393584b50b990d369f32d6907d35724e6282a7cd35fe2e1116604e3c03163562e006fb760ee52b91fc6d1ce1273ba0b039b6265acd'\"", + "lineno": 450, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'f67e465ccb6d5037bd908737a3bc6c95278fe13a26088182f87f65bdb3db8c3e8fd6781e762c7ccd31d95c5cbaab8bfa9e35f754ad6ff958b8bfa50f1c712b48'\"", "module": "__init__", - "msecs": 764.035701751709, + "msecs": 329.1738033294678, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2327.763080596924, + "relativeCreated": 2321.6655254364014, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 31 33 63" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 36 37 65" ], - "asctime": "2021-01-11 11:37:31,764", - "created": 1610361451.7647903, + "asctime": "2021-01-14 00:26:14,330", + "created": 1610580374.3300505, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176470,26 +176417,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 31 33 63", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 36 37 65", "module": "__init__", - "msecs": 764.7902965545654, + "msecs": 330.0504684448242, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2328.5176753997803, + "relativeCreated": 2322.542190551758, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 31 33 63" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 36 37 65" ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.7730157, + "asctime": "2021-01-14 00:26:14,338", + "created": 1610580374.3383842, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176497,17 +176444,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 31 33 63", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 36 37 65", "module": "__init__", - "msecs": 773.0157375335693, + "msecs": 338.38415145874023, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2336.743116378784, + "relativeCreated": 2330.875873565674, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176515,8 +176462,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.7732182, + "asctime": "2021-01-14 00:26:14,338", + "created": 1610580374.3386579, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176526,15 +176473,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 773.2181549072266, + "msecs": 338.6578559875488, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2336.9455337524414, + "relativeCreated": 2331.1495780944824, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176543,8 +176490,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.77333, + "asctime": "2021-01-14 00:26:14,338", + "created": 1610580374.3387947, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176554,15 +176501,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 773.3299732208252, + "msecs": 338.7947082519531, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.05735206604, + "relativeCreated": 2331.2864303588867, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176570,8 +176517,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.7734673, + "asctime": "2021-01-14 00:26:14,338", + "created": 1610580374.338962, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176581,15 +176528,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 773.4673023223877, + "msecs": 338.9620780944824, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.1946811676025, + "relativeCreated": 2331.453800201416, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176598,8 +176545,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.7735603, + "asctime": "2021-01-14 00:26:14,339", + "created": 1610580374.3390853, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176609,15 +176556,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 773.5602855682373, + "msecs": 339.08534049987793, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.287664413452, + "relativeCreated": 2331.5770626068115, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176625,8 +176572,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.773694, + "asctime": "2021-01-14 00:26:14,339", + "created": 1610580374.3392508, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176636,15 +176583,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 773.6940383911133, + "msecs": 339.2508029937744, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.421417236328, + "relativeCreated": 2331.742525100708, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176653,8 +176600,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.7737832, + "asctime": "2021-01-14 00:26:14,339", + "created": 1610580374.339361, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176664,15 +176611,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 773.7832069396973, + "msecs": 339.36095237731934, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.510585784912, + "relativeCreated": 2331.852674484253, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176680,8 +176627,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.7739036, + "asctime": "2021-01-14 00:26:14,339", + "created": 1610580374.3395092, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176691,15 +176638,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 773.9036083221436, + "msecs": 339.5092487335205, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.6309871673584, + "relativeCreated": 2332.000970840454, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176708,8 +176655,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,773", - "created": 1610361451.7739894, + "asctime": "2021-01-14 00:26:14,339", + "created": 1610580374.3396173, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176719,15 +176666,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 773.9894390106201, + "msecs": 339.6172523498535, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.716817855835, + "relativeCreated": 2332.108974456787, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176735,8 +176682,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,774", - "created": 1610361451.77412, + "asctime": "2021-01-14 00:26:14,339", + "created": 1610580374.3397586, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176746,15 +176693,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 774.1200923919678, + "msecs": 339.75863456726074, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.8474712371826, + "relativeCreated": 2332.2503566741943, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176763,8 +176710,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,774", - "created": 1610361451.7742085, + "asctime": "2021-01-14 00:26:14,339", + "created": 1610580374.339865, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176774,24 +176721,24 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 774.2085456848145, + "msecs": 339.86496925354004, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2337.9359245300293, + "relativeCreated": 2332.3566913604736, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 64 31 34 35 39 39 37 64 64 62 65 30 39 65 34 39 35 64 33 39 33 35 38 34 62 35 30 62 39 39 30 64 33 36 39 66 33 32 64 36 39 30 37 64 33 35 37 32 34 65 36 32 38 32 61 37 63 64 33 35 66 65 32 65" + "(64): 34 36 35 63 63 62 36 64 35 30 33 37 62 64 39 30 38 37 33 37 61 33 62 63 36 63 39 35 32 37 38 66 65 31 33 61 32 36 30 38 38 31 38 32 66 38 37 66 36 35 62 64 62 33 64 62 38 63 33 65 38 66 64 36" ], - "asctime": "2021-01-11 11:37:31,774", - "created": 1610361451.7744384, + "asctime": "2021-01-14 00:26:14,340", + "created": 1610580374.3401508, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176799,26 +176746,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 64 31 34 35 39 39 37 64 64 62 65 30 39 65 34 39 35 64 33 39 33 35 38 34 62 35 30 62 39 39 30 64 33 36 39 66 33 32 64 36 39 30 37 64 33 35 37 32 34 65 36 32 38 32 61 37 63 64 33 35 66 65 32 65", + "message": "comm-client: TX -> (64): 34 36 35 63 63 62 36 64 35 30 33 37 62 64 39 30 38 37 33 37 61 33 62 63 36 63 39 35 32 37 38 66 65 31 33 61 32 36 30 38 38 31 38 32 66 38 37 66 36 35 62 64 62 33 64 62 38 63 33 65 38 66 64 36", "module": "__init__", - "msecs": 774.4383811950684, + "msecs": 340.1508331298828, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2338.165760040283, + "relativeCreated": 2332.6425552368164, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 64 31 34 35 39 39 37 64 64 62 65 30 39 65 34 39 35 64 33 39 33 35 38 34 62 35 30 62 39 39 30 64 33 36 39 66 33 32 64 36 39 30 37 64 33 35 37 32 34 65 36 32 38 32 61 37 63 64 33 35 66 65 32 65" + "(64): 34 36 35 63 63 62 36 64 35 30 33 37 62 64 39 30 38 37 33 37 61 33 62 63 36 63 39 35 32 37 38 66 65 31 33 61 32 36 30 38 38 31 38 32 66 38 37 66 36 35 62 64 62 33 64 62 38 63 33 65 38 66 64 36" ], - "asctime": "2021-01-11 11:37:31,782", - "created": 1610361451.782759, + "asctime": "2021-01-14 00:26:14,348", + "created": 1610580374.3484356, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176826,26 +176773,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 64 31 34 35 39 39 37 64 64 62 65 30 39 65 34 39 35 64 33 39 33 35 38 34 62 35 30 62 39 39 30 64 33 36 39 66 33 32 64 36 39 30 37 64 33 35 37 32 34 65 36 32 38 32 61 37 63 64 33 35 66 65 32 65", + "message": "comm-server: RX <- (64): 34 36 35 63 63 62 36 64 35 30 33 37 62 64 39 30 38 37 33 37 61 33 62 63 36 63 39 35 32 37 38 66 65 31 33 61 32 36 30 38 38 31 38 32 66 38 37 66 36 35 62 64 62 33 64 62 38 63 33 65 38 66 64 36", "module": "__init__", - "msecs": 782.7589511871338, + "msecs": 348.435640335083, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2346.4863300323486, + "relativeCreated": 2340.9273624420166, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(64): 31 31 31 36 36 30 34 65 33 63 30 33 31 36 33 35 36 32 65 30 30 36 66 62 37 36 30 65 65 35 32 62 39 31 66 63 36 64 31 63 65 31 32 37 33 62 61 30 62 30 33 39 62 36 32 36 35 61 63 64 22 7d 9d d6" + "(64): 37 38 31 65 37 36 32 63 37 63 63 64 33 31 64 39 35 63 35 63 62 61 61 62 38 62 66 61 39 65 33 35 66 37 35 34 61 64 36 66 66 39 35 38 62 38 62 66 61 35 30 66 31 63 37 31 32 62 34 38 22 7d 65 15" ], - "asctime": "2021-01-11 11:37:31,783", - "created": 1610361451.7834754, + "asctime": "2021-01-14 00:26:14,348", + "created": 1610580374.3488762, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176853,26 +176800,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 31 31 31 36 36 30 34 65 33 63 30 33 31 36 33 35 36 32 65 30 30 36 66 62 37 36 30 65 65 35 32 62 39 31 66 63 36 64 31 63 65 31 32 37 33 62 61 30 62 30 33 39 62 36 32 36 35 61 63 64 22 7d 9d d6", + "message": "comm-client: TX -> (64): 37 38 31 65 37 36 32 63 37 63 63 64 33 31 64 39 35 63 35 63 62 61 61 62 38 62 66 61 39 65 33 35 66 37 35 34 61 64 36 66 66 39 35 38 62 38 62 66 61 35 30 66 31 63 37 31 32 62 34 38 22 7d 65 15", "module": "__init__", - "msecs": 783.475399017334, + "msecs": 348.8762378692627, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2347.202777862549, + "relativeCreated": 2341.3679599761963, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(64): 31 31 31 36 36 30 34 65 33 63 30 33 31 36 33 35 36 32 65 30 30 36 66 62 37 36 30 65 65 35 32 62 39 31 66 63 36 64 31 63 65 31 32 37 33 62 61 30 62 30 33 39 62 36 32 36 35 61 63 64 22 7d 9d d6" + "(64): 37 38 31 65 37 36 32 63 37 63 63 64 33 31 64 39 35 63 35 63 62 61 61 62 38 62 66 61 39 65 33 35 66 37 35 34 61 64 36 66 66 39 35 38 62 38 62 66 61 35 30 66 31 63 37 31 32 62 34 38 22 7d 65 15" ], - "asctime": "2021-01-11 11:37:31,791", - "created": 1610361451.791917, + "asctime": "2021-01-14 00:26:14,357", + "created": 1610580374.3572445, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176880,26 +176827,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 31 31 31 36 36 30 34 65 33 63 30 33 31 36 33 35 36 32 65 30 30 36 66 62 37 36 30 65 65 35 32 62 39 31 66 63 36 64 31 63 65 31 32 37 33 62 61 30 62 30 33 39 62 36 32 36 35 61 63 64 22 7d 9d d6", + "message": "comm-server: RX <- (64): 37 38 31 65 37 36 32 63 37 63 63 64 33 31 64 39 35 63 35 63 62 61 61 62 38 62 66 61 39 65 33 35 66 37 35 34 61 64 36 66 66 39 35 38 62 38 62 66 61 35 30 66 31 63 37 31 32 62 34 38 22 7d 65 15", "module": "__init__", - "msecs": 791.917085647583, + "msecs": 357.24449157714844, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2355.644464492798, + "relativeCreated": 2349.736213684082, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-client:", - "(4): ff ed 3a 3e" + "(4): 31 b5 3a 3e" ], - "asctime": "2021-01-11 11:37:31,792", - "created": 1610361451.7925868, + "asctime": "2021-01-14 00:26:14,357", + "created": 1610580374.3578348, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176907,26 +176854,26 @@ "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): ff ed 3a 3e", + "message": "comm-client: TX -> (4): 31 b5 3a 3e", "module": "__init__", - "msecs": 792.5868034362793, + "msecs": 357.8348159790039, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2356.314182281494, + "relativeCreated": 2350.3265380859375, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "comm-server:", - "(4): ff ed 3a 3e" + "(4): 31 b5 3a 3e" ], - "asctime": "2021-01-11 11:37:31,793", - "created": 1610361451.7933857, + "asctime": "2021-01-14 00:26:14,358", + "created": 1610580374.3586307, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -176934,17 +176881,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): ff ed 3a 3e", + "message": "comm-server: RX <- (4): 31 b5 3a 3e", "module": "__init__", - "msecs": 793.3857440948486, + "msecs": 358.6306571960449, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2357.1131229400635, + "relativeCreated": 2351.1223793029785, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176952,8 +176899,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,793", - "created": 1610361451.793572, + "asctime": "2021-01-14 00:26:14,358", + "created": 1610580374.3587966, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176963,15 +176910,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 793.571949005127, + "msecs": 358.7965965270996, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2357.299327850342, + "relativeCreated": 2351.288318634033, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -176980,8 +176927,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,793", - "created": 1610361451.7937183, + "asctime": "2021-01-14 00:26:14,358", + "created": 1610580374.3589325, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -176991,24 +176938,24 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 793.7183380126953, + "msecs": 358.9324951171875, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2357.44571685791, + "relativeCreated": 2351.424217224121, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { "args": [ "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 31 33 63 64 31 34 35 39 39 37 64 64 62 65 30 39 65 34 39 35 64 33 39 33 35 38 34 62 35 30 62 39 39 30 64 33 36 39 66 33 32 64 36 39 30 37 64 33 35 37 32 34 65 36 32 38 32 61 37 63 64 33 35 66 65 32 65 31 31 31 36 36 30 34 65 33 63 30 33 31 36 33 35 36 32 65 30 30 36 66 62 37 36 30 65 65 35 32 62 39 31 66 63 36 64 31 63 65 31 32 37 33 62 61 30 62 30 33 39 62 36 32 36 35 61 63 64 22 7d 9d d6 ff ed" + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 36 37 65 34 36 35 63 63 62 36 64 35 30 33 37 62 64 39 30 38 37 33 37 61 33 62 63 36 63 39 35 32 37 38 66 65 31 33 61 32 36 30 38 38 31 38 32 66 38 37 66 36 35 62 64 62 33 64 62 38 63 33 65 38 66 64 36 37 38 31 65 37 36 32 63 37 63 63 64 33 31 64 39 35 63 35 63 62 61 61 62 38 62 66 61 39 65 33 35 66 37 35 34 61 64 36 66 66 39 35 38 62 38 62 66 61 35 30 66 31 63 37 31 32 62 34 38 22 7d 65 15 31 b5" ], - "asctime": "2021-01-11 11:37:31,794", - "created": 1610361451.7941926, + "asctime": "2021-01-14 00:26:14,359", + "created": 1610580374.359336, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177016,17 +176963,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 31 33 63 64 31 34 35 39 39 37 64 64 62 65 30 39 65 34 39 35 64 33 39 33 35 38 34 62 35 30 62 39 39 30 64 33 36 39 66 33 32 64 36 39 30 37 64 33 35 37 32 34 65 36 32 38 32 61 37 63 64 33 35 66 65 32 65 31 31 31 36 36 30 34 65 33 63 30 33 31 36 33 35 36 32 65 30 30 36 66 62 37 36 30 65 65 35 32 62 39 31 66 63 36 64 31 63 65 31 32 37 33 62 61 30 62 30 33 39 62 36 32 36 35 61 63 64 22 7d 9d d6 ff ed", + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 36 37 65 34 36 35 63 63 62 36 64 35 30 33 37 62 64 39 30 38 37 33 37 61 33 62 63 36 63 39 35 32 37 38 66 65 31 33 61 32 36 30 38 38 31 38 32 66 38 37 66 36 35 62 64 62 33 64 62 38 63 33 65 38 66 64 36 37 38 31 65 37 36 32 63 37 63 63 64 33 31 64 39 35 63 35 63 62 61 61 62 38 62 66 61 39 65 33 35 66 37 35 34 61 64 36 66 66 39 35 38 62 38 62 66 61 35 30 66 31 63 37 31 32 62 34 38 22 7d 65 15 31 b5", "module": "stp", - "msecs": 794.1925525665283, + "msecs": 359.33589935302734, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2357.919931411743, + "relativeCreated": 2351.827621459961, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -177035,28 +176982,28 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "'f13cd145997ddbe09e495d393584b50b990d369f32d6907d35724e6282a7cd35fe2e1116604e3c03163562e006fb760ee52b91fc6d1ce1273ba0b039b6265acd'" + "'f67e465ccb6d5037bd908737a3bc6c95278fe13a26088182f87f65bdb3db8c3e8fd6781e762c7ccd31d95c5cbaab8bfa9e35f754ad6ff958b8bfa50f1c712b48'" ], - "asctime": "2021-01-11 11:37:31,794", - "created": 1610361451.7945771, + "asctime": "2021-01-14 00:26:14,359", + "created": 1610580374.3597114, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'f13cd145997ddbe09e495d393584b50b990d369f32d6907d35724e6282a7cd35fe2e1116604e3c03163562e006fb760ee52b91fc6d1ce1273ba0b039b6265acd'\"", + "lineno": 450, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'f67e465ccb6d5037bd908737a3bc6c95278fe13a26088182f87f65bdb3db8c3e8fd6781e762c7ccd31d95c5cbaab8bfa9e35f754ad6ff958b8bfa50f1c712b48'\"", "module": "__init__", - "msecs": 794.5771217346191, + "msecs": 359.7114086151123, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2358.304500579834, + "relativeCreated": 2352.203130722046, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -177064,26 +177011,26 @@ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-11 11:37:31,794", - "created": 1610361451.7947621, + "asctime": "2021-01-14 00:26:14,359", + "created": 1610580374.3598824, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 794.762134552002, + "msecs": 359.8823547363281, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2358.489513397217, + "relativeCreated": 2352.3740768432617, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -177094,26 +177041,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:31,795", - "created": 1610361451.7950385, + "asctime": "2021-01-14 00:26:14,360", + "created": 1610580374.3601377, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 795.0384616851807, + "msecs": 360.1377010345459, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2358.7658405303955, + "relativeCreated": 2352.6294231414795, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -177121,8 +177068,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:31,795", - "created": 1610361451.7958195, + "asctime": "2021-01-14 00:26:14,360", + "created": 1610580374.3608513, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -177132,15 +177079,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 795.8195209503174, + "msecs": 360.8512878417969, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2359.546899795532, + "relativeCreated": 2353.3430099487305, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177148,8 +177095,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-01-11 11:37:31,804", - "created": 1610361451.8042228, + "asctime": "2021-01-14 00:26:14,369", + "created": 1610580374.369248, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -177159,15 +177106,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 804.222822189331, + "msecs": 369.2479133605957, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2367.950201034546, + "relativeCreated": 2361.7396354675293, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177175,8 +177122,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,804", - "created": 1610361451.804428, + "asctime": "2021-01-14 00:26:14,369", + "created": 1610580374.369463, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177186,15 +177133,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 804.4281005859375, + "msecs": 369.4629669189453, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2368.1554794311523, + "relativeCreated": 2361.954689025879, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177203,8 +177150,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,804", - "created": 1610361451.8045664, + "asctime": "2021-01-14 00:26:14,369", + "created": 1610580374.3695788, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177214,15 +177161,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 804.5663833618164, + "msecs": 369.5788383483887, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2368.2937622070312, + "relativeCreated": 2362.0705604553223, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177230,8 +177177,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,804", - "created": 1610361451.8047054, + "asctime": "2021-01-14 00:26:14,369", + "created": 1610580374.3697312, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177241,15 +177188,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 804.7053813934326, + "msecs": 369.73118782043457, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2368.4327602386475, + "relativeCreated": 2362.222909927368, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177258,8 +177205,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,804", - "created": 1610361451.8048317, + "asctime": "2021-01-14 00:26:14,369", + "created": 1610580374.369829, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177269,15 +177216,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 804.8317432403564, + "msecs": 369.8289394378662, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2368.5591220855713, + "relativeCreated": 2362.3206615448, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177285,8 +177232,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,804", - "created": 1610361451.8049736, + "asctime": "2021-01-14 00:26:14,369", + "created": 1610580374.3699853, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177296,15 +177243,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 804.9736022949219, + "msecs": 369.98534202575684, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2368.7009811401367, + "relativeCreated": 2362.4770641326904, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177313,8 +177260,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,805", - "created": 1610361451.8050802, + "asctime": "2021-01-14 00:26:14,370", + "created": 1610580374.3701255, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177324,15 +177271,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.0801753997803, + "msecs": 370.12553215026855, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2368.807554244995, + "relativeCreated": 2362.617254257202, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177340,8 +177287,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,805", - "created": 1610361451.805212, + "asctime": "2021-01-14 00:26:14,370", + "created": 1610580374.3703156, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177351,15 +177298,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.2120208740234, + "msecs": 370.3155517578125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2368.9393997192383, + "relativeCreated": 2362.807273864746, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177368,8 +177315,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,805", - "created": 1610361451.805304, + "asctime": "2021-01-14 00:26:14,370", + "created": 1610580374.3704073, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177379,15 +177326,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.3040504455566, + "msecs": 370.4073429107666, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2369.0314292907715, + "relativeCreated": 2362.8990650177, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177395,8 +177342,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,805", - "created": 1610361451.8054664, + "asctime": "2021-01-14 00:26:14,370", + "created": 1610580374.3705213, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177406,15 +177353,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.4664134979248, + "msecs": 370.52130699157715, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2369.1937923431396, + "relativeCreated": 2363.0130290985107, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177423,8 +177370,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,805", - "created": 1610361451.8055563, + "asctime": "2021-01-14 00:26:14,370", + "created": 1610580374.370609, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177434,15 +177381,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.5562973022461, + "msecs": 370.6090450286865, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2369.283676147461, + "relativeCreated": 2363.10076713562, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177450,8 +177397,8 @@ "comm-server:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:31,805", - "created": 1610361451.805741, + "asctime": "2021-01-14 00:26:14,370", + "created": 1610580374.3707783, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -177461,15 +177408,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 805.7410717010498, + "msecs": 370.77832221984863, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2369.4684505462646, + "relativeCreated": 2363.270044326782, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177477,8 +177424,8 @@ "comm-client:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-01-11 11:37:31,806", - "created": 1610361451.8067932, + "asctime": "2021-01-14 00:26:14,371", + "created": 1610580374.37175, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -177488,15 +177435,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 806.793212890625, + "msecs": 371.7501163482666, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2370.52059173584, + "relativeCreated": 2364.2418384552, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177504,8 +177451,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,807", - "created": 1610361451.807015, + "asctime": "2021-01-14 00:26:14,371", + "created": 1610580374.3719432, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177515,15 +177462,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 807.0149421691895, + "msecs": 371.94323539733887, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2370.7423210144043, + "relativeCreated": 2364.4349575042725, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177532,8 +177479,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,807", - "created": 1610361451.8071284, + "asctime": "2021-01-14 00:26:14,372", + "created": 1610580374.3720596, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177543,15 +177490,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 807.1284294128418, + "msecs": 372.05958366394043, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2370.8558082580566, + "relativeCreated": 2364.551305770874, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177559,8 +177506,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" ], - "asctime": "2021-01-11 11:37:31,807", - "created": 1610361451.807349, + "asctime": "2021-01-14 00:26:14,372", + "created": 1610580374.3722239, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -177570,15 +177517,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", "module": "stp", - "msecs": 807.3489665985107, + "msecs": 372.2238540649414, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2371.0763454437256, + "relativeCreated": 2364.715576171875, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177589,26 +177536,26 @@ "status: okay", "True" ], - "asctime": "2021-01-11 11:37:31,807", - "created": 1610361451.8076754, + "asctime": "2021-01-14 00:26:14,372", + "created": 1610580374.3725173, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 807.6753616333008, + "msecs": 372.51734733581543, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2371.4027404785156, + "relativeCreated": 2365.009069442749, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { @@ -177616,74 +177563,74 @@ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-01-11 11:37:31,807", - "created": 1610361451.807815, + "asctime": "2021-01-14 00:26:14,372", + "created": 1610580374.3726494, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 807.8150749206543, + "msecs": 372.6494312286377, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2371.542453765869, + "relativeCreated": 2365.1411533355713, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:31,807", - "created": 1610361451.807925, + "asctime": "2021-01-14 00:26:14,372", + "created": 1610580374.3727543, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 360, + "lineno": 372, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 807.9249858856201, + "msecs": 372.7543354034424, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2371.652364730835, + "relativeCreated": 2365.246057510376, "stack_info": null, - "thread": 139977010706176, + "thread": 140582055831296, "threadName": "Thread-6" } ], - "msecs": 828.2685279846191, + "msecs": 396.9426155090332, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2391.995906829834, + "relativeCreated": 2389.434337615967, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.020343542098999023 + "time_consumption": 0.02418828010559082 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:31,829", - "created": 1610361451.8292382, + "asctime": "2021-01-14 00:26:14,397", + "created": 1610580374.397804, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177700,8 +177647,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,828", - "created": 1610361451.8288972, + "asctime": "2021-01-14 00:26:14,397", + "created": 1610580374.3975086, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177711,15 +177658,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): True ()", "module": "test", - "msecs": 828.89723777771, + "msecs": 397.5086212158203, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2392.624616622925, + "relativeCreated": 2390.000343322754, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -177728,8 +177675,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,829", - "created": 1610361451.8290818, + "asctime": "2021-01-14 00:26:14,397", + "created": 1610580374.397674, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177739,37 +177686,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = True ()", "module": "test", - "msecs": 829.0817737579346, + "msecs": 397.6740837097168, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2392.8091526031494, + "relativeCreated": 2390.1658058166504, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 829.2381763458252, + "msecs": 397.80402183532715, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2392.96555519104, + "relativeCreated": 2390.2957439422607, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.000156402587890625 + "time_consumption": 0.00012993812561035156 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:31,829", - "created": 1610361451.8297608, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3982294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177786,8 +177733,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,829", - "created": 1610361451.8294814, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3980026, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177797,15 +177744,15 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 829.4813632965088, + "msecs": 398.00262451171875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2393.2087421417236, + "relativeCreated": 2390.4943466186523, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -177814,8 +177761,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,829", - "created": 1610361451.8296235, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3981185, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177825,37 +177772,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 829.6234607696533, + "msecs": 398.1184959411621, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2393.350839614868, + "relativeCreated": 2390.6102180480957, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 829.7607898712158, + "msecs": 398.22936058044434, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2393.4881687164307, + "relativeCreated": 2390.721082687378, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001373291015625 + "time_consumption": 0.00011086463928222656 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:31,830", - "created": 1610361451.8302417, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3986204, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177872,8 +177819,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,829", - "created": 1610361451.8299751, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3984036, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177883,15 +177830,15 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 829.9751281738281, + "msecs": 398.4036445617676, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2393.702507019043, + "relativeCreated": 2390.895366668701, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -177900,8 +177847,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:31,830", - "created": 1610361451.8301091, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3985136, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -177911,34 +177858,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 830.1091194152832, + "msecs": 398.5135555267334, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2393.836498260498, + "relativeCreated": 2391.005277633667, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 830.2416801452637, + "msecs": 398.6203670501709, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2393.9690589904785, + "relativeCreated": 2391.1120891571045, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013256072998046875 + "time_consumption": 0.0001068115234375 }, { "args": [], - "asctime": "2021-01-11 11:37:31,830", - "created": 1610361451.8307743, + "asctime": "2021-01-14 00:26:14,399", + "created": 1610580374.3990386, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -177953,71 +177900,71 @@ "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:31,830", - "created": 1610361451.8304617, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3987849, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 830.4617404937744, + "msecs": 398.784875869751, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2394.1891193389893, + "relativeCreated": 2391.2765979766846, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:31,830", - "created": 1610361451.830638, + "asctime": "2021-01-14 00:26:14,398", + "created": 1610580374.3989213, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 830.6379318237305, + "msecs": 398.92125129699707, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2394.3653106689453, + "relativeCreated": 2391.4129734039307, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 830.7743072509766, + "msecs": 399.03855323791504, "msg": "Corrupting the authentification mechanism", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2394.5016860961914, + "relativeCreated": 2391.5302753448486, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013637542724609375 + "time_consumption": 0.00011730194091796875 }, { "args": [], - "asctime": "2021-01-11 11:37:32,232", - "created": 1610361452.2329068, + "asctime": "2021-01-14 00:26:14,801", + "created": 1610580374.8017957, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -178036,26 +177983,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,831", - "created": 1610361451.831099, + "asctime": "2021-01-14 00:26:14,399", + "created": 1610580374.3993092, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 831.0990333557129, + "msecs": 399.3091583251953, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2394.8264122009277, + "relativeCreated": 2391.800880432129, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -178063,8 +178010,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,832", - "created": 1610361451.8322268, + "asctime": "2021-01-14 00:26:14,400", + "created": 1610580374.4002101, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178074,15 +178021,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 832.2267532348633, + "msecs": 400.2101421356201, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2395.954132080078, + "relativeCreated": 2392.7018642425537, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178090,8 +178037,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:31,840", - "created": 1610361451.84061, + "asctime": "2021-01-14 00:26:14,408", + "created": 1610580374.4086607, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178101,15 +178048,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 840.6100273132324, + "msecs": 408.6606502532959, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2404.3374061584473, + "relativeCreated": 2401.1523723602295, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178117,8 +178064,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,840", - "created": 1610361451.8408306, + "asctime": "2021-01-14 00:26:14,408", + "created": 1610580374.4088914, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178128,15 +178075,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 840.8305644989014, + "msecs": 408.8914394378662, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2404.557943344116, + "relativeCreated": 2401.3831615448, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178145,8 +178092,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:31,840", - "created": 1610361451.8409307, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.4090388, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178156,15 +178103,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 840.930700302124, + "msecs": 409.038782119751, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2404.658079147339, + "relativeCreated": 2401.5305042266846, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178172,8 +178119,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.8410485, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.4092262, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178183,15 +178130,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 841.0484790802002, + "msecs": 409.2261791229248, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2404.775857925415, + "relativeCreated": 2401.7179012298584, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178200,8 +178147,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.8411396, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.4093394, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178211,15 +178158,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 841.139554977417, + "msecs": 409.33942794799805, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2404.866933822632, + "relativeCreated": 2401.8311500549316, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178227,8 +178174,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.8412578, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.4094894, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178238,15 +178185,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 841.2578105926514, + "msecs": 409.48939323425293, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2404.985189437866, + "relativeCreated": 2401.9811153411865, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178255,8 +178202,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.8413353, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.409591, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178266,15 +178213,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 841.3352966308594, + "msecs": 409.5909595489502, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2405.062675476074, + "relativeCreated": 2402.082681655884, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178282,8 +178229,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.841441, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.409728, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178293,15 +178240,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 841.4409160614014, + "msecs": 409.7280502319336, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2405.168294906616, + "relativeCreated": 2402.219772338867, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178310,8 +178257,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.841524, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.4098556, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178321,15 +178268,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 841.5238857269287, + "msecs": 409.85560417175293, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2405.2512645721436, + "relativeCreated": 2402.3473262786865, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178337,8 +178284,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.8416243, + "asctime": "2021-01-14 00:26:14,409", + "created": 1610580374.4099836, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178348,15 +178295,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 841.6242599487305, + "msecs": 409.98363494873047, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2405.3516387939453, + "relativeCreated": 2402.475357055664, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178365,8 +178312,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.8417006, + "asctime": "2021-01-14 00:26:14,410", + "created": 1610580374.410081, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178376,15 +178323,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 841.700553894043, + "msecs": 410.0809097290039, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2405.427932739258, + "relativeCreated": 2402.5726318359375, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178392,8 +178339,8 @@ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:31,841", - "created": 1610361451.8418398, + "asctime": "2021-01-14 00:26:14,410", + "created": 1610580374.4102654, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178403,15 +178350,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 841.8397903442383, + "msecs": 410.2654457092285, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2405.567169189453, + "relativeCreated": 2402.757167816162, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178419,8 +178366,8 @@ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-01-11 11:37:31,842", - "created": 1610361451.842831, + "asctime": "2021-01-14 00:26:14,411", + "created": 1610580374.41133, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178430,15 +178377,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 842.8308963775635, + "msecs": 411.329984664917, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2406.5582752227783, + "relativeCreated": 2403.8217067718506, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178446,8 +178393,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:31,843", - "created": 1610361451.843024, + "asctime": "2021-01-14 00:26:14,411", + "created": 1610580374.4115813, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178457,15 +178404,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 843.0240154266357, + "msecs": 411.58127784729004, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2406.7513942718506, + "relativeCreated": 2404.0729999542236, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178474,8 +178421,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:31,843", - "created": 1610361451.843122, + "asctime": "2021-01-14 00:26:14,411", + "created": 1610580374.4117084, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178485,15 +178432,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 843.1220054626465, + "msecs": 411.7083549499512, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2406.8493843078613, + "relativeCreated": 2404.2000770568848, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178501,8 +178448,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" ], - "asctime": "2021-01-11 11:37:31,843", - "created": 1610361451.8432684, + "asctime": "2021-01-14 00:26:14,411", + "created": 1610580374.4118936, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -178512,15 +178459,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", "module": "stp", - "msecs": 843.2683944702148, + "msecs": 411.8936061859131, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2406.9957733154297, + "relativeCreated": 2404.3853282928467, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178531,26 +178478,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:31,843", - "created": 1610361451.843509, + "asctime": "2021-01-14 00:26:14,412", + "created": 1610580374.412187, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 843.5089588165283, + "msecs": 412.1870994567871, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2407.236337661743, + "relativeCreated": 2404.6788215637207, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" }, { @@ -178558,48 +178505,48 @@ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-11 11:37:31,843", - "created": 1610361451.8436203, + "asctime": "2021-01-14 00:26:14,412", + "created": 1610580374.412347, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 843.6203002929688, + "msecs": 412.34707832336426, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2407.3476791381836, + "relativeCreated": 2404.838800430298, "stack_info": null, - "thread": 139977360127744, + "thread": 140582064224000, "threadName": "Thread-5" } ], - "msecs": 232.90681838989258, + "msecs": 801.7957210540771, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2796.6341972351074, + "relativeCreated": 2794.2874431610107, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.38928651809692383 + "time_consumption": 0.3894486427307129 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:32,233", - "created": 1610361452.233739, + "asctime": "2021-01-14 00:26:14,804", + "created": 1610580374.8043153, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178616,8 +178563,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,233", - "created": 1610361452.2333858, + "asctime": "2021-01-14 00:26:14,803", + "created": 1610580374.803077, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178627,15 +178574,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 233.38580131530762, + "msecs": 803.076982498169, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2797.1131801605225, + "relativeCreated": 2795.5687046051025, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -178644,8 +178591,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,233", - "created": 1610361452.2335823, + "asctime": "2021-01-14 00:26:14,803", + "created": 1610580374.8037167, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178655,37 +178602,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 233.5822582244873, + "msecs": 803.7166595458984, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2797.309637069702, + "relativeCreated": 2796.208381652832, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 233.73889923095703, + "msecs": 804.3153285980225, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2797.466278076172, + "relativeCreated": 2796.807050704956, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015664100646972656 + "time_consumption": 0.0005986690521240234 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:32,234", - "created": 1610361452.234262, + "asctime": "2021-01-14 00:26:14,806", + "created": 1610580374.8067603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178702,8 +178649,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,233", - "created": 1610361452.2339778, + "asctime": "2021-01-14 00:26:14,805", + "created": 1610580374.805526, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178713,15 +178660,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 233.9777946472168, + "msecs": 805.5260181427002, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2797.7051734924316, + "relativeCreated": 2798.017740249634, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -178730,8 +178677,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,234", - "created": 1610361452.2341235, + "asctime": "2021-01-14 00:26:14,806", + "created": 1610580374.8061914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178741,37 +178688,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 234.12346839904785, + "msecs": 806.1914443969727, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2797.8508472442627, + "relativeCreated": 2798.6831665039062, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 234.26198959350586, + "msecs": 806.760311126709, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2797.9893684387207, + "relativeCreated": 2799.2520332336426, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001385211944580078 + "time_consumption": 0.0005688667297363281 }, { "args": [ "False", "" ], - "asctime": "2021-01-11 11:37:32,234", - "created": 1610361452.2347472, + "asctime": "2021-01-14 00:26:14,808", + "created": 1610580374.8089392, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178788,8 +178735,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,234", - "created": 1610361452.2344766, + "asctime": "2021-01-14 00:26:14,807", + "created": 1610580374.8077757, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178799,15 +178746,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 234.47656631469727, + "msecs": 807.7757358551025, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2798.203945159912, + "relativeCreated": 2800.267457962036, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -178816,8 +178763,8 @@ "False", "" ], - "asctime": "2021-01-11 11:37:32,234", - "created": 1610361452.234612, + "asctime": "2021-01-14 00:26:14,808", + "created": 1610580374.808318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -178827,41 +178774,41 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 234.61198806762695, + "msecs": 808.3178997039795, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2798.339366912842, + "relativeCreated": 2800.809621810913, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 234.74717140197754, + "msecs": 808.9392185211182, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 2798.4745502471924, + "relativeCreated": 2801.4309406280518, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013518333435058594 + "time_consumption": 0.0006213188171386719 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.9681804180145264, - "time_finished": "2021-01-11 11:37:32,234", - "time_start": "2021-01-11 11:37:31,266" + "time_consumption": 0.968611478805542, + "time_finished": "2021-01-14 00:26:14,808", + "time_start": "2021-01-14 00:26:13,840" }, "_k-Q4EE0oEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:41,138", - "created": 1610361461.1381063, + "asctime": "2021-01-14 00:26:23,721", + "created": 1610580383.7218628, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178872,19 +178819,19 @@ "message": "_k-Q4EE0oEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 138.1063461303711, + "msecs": 721.86279296875, "msg": "_k-Q4EE0oEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11701.833724975586, + "relativeCreated": 11714.354515075684, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1468387, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.729639, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -178899,8 +178846,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:41,139", - "created": 1610361461.1391907, + "asctime": "2021-01-14 00:26:23,722", + "created": 1610580383.722867, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178910,23 +178857,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 139.190673828125, + "msecs": 722.8670120239258, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11702.91805267334, + "relativeCreated": 11715.35873413086, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:41,140", - "created": 1610361461.1400516, + "asctime": "2021-01-14 00:26:23,723", + "created": 1610580383.7237296, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178936,23 +178883,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 140.05160331726074, + "msecs": 723.7296104431152, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11703.778982162476, + "relativeCreated": 11716.221332550049, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:41,140", - "created": 1610361461.1402617, + "asctime": "2021-01-14 00:26:23,723", + "created": 1610580383.7239442, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -178962,41 +178909,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 140.26165008544922, + "msecs": 723.9441871643066, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11703.989028930664, + "relativeCreated": 11716.43590927124, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:41,140", - "created": 1610361461.1405866, + "asctime": "2021-01-14 00:26:23,724", + "created": 1610580383.7242768, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 140.58661460876465, + "msecs": 724.2767810821533, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11704.31399345398, + "relativeCreated": 11716.768503189087, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179005,26 +178952,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:41,140", - "created": 1610361461.1408117, + "asctime": "2021-01-14 00:26:23,724", + "created": 1610580383.7244585, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 140.81168174743652, + "msecs": 724.4584560394287, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11704.539060592651, + "relativeCreated": 11716.950178146362, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179032,26 +178979,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:41,141", - "created": 1610361461.1410418, + "asctime": "2021-01-14 00:26:23,724", + "created": 1610580383.7246919, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 141.04175567626953, + "msecs": 724.6918678283691, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11704.769134521484, + "relativeCreated": 11717.183589935303, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179059,26 +179006,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:41,141", - "created": 1610361461.1411984, + "asctime": "2021-01-14 00:26:23,724", + "created": 1610580383.7248528, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 141.19839668273926, + "msecs": 724.8528003692627, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11704.925775527954, + "relativeCreated": 11717.344522476196, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179086,26 +179033,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:41,141", - "created": 1610361461.1413727, + "asctime": "2021-01-14 00:26:23,725", + "created": 1610580383.7250016, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 141.3726806640625, + "msecs": 725.0015735626221, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11705.100059509277, + "relativeCreated": 11717.493295669556, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179113,26 +179060,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:41,141", - "created": 1610361461.1415164, + "asctime": "2021-01-14 00:26:23,725", + "created": 1610580383.7251728, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 141.51644706726074, + "msecs": 725.172758102417, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11705.243825912476, + "relativeCreated": 11717.66448020935, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179142,8 +179089,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:41,141", - "created": 1610361461.1416764, + "asctime": "2021-01-14 00:26:23,725", + "created": 1610580383.725336, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179153,15 +179100,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 141.6764259338379, + "msecs": 725.3360748291016, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11705.403804779053, + "relativeCreated": 11717.827796936035, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179171,8 +179118,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:41,141", - "created": 1610361461.1418374, + "asctime": "2021-01-14 00:26:23,725", + "created": 1610580383.7254996, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179182,15 +179129,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 141.83735847473145, + "msecs": 725.4996299743652, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11705.564737319946, + "relativeCreated": 11717.991352081299, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179200,8 +179147,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:41,141", - "created": 1610361461.1419938, + "asctime": "2021-01-14 00:26:23,725", + "created": 1610580383.7256577, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179211,15 +179158,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 141.99376106262207, + "msecs": 725.6577014923096, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11705.721139907837, + "relativeCreated": 11718.149423599243, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179229,8 +179176,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:41,142", - "created": 1610361461.1421473, + "asctime": "2021-01-14 00:26:23,725", + "created": 1610580383.7258162, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179240,41 +179187,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 142.14730262756348, + "msecs": 725.8162498474121, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11705.874681472778, + "relativeCreated": 11718.307971954346, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:41,142", - "created": 1610361461.142282, + "asctime": "2021-01-14 00:26:23,725", + "created": 1610580383.7259567, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 142.28200912475586, + "msecs": 725.9566783905029, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11706.00938796997, + "relativeCreated": 11718.448400497437, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179283,26 +179230,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:41,142", - "created": 1610361461.1424317, + "asctime": "2021-01-14 00:26:23,726", + "created": 1610580383.7261138, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 142.43173599243164, + "msecs": 726.1137962341309, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11706.159114837646, + "relativeCreated": 11718.605518341064, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179310,26 +179257,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:41,142", - "created": 1610361461.1426256, + "asctime": "2021-01-14 00:26:23,726", + "created": 1610580383.726299, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 142.6255702972412, + "msecs": 726.2990474700928, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11706.352949142456, + "relativeCreated": 11718.790769577026, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179337,26 +179284,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:41,142", - "created": 1610361461.1427794, + "asctime": "2021-01-14 00:26:23,726", + "created": 1610580383.7264476, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 142.77935028076172, + "msecs": 726.447582244873, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11706.506729125977, + "relativeCreated": 11718.939304351807, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179366,8 +179313,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:41,142", - "created": 1610361461.1429284, + "asctime": "2021-01-14 00:26:23,726", + "created": 1610580383.7266202, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179377,15 +179324,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 142.9283618927002, + "msecs": 726.6201972961426, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11706.655740737915, + "relativeCreated": 11719.111919403076, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179395,8 +179342,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:41,143", - "created": 1610361461.1430814, + "asctime": "2021-01-14 00:26:23,726", + "created": 1610580383.7267776, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179406,15 +179353,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 143.0814266204834, + "msecs": 726.7775535583496, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11706.808805465698, + "relativeCreated": 11719.269275665283, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179423,26 +179370,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:41,143", - "created": 1610361461.1432269, + "asctime": "2021-01-14 00:26:23,726", + "created": 1610580383.7269263, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 143.22686195373535, + "msecs": 726.926326751709, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11706.95424079895, + "relativeCreated": 11719.418048858643, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179451,26 +179398,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:41,143", - "created": 1610361461.143405, + "asctime": "2021-01-14 00:26:23,727", + "created": 1610580383.7270663, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 143.40496063232422, + "msecs": 727.0662784576416, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11707.132339477539, + "relativeCreated": 11719.558000564575, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179479,78 +179426,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:41,143", - "created": 1610361461.1436312, + "asctime": "2021-01-14 00:26:23,727", + "created": 1610580383.7272046, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 143.6312198638916, + "msecs": 727.2045612335205, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11707.358598709106, + "relativeCreated": 11719.696283340454, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:41,143", - "created": 1610361461.143791, + "asctime": "2021-01-14 00:26:23,727", + "created": 1610580383.727353, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 143.79096031188965, + "msecs": 727.3530960083008, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11707.518339157104, + "relativeCreated": 11719.844818115234, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:41,144", - "created": 1610361461.1440837, + "asctime": "2021-01-14 00:26:23,727", + "created": 1610580383.7276452, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.08373832702637, + "msecs": 727.6451587677002, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11707.811117172241, + "relativeCreated": 11720.136880874634, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179559,26 +179506,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:41,144", - "created": 1610361461.14424, + "asctime": "2021-01-14 00:26:23,727", + "created": 1610580383.7278042, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 144.2399024963379, + "msecs": 727.8041839599609, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11707.967281341553, + "relativeCreated": 11720.295906066895, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179586,26 +179533,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:41,144", - "created": 1610361461.1444502, + "asctime": "2021-01-14 00:26:23,728", + "created": 1610580383.7280152, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 144.45018768310547, + "msecs": 728.0151844024658, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11708.17756652832, + "relativeCreated": 11720.5069065094, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179613,26 +179560,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:41,144", - "created": 1610361461.1446018, + "asctime": "2021-01-14 00:26:23,728", + "created": 1610580383.7281659, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 144.60182189941406, + "msecs": 728.165864944458, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11708.329200744629, + "relativeCreated": 11720.657587051392, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179640,26 +179587,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:41,144", - "created": 1610361461.144767, + "asctime": "2021-01-14 00:26:23,728", + "created": 1610580383.7283099, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 144.76704597473145, + "msecs": 728.3098697662354, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11708.494424819946, + "relativeCreated": 11720.801591873169, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179667,26 +179614,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:41,144", - "created": 1610361461.1449203, + "asctime": "2021-01-14 00:26:23,728", + "created": 1610580383.7284524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 144.92034912109375, + "msecs": 728.4524440765381, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11708.647727966309, + "relativeCreated": 11720.944166183472, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179696,8 +179643,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:41,145", - "created": 1610361461.14507, + "asctime": "2021-01-14 00:26:23,728", + "created": 1610580383.7286015, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179707,15 +179654,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 145.07007598876953, + "msecs": 728.6014556884766, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11708.797454833984, + "relativeCreated": 11721.09317779541, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179725,8 +179672,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:41,145", - "created": 1610361461.145226, + "asctime": "2021-01-14 00:26:23,728", + "created": 1610580383.728758, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179736,15 +179683,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 145.22600173950195, + "msecs": 728.7580966949463, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11708.953380584717, + "relativeCreated": 11721.24981880188, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179754,8 +179701,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:41,145", - "created": 1610361461.1453776, + "asctime": "2021-01-14 00:26:23,728", + "created": 1610580383.7289124, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179765,15 +179712,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 145.37763595581055, + "msecs": 728.912353515625, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11709.105014801025, + "relativeCreated": 11721.404075622559, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179783,8 +179730,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:41,145", - "created": 1610361461.1455255, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.729064, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179794,41 +179741,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 145.52545547485352, + "msecs": 729.0639877319336, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11709.252834320068, + "relativeCreated": 11721.555709838867, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:41,145", - "created": 1610361461.145658, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7291784, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 145.65801620483398, + "msecs": 729.1784286499023, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11709.385395050049, + "relativeCreated": 11721.670150756836, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179837,26 +179784,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:41,145", - "created": 1610361461.145818, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7292283, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 145.81799507141113, + "msecs": 729.2282581329346, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11709.545373916626, + "relativeCreated": 11721.719980239868, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179864,26 +179811,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:41,145", - "created": 1610361461.1459937, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.729282, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 145.99370956420898, + "msecs": 729.2819023132324, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11709.721088409424, + "relativeCreated": 11721.773624420166, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179891,26 +179838,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1461399, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.729328, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 146.13986015319824, + "msecs": 729.327917098999, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11709.867238998413, + "relativeCreated": 11721.819639205933, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179920,8 +179867,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1462946, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7293735, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179931,15 +179878,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 146.29459381103516, + "msecs": 729.3734550476074, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.02197265625, + "relativeCreated": 11721.865177154541, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179949,8 +179896,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1465874, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7294207, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -179960,15 +179907,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 146.58737182617188, + "msecs": 729.4206619262695, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.314750671387, + "relativeCreated": 11721.912384033203, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -179977,26 +179924,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1466553, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7294703, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 146.65532112121582, + "msecs": 729.4702529907227, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.38269996643, + "relativeCreated": 11721.961975097656, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -180005,26 +179952,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1467066, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7295136, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 146.70658111572266, + "msecs": 729.5136451721191, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.433959960938, + "relativeCreated": 11722.005367279053, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -180033,71 +179980,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1467514, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7295556, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 146.75140380859375, + "msecs": 729.555606842041, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.478782653809, + "relativeCreated": 11722.047328948975, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1467967, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7295988, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 146.79670333862305, + "msecs": 729.5987606048584, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.524082183838, + "relativeCreated": 11722.090482711792, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 146.83866500854492, + "msecs": 729.6390533447266, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.56604385376, + "relativeCreated": 11722.13077545166, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 4.029273986816406e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:41,490", - "created": 1610361461.490647, + "asctime": "2021-01-14 00:26:24,073", + "created": 1610580384.0734346, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -180112,8 +180059,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1469364, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7297351, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180123,23 +180070,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 146.93641662597656, + "msecs": 729.7351360321045, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.663795471191, + "relativeCreated": 11722.226858139038, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:41,146", - "created": 1610361461.1469815, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7297788, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180149,41 +180096,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 146.98147773742676, + "msecs": 729.7787666320801, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.708856582642, + "relativeCreated": 11722.270488739014, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:41,147", - "created": 1610361461.147024, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7298236, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 147.02391624450684, + "msecs": 729.8235893249512, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.751295089722, + "relativeCreated": 11722.315311431885, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -180194,34 +180141,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:41,147", - "created": 1610361461.1471052, + "asctime": "2021-01-14 00:26:23,729", + "created": 1610580383.7299004, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 147.10521697998047, + "msecs": 729.9003601074219, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11710.832595825195, + "relativeCreated": 11722.392082214355, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:41,147", - "created": 1610361461.1472886, + "asctime": "2021-01-14 00:26:23,730", + "created": 1610580383.7300847, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180231,23 +180178,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 147.28856086730957, + "msecs": 730.0846576690674, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11711.015939712524, + "relativeCreated": 11722.576379776001, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:41,147", - "created": 1610361461.1473398, + "asctime": "2021-01-14 00:26:23,730", + "created": 1610580383.730135, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180257,41 +180204,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 147.3398208618164, + "msecs": 730.1349639892578, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11711.067199707031, + "relativeCreated": 11722.626686096191, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:41,147", - "created": 1610361461.1473837, + "asctime": "2021-01-14 00:26:23,730", + "created": 1610580383.730181, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 147.3836898803711, + "msecs": 730.1809787750244, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11711.111068725586, + "relativeCreated": 11722.672700881958, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -180299,8 +180246,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:41,147", - "created": 1610361461.1475341, + "asctime": "2021-01-14 00:26:23,730", + "created": 1610580383.7303314, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180310,15 +180257,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 147.53413200378418, + "msecs": 730.3314208984375, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11711.261510848999, + "relativeCreated": 11722.823143005371, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180326,8 +180273,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:41,155", - "created": 1610361461.1556902, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.7385292, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180337,15 +180284,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 155.69019317626953, + "msecs": 738.5292053222656, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.417572021484, + "relativeCreated": 11731.0209274292, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180353,8 +180300,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,155", - "created": 1610361461.1558068, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.7386458, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180364,15 +180311,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 155.8067798614502, + "msecs": 738.6457920074463, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.534158706665, + "relativeCreated": 11731.13751411438, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180381,8 +180328,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:41,155", - "created": 1610361461.1558578, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.7386985, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180392,15 +180339,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.85780143737793, + "msecs": 738.6984825134277, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.585180282593, + "relativeCreated": 11731.190204620361, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180408,8 +180355,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,155", - "created": 1610361461.155919, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.7387614, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180419,15 +180366,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 155.91907501220703, + "msecs": 738.7614250183105, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.646453857422, + "relativeCreated": 11731.253147125244, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180436,8 +180383,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,155", - "created": 1610361461.1559618, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.7388082, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180447,15 +180394,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.9617519378662, + "msecs": 738.8081550598145, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.689130783081, + "relativeCreated": 11731.299877166748, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180463,8 +180410,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,156", - "created": 1610361461.1560261, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.7388709, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180474,15 +180421,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 156.02612495422363, + "msecs": 738.8708591461182, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.753503799438, + "relativeCreated": 11731.362581253052, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180491,8 +180438,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,156", - "created": 1610361461.1560822, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.7389271, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180502,15 +180449,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 156.0821533203125, + "msecs": 738.9271259307861, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.809532165527, + "relativeCreated": 11731.41884803772, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180518,8 +180465,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,156", - "created": 1610361461.156142, + "asctime": "2021-01-14 00:26:23,738", + "created": 1610580383.738983, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180529,15 +180476,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 156.141996383667, + "msecs": 738.9829158782959, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.869375228882, + "relativeCreated": 11731.47463798523, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180546,8 +180493,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,156", - "created": 1610361461.1561835, + "asctime": "2021-01-14 00:26:23,739", + "created": 1610580383.7390237, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180557,15 +180504,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 156.18348121643066, + "msecs": 739.0236854553223, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.910860061646, + "relativeCreated": 11731.515407562256, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180573,8 +180520,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,156", - "created": 1610361461.156242, + "asctime": "2021-01-14 00:26:23,739", + "created": 1610580383.7390845, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180584,15 +180531,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 156.24189376831055, + "msecs": 739.0844821929932, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11719.969272613525, + "relativeCreated": 11731.576204299927, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180601,8 +180548,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,156", - "created": 1610361461.1562858, + "asctime": "2021-01-14 00:26:23,739", + "created": 1610580383.7391288, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180612,15 +180559,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 156.28576278686523, + "msecs": 739.128828048706, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11720.01314163208, + "relativeCreated": 11731.62055015564, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180628,8 +180575,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,156", - "created": 1610361461.1563666, + "asctime": "2021-01-14 00:26:23,739", + "created": 1610580383.7392147, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180639,15 +180586,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 156.36658668518066, + "msecs": 739.2146587371826, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11720.093965530396, + "relativeCreated": 11731.706380844116, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180655,8 +180602,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.1572468, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.7401626, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180666,15 +180613,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 157.24682807922363, + "msecs": 740.1626110076904, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11720.974206924438, + "relativeCreated": 11732.654333114624, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180682,8 +180629,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.157301, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.7402945, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180693,15 +180640,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 157.3009490966797, + "msecs": 740.2944564819336, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11721.028327941895, + "relativeCreated": 11732.786178588867, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180710,8 +180657,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.1573424, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.7403502, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180721,15 +180668,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 157.34243392944336, + "msecs": 740.3502464294434, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11721.069812774658, + "relativeCreated": 11732.841968536377, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180737,8 +180684,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.157414, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.7404315, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180748,15 +180695,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 157.41395950317383, + "msecs": 740.431547164917, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11721.141338348389, + "relativeCreated": 11732.92326927185, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180767,26 +180714,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.1575415, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.7405663, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 157.54151344299316, + "msecs": 740.5662536621094, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11721.268892288208, + "relativeCreated": 11733.057975769043, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180794,26 +180741,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.1575997, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.7406247, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 157.59968757629395, + "msecs": 740.6246662139893, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11721.327066421509, + "relativeCreated": 11733.116388320923, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180824,26 +180771,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.1576822, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.7407176, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 157.6821804046631, + "msecs": 740.7176494598389, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11721.409559249878, + "relativeCreated": 11733.209371566772, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -180851,8 +180798,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:41,157", - "created": 1610361461.1579335, + "asctime": "2021-01-14 00:26:23,740", + "created": 1610580383.74099, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180862,15 +180809,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 157.93347358703613, + "msecs": 740.9899234771729, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11721.660852432251, + "relativeCreated": 11733.481645584106, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -180878,8 +180825,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1661017, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.749173, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -180889,15 +180836,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 166.10169410705566, + "msecs": 749.1729259490967, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11729.82907295227, + "relativeCreated": 11741.66464805603, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -180905,8 +180852,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1662292, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7493098, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180916,15 +180863,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 166.229248046875, + "msecs": 749.309778213501, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11729.95662689209, + "relativeCreated": 11741.801500320435, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -180933,8 +180880,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.16628, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.749365, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180944,15 +180891,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 166.28003120422363, + "msecs": 749.3650913238525, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.007410049438, + "relativeCreated": 11741.856813430786, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -180960,8 +180907,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1663408, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7494278, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180971,15 +180918,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 166.34082794189453, + "msecs": 749.4277954101562, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.06820678711, + "relativeCreated": 11741.91951751709, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -180988,8 +180935,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.166387, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7494726, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -180999,15 +180946,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 166.38708114624023, + "msecs": 749.4726181030273, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.114459991455, + "relativeCreated": 11741.964340209961, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181015,8 +180962,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1664524, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7495391, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181026,15 +180973,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 166.45240783691406, + "msecs": 749.5391368865967, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.179786682129, + "relativeCreated": 11742.03085899353, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181043,8 +180990,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1664937, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7495813, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181054,15 +181001,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 166.49365425109863, + "msecs": 749.5813369750977, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.221033096313, + "relativeCreated": 11742.073059082031, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181070,8 +181017,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1665487, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.749637, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181081,15 +181028,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 166.5487289428711, + "msecs": 749.6368885040283, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.276107788086, + "relativeCreated": 11742.128610610962, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181098,8 +181045,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1665905, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7496815, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181109,15 +181056,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 166.59045219421387, + "msecs": 749.6814727783203, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.317831039429, + "relativeCreated": 11742.173194885254, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181125,8 +181072,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1666446, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7497349, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181136,15 +181083,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 166.64457321166992, + "msecs": 749.7348785400391, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.371952056885, + "relativeCreated": 11742.226600646973, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181153,8 +181100,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1666875, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.7497783, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181164,15 +181111,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 166.6874885559082, + "msecs": 749.7782707214355, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.414867401123, + "relativeCreated": 11742.26999282837, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181180,8 +181127,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:41,166", - "created": 1610361461.1667697, + "asctime": "2021-01-14 00:26:23,749", + "created": 1610580383.749858, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -181191,15 +181138,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 166.76974296569824, + "msecs": 749.8579025268555, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11730.497121810913, + "relativeCreated": 11742.349624633789, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181207,8 +181154,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:41,167", - "created": 1610361461.1676314, + "asctime": "2021-01-14 00:26:23,750", + "created": 1610580383.7508128, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -181218,15 +181165,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 167.6313877105713, + "msecs": 750.8127689361572, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11731.358766555786, + "relativeCreated": 11743.30449104309, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181234,8 +181181,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,167", - "created": 1610361461.1677063, + "asctime": "2021-01-14 00:26:23,750", + "created": 1610580383.7509568, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181245,15 +181192,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 167.70625114440918, + "msecs": 750.9567737579346, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11731.433629989624, + "relativeCreated": 11743.448495864868, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181262,8 +181209,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:41,167", - "created": 1610361461.1677563, + "asctime": "2021-01-14 00:26:23,751", + "created": 1610580383.7510118, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181273,15 +181220,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 167.7563190460205, + "msecs": 751.011848449707, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11731.483697891235, + "relativeCreated": 11743.50357055664, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181289,8 +181236,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:41,167", - "created": 1610361461.1678302, + "asctime": "2021-01-14 00:26:23,751", + "created": 1610580383.7510946, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181300,15 +181247,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 167.830228805542, + "msecs": 751.0945796966553, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11731.557607650757, + "relativeCreated": 11743.586301803589, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181319,26 +181266,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:41,167", - "created": 1610361461.1679647, + "asctime": "2021-01-14 00:26:23,751", + "created": 1610580383.7512486, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 167.96469688415527, + "msecs": 751.2485980987549, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11731.69207572937, + "relativeCreated": 11743.740320205688, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -181346,45 +181293,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:41,168", - "created": 1610361461.1680233, + "asctime": "2021-01-14 00:26:23,751", + "created": 1610580383.7513127, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 168.02334785461426, + "msecs": 751.3127326965332, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 11731.75072669983, + "relativeCreated": 11743.804454803467, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" } ], - "msecs": 490.6470775604248, + "msecs": 73.43459129333496, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12054.37445640564, + "relativeCreated": 12065.926313400269, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.32262372970581055 + "time_consumption": 0.32212185859680176 }, { "args": [], - "asctime": "2021-01-11 11:37:41,793", - "created": 1610361461.7933521, + "asctime": "2021-01-14 00:26:24,376", + "created": 1610580384.3760204, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -181403,26 +181350,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:41,491", - "created": 1610361461.4912872, + "asctime": "2021-01-14 00:26:24,074", + "created": 1610580384.0740733, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 491.2872314453125, + "msecs": 74.07331466674805, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12055.014610290527, + "relativeCreated": 12066.565036773682, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -181430,8 +181377,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:41,492", - "created": 1610361461.4922106, + "asctime": "2021-01-14 00:26:24,075", + "created": 1610580384.0750415, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -181441,15 +181388,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 492.21062660217285, + "msecs": 75.04153251647949, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12055.938005447388, + "relativeCreated": 12067.533254623413, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181457,8 +181404,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:41,500", - "created": 1610361461.5007155, + "asctime": "2021-01-14 00:26:24,083", + "created": 1610580384.08354, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -181468,15 +181415,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 500.7154941558838, + "msecs": 83.53996276855469, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12064.442873001099, + "relativeCreated": 12076.031684875488, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181484,8 +181431,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,501", - "created": 1610361461.501034, + "asctime": "2021-01-14 00:26:24,083", + "created": 1610580384.083844, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181495,15 +181442,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 501.0340213775635, + "msecs": 83.84394645690918, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12064.761400222778, + "relativeCreated": 12076.335668563843, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181512,8 +181459,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:41,501", - "created": 1610361461.501199, + "asctime": "2021-01-14 00:26:24,084", + "created": 1610580384.0840096, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181523,15 +181470,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 501.19900703430176, + "msecs": 84.00964736938477, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12064.926385879517, + "relativeCreated": 12076.501369476318, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181539,8 +181486,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,501", - "created": 1610361461.5014253, + "asctime": "2021-01-14 00:26:24,084", + "created": 1610580384.0842469, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181550,15 +181497,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 501.42526626586914, + "msecs": 84.24687385559082, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12065.152645111084, + "relativeCreated": 12076.738595962524, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181567,8 +181514,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,501", - "created": 1610361461.5015678, + "asctime": "2021-01-14 00:26:24,084", + "created": 1610580384.0843942, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181578,15 +181525,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 501.5678405761719, + "msecs": 84.39421653747559, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12065.295219421387, + "relativeCreated": 12076.88593864441, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181594,8 +181541,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,501", - "created": 1610361461.501774, + "asctime": "2021-01-14 00:26:24,084", + "created": 1610580384.0846145, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181605,15 +181552,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 501.7740726470947, + "msecs": 84.61451530456543, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12065.50145149231, + "relativeCreated": 12077.106237411499, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181622,8 +181569,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,501", - "created": 1610361461.5019102, + "asctime": "2021-01-14 00:26:24,084", + "created": 1610580384.0847514, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181633,15 +181580,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 501.9102096557617, + "msecs": 84.75136756896973, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12065.637588500977, + "relativeCreated": 12077.243089675903, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181649,8 +181596,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,502", - "created": 1610361461.5020998, + "asctime": "2021-01-14 00:26:24,084", + "created": 1610580384.08495, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181660,15 +181607,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 502.09975242614746, + "msecs": 84.94997024536133, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12065.827131271362, + "relativeCreated": 12077.441692352295, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181677,8 +181624,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,502", - "created": 1610361461.5022326, + "asctime": "2021-01-14 00:26:24,085", + "created": 1610580384.085082, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181688,15 +181635,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 502.23255157470703, + "msecs": 85.0820541381836, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12065.959930419922, + "relativeCreated": 12077.573776245117, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181704,8 +181651,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,502", - "created": 1610361461.5024147, + "asctime": "2021-01-14 00:26:24,085", + "created": 1610580384.085313, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181715,15 +181662,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 502.4147033691406, + "msecs": 85.31308174133301, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12066.142082214355, + "relativeCreated": 12077.804803848267, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181732,8 +181679,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,502", - "created": 1610361461.5025465, + "asctime": "2021-01-14 00:26:24,085", + "created": 1610580384.0854445, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181743,15 +181690,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 502.5465488433838, + "msecs": 85.44445037841797, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12066.273927688599, + "relativeCreated": 12077.936172485352, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181759,8 +181706,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,502", - "created": 1610361461.5028121, + "asctime": "2021-01-14 00:26:24,085", + "created": 1610580384.0857503, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -181770,15 +181717,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 502.81214714050293, + "msecs": 85.75034141540527, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12066.539525985718, + "relativeCreated": 12078.242063522339, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181786,8 +181733,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,507", - "created": 1610361461.5071661, + "asctime": "2021-01-14 00:26:24,090", + "created": 1610580384.0901055, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -181797,15 +181744,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 507.16614723205566, + "msecs": 90.10553359985352, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12070.89352607727, + "relativeCreated": 12082.597255706787, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181813,8 +181760,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,507", - "created": 1610361461.5075414, + "asctime": "2021-01-14 00:26:24,090", + "created": 1610580384.0904646, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181824,15 +181771,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 507.5414180755615, + "msecs": 90.46459197998047, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12071.268796920776, + "relativeCreated": 12082.956314086914, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181841,8 +181788,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:41,507", - "created": 1610361461.5077138, + "asctime": "2021-01-14 00:26:24,090", + "created": 1610580384.0906014, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181852,15 +181799,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 507.71379470825195, + "msecs": 90.60144424438477, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12071.441173553467, + "relativeCreated": 12083.093166351318, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181868,8 +181815,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" ], - "asctime": "2021-01-11 11:37:41,507", - "created": 1610361461.5079856, + "asctime": "2021-01-14 00:26:24,090", + "created": 1610580384.090853, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -181879,15 +181826,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", "module": "stp", - "msecs": 507.98559188842773, + "msecs": 90.85297584533691, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12071.712970733643, + "relativeCreated": 12083.34469795227, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181898,52 +181845,52 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:41,508", - "created": 1610361461.5083268, + "asctime": "2021-01-14 00:26:24,091", + "created": 1610580384.091172, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 508.32676887512207, + "msecs": 91.1719799041748, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12072.054147720337, + "relativeCreated": 12083.663702011108, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:41,508", - "created": 1610361461.508523, + "asctime": "2021-01-14 00:26:24,091", + "created": 1610580384.0913558, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 508.52298736572266, + "msecs": 91.35580062866211, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12072.250366210938, + "relativeCreated": 12083.847522735596, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -181953,48 +181900,48 @@ "18", "34" ], - "asctime": "2021-01-11 11:37:41,792", - "created": 1610361461.792974, + "asctime": "2021-01-14 00:26:24,375", + "created": 1610580384.3756962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 671, + "lineno": 683, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 18; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 792.9739952087402, + "msecs": 375.69618225097656, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12356.701374053955, + "relativeCreated": 12368.18790435791, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 793.3521270751953, + "msecs": 376.0204315185547, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12357.07950592041, + "relativeCreated": 12368.512153625488, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0003781318664550781 + "time_consumption": 0.000324249267578125 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:41,793", - "created": 1610361461.7939997, + "asctime": "2021-01-14 00:26:24,376", + "created": 1610580384.3766887, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -182011,8 +181958,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:41,793", - "created": 1610361461.793691, + "asctime": "2021-01-14 00:26:24,376", + "created": 1610580384.3763785, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -182022,15 +181969,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 793.6909198760986, + "msecs": 376.37853622436523, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12357.418298721313, + "relativeCreated": 12368.870258331299, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -182039,8 +181986,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:41,793", - "created": 1610361461.79385, + "asctime": "2021-01-14 00:26:24,376", + "created": 1610580384.3765397, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -182050,37 +181997,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 793.8499450683594, + "msecs": 376.5397071838379, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12357.577323913574, + "relativeCreated": 12369.031429290771, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 793.9996719360352, + "msecs": 376.68871879577637, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12357.72705078125, + "relativeCreated": 12369.18044090271, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014972686767578125 + "time_consumption": 0.00014901161193847656 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:41,794", - "created": 1610361461.794528, + "asctime": "2021-01-14 00:26:24,377", + "created": 1610580384.3772457, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -182097,8 +182044,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:41,794", - "created": 1610361461.7942245, + "asctime": "2021-01-14 00:26:24,376", + "created": 1610580384.3769116, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -182108,15 +182055,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 794.2245006561279, + "msecs": 376.9116401672363, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12357.951879501343, + "relativeCreated": 12369.40336227417, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -182125,8 +182072,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:41,794", - "created": 1610361461.7943637, + "asctime": "2021-01-14 00:26:24,377", + "created": 1610580384.3770494, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -182136,34 +182083,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 794.3637371063232, + "msecs": 377.04944610595703, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12358.091115951538, + "relativeCreated": 12369.54116821289, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 794.5280075073242, + "msecs": 377.2456645965576, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12358.255386352539, + "relativeCreated": 12369.737386703491, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016427040100097656 + "time_consumption": 0.00019621849060058594 }, { "args": [], - "asctime": "2021-01-11 11:37:41,794", - "created": 1610361461.794917, + "asctime": "2021-01-14 00:26:24,377", + "created": 1610580384.3776424, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -182180,45 +182127,45 @@ "17", "18" ], - "asctime": "2021-01-11 11:37:41,794", - "created": 1610361461.7947822, + "asctime": "2021-01-14 00:26:24,377", + "created": 1610580384.3775036, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=17 and Response=18", "module": "__init__", - "msecs": 794.7821617126465, + "msecs": 377.5036334991455, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12358.509540557861, + "relativeCreated": 12369.99535560608, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 794.917106628418, + "msecs": 377.6423931121826, "msg": "Adding service to server instance for the transmit message", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12358.644485473633, + "relativeCreated": 12370.134115219116, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013494491577148438 + "time_consumption": 0.00013875961303710938 }, { "args": [], - "asctime": "2021-01-11 11:37:41,996", - "created": 1610361461.9968908, + "asctime": "2021-01-14 00:26:24,579", + "created": 1610580384.5795739, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -182237,26 +182184,26 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:41,795", - "created": 1610361461.7952502, + "asctime": "2021-01-14 00:26:24,377", + "created": 1610580384.377954, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 795.2501773834229, + "msecs": 377.95400619506836, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12358.977556228638, + "relativeCreated": 12370.445728302002, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -182264,8 +182211,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:41,796", - "created": 1610361461.7965217, + "asctime": "2021-01-14 00:26:24,379", + "created": 1610580384.3792002, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -182275,15 +182222,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 796.5216636657715, + "msecs": 379.2002201080322, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12360.249042510986, + "relativeCreated": 12371.691942214966, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182291,8 +182238,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-11 11:37:41,805", - "created": 1610361461.8050375, + "asctime": "2021-01-14 00:26:24,387", + "created": 1610580384.387698, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -182302,15 +182249,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 805.0374984741211, + "msecs": 387.6979351043701, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12368.764877319336, + "relativeCreated": 12380.189657211304, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182318,8 +182265,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,805", - "created": 1610361461.8053217, + "asctime": "2021-01-14 00:26:24,388", + "created": 1610580384.3880022, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182329,15 +182276,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 805.3216934204102, + "msecs": 388.0021572113037, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12369.049072265625, + "relativeCreated": 12380.493879318237, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182346,8 +182293,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:41,805", - "created": 1610361461.8054855, + "asctime": "2021-01-14 00:26:24,388", + "created": 1610580384.388168, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182357,15 +182304,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.4854869842529, + "msecs": 388.1680965423584, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12369.212865829468, + "relativeCreated": 12380.659818649292, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182373,8 +182320,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,805", - "created": 1610361461.8056855, + "asctime": "2021-01-14 00:26:24,388", + "created": 1610580384.388373, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182384,15 +182331,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.6855201721191, + "msecs": 388.37289810180664, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12369.412899017334, + "relativeCreated": 12380.86462020874, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182401,8 +182348,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,805", - "created": 1610361461.8058288, + "asctime": "2021-01-14 00:26:24,388", + "created": 1610580384.3885143, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182412,15 +182359,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.8288097381592, + "msecs": 388.51428031921387, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12369.556188583374, + "relativeCreated": 12381.006002426147, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182428,8 +182375,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,806", - "created": 1610361461.8060594, + "asctime": "2021-01-14 00:26:24,388", + "created": 1610580384.3887208, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182439,15 +182386,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 806.0593605041504, + "msecs": 388.7207508087158, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12369.786739349365, + "relativeCreated": 12381.21247291565, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182456,8 +182403,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,806", - "created": 1610361461.8061965, + "asctime": "2021-01-14 00:26:24,388", + "created": 1610580384.3888521, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182467,15 +182414,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 806.1964511871338, + "msecs": 388.8521194458008, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12369.923830032349, + "relativeCreated": 12381.343841552734, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182483,8 +182430,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,806", - "created": 1610361461.8063948, + "asctime": "2021-01-14 00:26:24,389", + "created": 1610580384.3890755, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182494,15 +182441,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 806.3948154449463, + "msecs": 389.07551765441895, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12370.122194290161, + "relativeCreated": 12381.567239761353, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182511,8 +182458,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,806", - "created": 1610361461.8065283, + "asctime": "2021-01-14 00:26:24,389", + "created": 1610580384.3892615, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182522,15 +182469,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 806.5283298492432, + "msecs": 389.26148414611816, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12370.255708694458, + "relativeCreated": 12381.753206253052, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182538,8 +182485,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,806", - "created": 1610361461.8068485, + "asctime": "2021-01-14 00:26:24,389", + "created": 1610580384.3894384, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182549,15 +182496,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 806.8485260009766, + "msecs": 389.4383907318115, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12370.575904846191, + "relativeCreated": 12381.930112838745, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182566,8 +182513,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,807", - "created": 1610361461.8070328, + "asctime": "2021-01-14 00:26:24,389", + "created": 1610580384.3895729, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182577,15 +182524,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 807.0328235626221, + "msecs": 389.5728588104248, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12370.760202407837, + "relativeCreated": 12382.064580917358, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182593,8 +182540,8 @@ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,807", - "created": 1610361461.8073323, + "asctime": "2021-01-14 00:26:24,389", + "created": 1610580384.389976, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -182604,15 +182551,15 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 807.3322772979736, + "msecs": 389.97602462768555, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12371.059656143188, + "relativeCreated": 12382.46774673462, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182620,8 +182567,8 @@ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,811", - "created": 1610361461.811706, + "asctime": "2021-01-14 00:26:24,394", + "created": 1610580384.3943207, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -182631,15 +182578,15 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 811.7060661315918, + "msecs": 394.3207263946533, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12375.433444976807, + "relativeCreated": 12386.812448501587, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182647,8 +182594,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,812", - "created": 1610361461.8120449, + "asctime": "2021-01-14 00:26:24,394", + "created": 1610580384.3946717, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182658,15 +182605,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 812.0448589324951, + "msecs": 394.6716785430908, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12375.77223777771, + "relativeCreated": 12387.163400650024, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182675,8 +182622,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:41,812", - "created": 1610361461.8122249, + "asctime": "2021-01-14 00:26:24,394", + "created": 1610580384.3948283, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182686,15 +182633,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 812.2248649597168, + "msecs": 394.82831954956055, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12375.952243804932, + "relativeCreated": 12387.320041656494, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182702,8 +182649,8 @@ "STP:", "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" ], - "asctime": "2021-01-11 11:37:41,812", - "created": 1610361461.8124824, + "asctime": "2021-01-14 00:26:24,395", + "created": 1610580384.3950582, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182713,15 +182660,15 @@ "lineno": 148, "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", "module": "stp", - "msecs": 812.4823570251465, + "msecs": 395.05815505981445, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12376.209735870361, + "relativeCreated": 12387.549877166748, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182732,52 +182679,52 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-11 11:37:41,812", - "created": 1610361461.8128219, + "asctime": "2021-01-14 00:26:24,395", + "created": 1610580384.3953602, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 812.8218650817871, + "msecs": 395.36023139953613, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12376.549243927002, + "relativeCreated": 12387.85195350647, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:41,812", - "created": 1610361461.812978, + "asctime": "2021-01-14 00:26:24,395", + "created": 1610580384.3955142, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 474, + "lineno": 486, "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 812.9780292510986, + "msecs": 395.51424980163574, "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12376.705408096313, + "relativeCreated": 12388.00597190857, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182788,26 +182735,26 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:41,813", - "created": 1610361461.8131778, + "asctime": "2021-01-14 00:26:24,395", + "created": 1610580384.3957098, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 813.1778240203857, + "msecs": 395.709753036499, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12376.9052028656, + "relativeCreated": 12388.201475143433, "stack_info": null, - "thread": 139976457049856, + "thread": 140581435066112, "threadName": "Thread-15" }, { @@ -182815,8 +182762,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-01-11 11:37:41,814", - "created": 1610361461.81426, + "asctime": "2021-01-14 00:26:24,396", + "created": 1610580384.3963537, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -182826,15 +182773,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", "module": "__init__", - "msecs": 814.2600059509277, + "msecs": 396.35372161865234, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12377.987384796143, + "relativeCreated": 12388.845443725586, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -182842,8 +182789,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-01-11 11:37:41,822", - "created": 1610361461.8226266, + "asctime": "2021-01-14 00:26:24,404", + "created": 1610580384.4047692, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -182853,15 +182800,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", "module": "__init__", - "msecs": 822.6265907287598, + "msecs": 404.7691822052002, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12386.353969573975, + "relativeCreated": 12397.260904312134, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -182869,8 +182816,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,822", - "created": 1610361461.8228643, + "asctime": "2021-01-14 00:26:24,405", + "created": 1610580384.405015, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182880,15 +182827,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 822.864294052124, + "msecs": 405.0149917602539, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12386.591672897339, + "relativeCreated": 12397.506713867188, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -182897,8 +182844,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:41,822", - "created": 1610361461.8229935, + "asctime": "2021-01-14 00:26:24,405", + "created": 1610580384.40519, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182908,15 +182855,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 822.9935169219971, + "msecs": 405.18999099731445, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12386.720895767212, + "relativeCreated": 12397.681713104248, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -182924,8 +182871,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,823", - "created": 1610361461.8231492, + "asctime": "2021-01-14 00:26:24,405", + "created": 1610580384.4053566, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182935,15 +182882,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 823.1492042541504, + "msecs": 405.35664558410645, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12386.876583099365, + "relativeCreated": 12397.84836769104, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -182952,8 +182899,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,823", - "created": 1610361461.8232636, + "asctime": "2021-01-14 00:26:24,405", + "created": 1610580384.4054766, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182963,15 +182910,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 823.2636451721191, + "msecs": 405.47657012939453, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12386.991024017334, + "relativeCreated": 12397.968292236328, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -182979,8 +182926,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,823", - "created": 1610361461.8234274, + "asctime": "2021-01-14 00:26:24,405", + "created": 1610580384.4056442, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -182990,15 +182937,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 823.4274387359619, + "msecs": 405.64417839050293, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12387.154817581177, + "relativeCreated": 12398.135900497437, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183007,8 +182954,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,823", - "created": 1610361461.823532, + "asctime": "2021-01-14 00:26:24,405", + "created": 1610580384.4057539, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183018,15 +182965,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 823.5321044921875, + "msecs": 405.75385093688965, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12387.259483337402, + "relativeCreated": 12398.245573043823, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183034,8 +182981,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,823", - "created": 1610361461.8237112, + "asctime": "2021-01-14 00:26:24,405", + "created": 1610580384.4059043, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183045,15 +182992,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 823.7111568450928, + "msecs": 405.90429306030273, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12387.438535690308, + "relativeCreated": 12398.396015167236, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183062,8 +183009,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,823", - "created": 1610361461.8238199, + "asctime": "2021-01-14 00:26:24,406", + "created": 1610580384.406034, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183073,15 +183020,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 823.8198757171631, + "msecs": 406.033992767334, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12387.547254562378, + "relativeCreated": 12398.525714874268, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183089,8 +183036,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,823", - "created": 1610361461.8239558, + "asctime": "2021-01-14 00:26:24,406", + "created": 1610580384.406174, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183100,15 +183047,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 823.955774307251, + "msecs": 406.1739444732666, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12387.683153152466, + "relativeCreated": 12398.6656665802, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183117,8 +183064,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:41,824", - "created": 1610361461.8240583, + "asctime": "2021-01-14 00:26:24,406", + "created": 1610580384.4062889, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183128,15 +183075,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 824.0582942962646, + "msecs": 406.28886222839355, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12387.78567314148, + "relativeCreated": 12398.780584335327, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183144,8 +183091,8 @@ "comm-server:", "(8): 6c 7d bd 30 46 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,824", - "created": 1610361461.8242548, + "asctime": "2021-01-14 00:26:24,406", + "created": 1610580384.4064848, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183155,15 +183102,15 @@ "lineno": 284, "message": "comm-server: TX -> (8): 6c 7d bd 30 46 9b 3a 3e", "module": "__init__", - "msecs": 824.2547512054443, + "msecs": 406.48484230041504, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12387.98213005066, + "relativeCreated": 12398.976564407349, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183171,8 +183118,8 @@ "comm-client:", "(8): 6c 7d bd 30 46 9b 3a 3e" ], - "asctime": "2021-01-11 11:37:41,825", - "created": 1610361461.8255193, + "asctime": "2021-01-14 00:26:24,407", + "created": 1610580384.4078195, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183182,15 +183129,15 @@ "lineno": 414, "message": "comm-client: RX <- (8): 6c 7d bd 30 46 9b 3a 3e", "module": "__init__", - "msecs": 825.519323348999, + "msecs": 407.8195095062256, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12389.246702194214, + "relativeCreated": 12400.31123161316, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183198,8 +183145,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:41,825", - "created": 1610361461.8257246, + "asctime": "2021-01-14 00:26:24,408", + "created": 1610580384.4080951, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183209,15 +183156,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 825.7246017456055, + "msecs": 408.095121383667, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12389.45198059082, + "relativeCreated": 12400.5868434906, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183226,8 +183173,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:41,825", - "created": 1610361461.8258598, + "asctime": "2021-01-14 00:26:24,408", + "created": 1610580384.408236, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183237,15 +183184,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 825.859785079956, + "msecs": 408.236026763916, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12389.58716392517, + "relativeCreated": 12400.72774887085, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183253,8 +183200,8 @@ "STP:", "(64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b" ], - "asctime": "2021-01-11 11:37:41,826", - "created": 1610361461.8260756, + "asctime": "2021-01-14 00:26:24,408", + "created": 1610580384.4084365, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -183264,15 +183211,15 @@ "lineno": 148, "message": "STP: message identified - (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b", "module": "stp", - "msecs": 826.075553894043, + "msecs": 408.43653678894043, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12389.802932739258, + "relativeCreated": 12400.928258895874, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { @@ -183283,74 +183230,74 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:41,826", - "created": 1610361461.8263757, + "asctime": "2021-01-14 00:26:24,408", + "created": 1610580384.4087646, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 826.3757228851318, + "msecs": 408.7646007537842, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12390.103101730347, + "relativeCreated": 12401.256322860718, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:41,826", - "created": 1610361461.8265536, + "asctime": "2021-01-14 00:26:24,408", + "created": 1610580384.4089432, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 826.5535831451416, + "msecs": 408.94317626953125, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12390.280961990356, + "relativeCreated": 12401.434898376465, "stack_info": null, - "thread": 139976448657152, + "thread": 140581426673408, "threadName": "Thread-16" } ], - "msecs": 996.8907833099365, + "msecs": 579.5738697052002, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12560.618162155151, + "relativeCreated": 12572.065591812134, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.17033720016479492 + "time_consumption": 0.17063069343566895 }, { "args": [ "True", "" ], - "asctime": "2021-01-11 11:37:41,997", - "created": 1610361461.9976802, + "asctime": "2021-01-14 00:26:24,580", + "created": 1610580384.580394, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -183367,8 +183314,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:41,997", - "created": 1610361461.9973578, + "asctime": "2021-01-14 00:26:24,580", + "created": 1610580384.580061, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -183378,15 +183325,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 997.3578453063965, + "msecs": 580.0609588623047, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12561.085224151611, + "relativeCreated": 12572.552680969238, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183395,8 +183342,8 @@ "True", "" ], - "asctime": "2021-01-11 11:37:41,997", - "created": 1610361461.997529, + "asctime": "2021-01-14 00:26:24,580", + "created": 1610580384.5802372, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -183406,37 +183353,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 997.5290298461914, + "msecs": 580.2371501922607, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12561.256408691406, + "relativeCreated": 12572.728872299194, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 997.6801872253418, + "msecs": 580.3940296173096, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12561.407566070557, + "relativeCreated": 12572.885751724243, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015115737915039062 + "time_consumption": 0.00015687942504882812 }, { "args": [ "{'data_id': 34, 'service_id': 18, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:41,998", - "created": 1610361461.9982774, + "asctime": "2021-01-14 00:26:24,580", + "created": 1610580384.5809743, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -183453,8 +183400,8 @@ "{'data_id': 34, 'service_id': 18, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:41,997", - "created": 1610361461.9979472, + "asctime": "2021-01-14 00:26:24,580", + "created": 1610580384.5806305, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -183464,15 +183411,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 18, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 997.9472160339355, + "msecs": 580.6305408477783, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12561.67459487915, + "relativeCreated": 12573.122262954712, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183481,8 +183428,8 @@ "{'service_id': 18, 'data_id': 34, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:41,998", - "created": 1610361461.9981198, + "asctime": "2021-01-14 00:26:24,580", + "created": 1610580384.5808089, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -183492,41 +183439,41 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 18, 'data_id': 34, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 998.1198310852051, + "msecs": 580.8088779449463, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12561.84720993042, + "relativeCreated": 12573.30060005188, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 998.2774257659912, + "msecs": 580.9743404388428, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12562.004804611206, + "relativeCreated": 12573.466062545776, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001575946807861328 + "time_consumption": 0.00016546249389648438 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.8601710796356201, - "time_finished": "2021-01-11 11:37:41,998", - "time_start": "2021-01-11 11:37:41,138" + "time_consumption": 0.8591115474700928, + "time_finished": "2021-01-14 00:26:24,580", + "time_start": "2021-01-14 00:26:23,721" }, "_k7opsE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:44,425", - "created": 1610361464.425733, + "asctime": "2021-01-14 00:26:27,014", + "created": 1610580387.0145392, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183537,19 +183484,19 @@ "message": "_k7opsE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 425.7330894470215, + "msecs": 14.539241790771484, "msg": "_k7opsE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14989.460468292236, + "relativeCreated": 15007.030963897705, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:44,435", - "created": 1610361464.4358187, + "asctime": "2021-01-14 00:26:27,021", + "created": 1610580387.021019, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -183564,8 +183511,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:44,426", - "created": 1610361464.4267175, + "asctime": "2021-01-14 00:26:27,015", + "created": 1610580387.015704, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183575,23 +183522,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 426.71751976013184, + "msecs": 15.703916549682617, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14990.444898605347, + "relativeCreated": 15008.195638656616, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,428", - "created": 1610361464.4287326, + "asctime": "2021-01-14 00:26:27,016", + "created": 1610580387.016301, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183601,23 +183548,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 428.73263359069824, + "msecs": 16.30091667175293, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14992.460012435913, + "relativeCreated": 15008.792638778687, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,429", - "created": 1610361464.4290266, + "asctime": "2021-01-14 00:26:27,016", + "created": 1610580387.016456, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183627,41 +183574,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 429.02660369873047, + "msecs": 16.455888748168945, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14992.753982543945, + "relativeCreated": 15008.947610855103, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,429", - "created": 1610361464.4293704, + "asctime": "2021-01-14 00:26:27,016", + "created": 1610580387.0166912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 429.3704032897949, + "msecs": 16.691207885742188, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14993.09778213501, + "relativeCreated": 15009.182929992676, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183670,26 +183617,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:44,429", - "created": 1610361464.4295697, + "asctime": "2021-01-14 00:26:27,016", + "created": 1610580387.0168192, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 429.5697212219238, + "msecs": 16.819238662719727, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14993.297100067139, + "relativeCreated": 15009.310960769653, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183697,26 +183644,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,429", - "created": 1610361464.4298062, + "asctime": "2021-01-14 00:26:27,016", + "created": 1610580387.01699, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 429.8062324523926, + "msecs": 16.989946365356445, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14993.533611297607, + "relativeCreated": 15009.48166847229, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183724,26 +183671,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,429", - "created": 1610361464.4299707, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0171022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 429.97074127197266, + "msecs": 17.10224151611328, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14993.698120117188, + "relativeCreated": 15009.593963623047, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183751,26 +183698,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:44,430", - "created": 1610361464.4301186, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0172386, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 430.1185607910156, + "msecs": 17.238616943359375, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14993.84593963623, + "relativeCreated": 15009.730339050293, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183778,26 +183725,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:44,430", - "created": 1610361464.4302616, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0173368, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 430.26161193847656, + "msecs": 17.33684539794922, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14993.988990783691, + "relativeCreated": 15009.828567504883, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183807,8 +183754,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:44,430", - "created": 1610361464.4304192, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0174448, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183818,15 +183765,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 430.4192066192627, + "msecs": 17.444849014282227, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14994.146585464478, + "relativeCreated": 15009.936571121216, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183836,8 +183783,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:44,430", - "created": 1610361464.4305897, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0175567, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183847,15 +183794,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 430.5896759033203, + "msecs": 17.55666732788086, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14994.317054748535, + "relativeCreated": 15010.048389434814, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183865,8 +183812,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:44,430", - "created": 1610361464.4307573, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0176697, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183876,15 +183823,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 430.7572841644287, + "msecs": 17.669677734375, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14994.484663009644, + "relativeCreated": 15010.161399841309, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183894,8 +183841,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:44,430", - "created": 1610361464.4309092, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0177743, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -183905,41 +183852,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 430.9091567993164, + "msecs": 17.774343490600586, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14994.636535644531, + "relativeCreated": 15010.266065597534, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,431", - "created": 1610361464.4310431, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0178742, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 431.0431480407715, + "msecs": 17.87424087524414, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14994.770526885986, + "relativeCreated": 15010.365962982178, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183948,26 +183895,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:44,431", - "created": 1610361464.4312067, + "asctime": "2021-01-14 00:26:27,017", + "created": 1610580387.0179808, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 431.20670318603516, + "msecs": 17.98081398010254, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14994.93408203125, + "relativeCreated": 15010.472536087036, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -183975,26 +183922,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:44,431", - "created": 1610361464.431372, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.0181048, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 431.37192726135254, + "msecs": 18.10479164123535, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14995.099306106567, + "relativeCreated": 15010.596513748169, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184002,26 +183949,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:44,431", - "created": 1610361464.4315155, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.018201, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 431.5154552459717, + "msecs": 18.201112747192383, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14995.242834091187, + "relativeCreated": 15010.692834854126, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184031,8 +183978,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:44,431", - "created": 1610361464.4316661, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.018304, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184042,15 +183989,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 431.66613578796387, + "msecs": 18.304109573364258, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14995.393514633179, + "relativeCreated": 15010.795831680298, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184060,8 +184007,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:44,431", - "created": 1610361464.4318295, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.0184133, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184071,15 +184018,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 431.82945251464844, + "msecs": 18.413305282592773, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14995.556831359863, + "relativeCreated": 15010.905027389526, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184088,26 +184035,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:44,431", - "created": 1610361464.4319766, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.0185127, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 431.9765567779541, + "msecs": 18.512725830078125, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14995.703935623169, + "relativeCreated": 15011.004447937012, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184116,26 +184063,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:44,432", - "created": 1610361464.432114, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.0186055, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 432.1138858795166, + "msecs": 18.605470657348633, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14995.841264724731, + "relativeCreated": 15011.097192764282, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184144,78 +184091,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:44,432", - "created": 1610361464.4322495, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.0186968, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 432.2495460510254, + "msecs": 18.69678497314453, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14995.97692489624, + "relativeCreated": 15011.188507080078, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,432", - "created": 1610361464.4323885, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.0187912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 432.3885440826416, + "msecs": 18.79119873046875, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14996.115922927856, + "relativeCreated": 15011.282920837402, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,432", - "created": 1610361464.432661, + "asctime": "2021-01-14 00:26:27,018", + "created": 1610580387.018984, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 432.6610565185547, + "msecs": 18.984079360961914, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14996.38843536377, + "relativeCreated": 15011.475801467896, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184224,26 +184171,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:44,432", - "created": 1610361464.4328525, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0190961, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 432.85250663757324, + "msecs": 19.09613609313965, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14996.579885482788, + "relativeCreated": 15011.587858200073, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184251,26 +184198,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,433", - "created": 1610361464.4330707, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0192301, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 433.0706596374512, + "msecs": 19.230127334594727, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14996.798038482666, + "relativeCreated": 15011.721849441528, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184278,26 +184225,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,433", - "created": 1610361464.4332185, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0193307, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 433.21847915649414, + "msecs": 19.330739974975586, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14996.945858001709, + "relativeCreated": 15011.82246208191, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184305,26 +184252,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:44,433", - "created": 1610361464.4333606, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0194333, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 433.3605766296387, + "msecs": 19.433259963989258, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14997.087955474854, + "relativeCreated": 15011.924982070923, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184332,26 +184279,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:44,433", - "created": 1610361464.4334981, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.019528, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 433.4981441497803, + "msecs": 19.527912139892578, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14997.225522994995, + "relativeCreated": 15012.019634246826, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184361,8 +184308,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:44,433", - "created": 1610361464.4336452, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0196276, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184372,15 +184319,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 433.64524841308594, + "msecs": 19.62757110595703, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14997.3726272583, + "relativeCreated": 15012.11929321289, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184390,8 +184337,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:44,433", - "created": 1610361464.4338086, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0197399, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184401,15 +184348,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 433.8085651397705, + "msecs": 19.739866256713867, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14997.535943984985, + "relativeCreated": 15012.231588363647, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184419,8 +184366,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:44,433", - "created": 1610361464.4339604, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0198426, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184430,15 +184377,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 433.9604377746582, + "msecs": 19.84262466430664, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14997.687816619873, + "relativeCreated": 15012.33434677124, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184448,8 +184395,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:44,434", - "created": 1610361464.434119, + "asctime": "2021-01-14 00:26:27,019", + "created": 1610580387.0199492, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184459,41 +184406,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 434.11898612976074, + "msecs": 19.94919776916504, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14997.846364974976, + "relativeCreated": 15012.440919876099, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,434", - "created": 1610361464.4342513, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0200405, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 434.2513084411621, + "msecs": 20.040512084960938, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14997.978687286377, + "relativeCreated": 15012.532234191895, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184502,26 +184449,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:44,434", - "created": 1610361464.4344523, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0201406, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 434.4522953033447, + "msecs": 20.140647888183594, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14998.17967414856, + "relativeCreated": 15012.632369995117, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184529,26 +184476,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:44,434", - "created": 1610361464.4346645, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0202553, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 434.6644878387451, + "msecs": 20.255327224731445, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14998.39186668396, + "relativeCreated": 15012.747049331665, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184556,26 +184503,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:44,434", - "created": 1610361464.4348106, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0203514, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 434.8106384277344, + "msecs": 20.351409912109375, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14998.53801727295, + "relativeCreated": 15012.843132019043, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184585,8 +184532,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:44,434", - "created": 1610361464.4349582, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0204506, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184596,15 +184543,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 434.95821952819824, + "msecs": 20.450592041015625, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14998.685598373413, + "relativeCreated": 15012.94231414795, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184614,8 +184561,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:44,435", - "created": 1610361464.4351099, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0205543, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184625,15 +184572,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 435.10985374450684, + "msecs": 20.554304122924805, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14998.837232589722, + "relativeCreated": 15013.046026229858, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184642,26 +184589,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:44,435", - "created": 1610361464.435255, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0206504, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 435.2550506591797, + "msecs": 20.650386810302734, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14998.982429504395, + "relativeCreated": 15013.142108917236, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184670,26 +184617,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:44,435", - "created": 1610361464.4353921, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0207427, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 435.3921413421631, + "msecs": 20.74265480041504, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14999.119520187378, + "relativeCreated": 15013.234376907349, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184698,71 +184645,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:44,435", - "created": 1610361464.4355261, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0208335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 435.52613258361816, + "msecs": 20.833492279052734, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14999.253511428833, + "relativeCreated": 15013.325214385986, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,435", - "created": 1610361464.4356773, + "asctime": "2021-01-14 00:26:27,020", + "created": 1610580387.0209312, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 435.67728996276855, + "msecs": 20.931243896484375, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14999.404668807983, + "relativeCreated": 15013.422966003418, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 435.8186721801758, + "msecs": 21.01898193359375, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14999.54605102539, + "relativeCreated": 15013.510704040527, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014138221740722656 + "time_consumption": 8.7738037109375e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:44,780", - "created": 1610361464.780275, + "asctime": "2021-01-14 00:26:27,365", + "created": 1610580387.3657634, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -184777,8 +184724,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:44,436", - "created": 1610361464.4361122, + "asctime": "2021-01-14 00:26:27,021", + "created": 1610580387.021242, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184788,23 +184735,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 436.1121654510498, + "msecs": 21.24190330505371, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14999.839544296265, + "relativeCreated": 15013.733625411987, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:44,436", - "created": 1610361464.4362643, + "asctime": "2021-01-14 00:26:27,021", + "created": 1610580387.0213392, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184814,41 +184761,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 436.2642765045166, + "msecs": 21.33917808532715, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 14999.991655349731, + "relativeCreated": 15013.83090019226, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,436", - "created": 1610361464.4364214, + "asctime": "2021-01-14 00:26:27,021", + "created": 1610580387.0216308, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 436.42139434814453, + "msecs": 21.63076400756836, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15000.14877319336, + "relativeCreated": 15014.122486114502, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184859,34 +184806,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:44,436", - "created": 1610361464.4366775, + "asctime": "2021-01-14 00:26:27,021", + "created": 1610580387.0218823, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 436.6774559020996, + "msecs": 21.882295608520508, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15000.404834747314, + "relativeCreated": 15014.374017715454, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,436", - "created": 1610361464.436943, + "asctime": "2021-01-14 00:26:27,022", + "created": 1610580387.0223036, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184896,23 +184843,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 436.94305419921875, + "msecs": 22.30358123779297, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15000.670433044434, + "relativeCreated": 15014.795303344727, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,436", - "created": 1610361464.4369934, + "asctime": "2021-01-14 00:26:27,022", + "created": 1610580387.022427, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184922,41 +184869,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 436.9933605194092, + "msecs": 22.427082061767578, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15000.720739364624, + "relativeCreated": 15014.918804168701, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,437", - "created": 1610361464.4370382, + "asctime": "2021-01-14 00:26:27,022", + "created": 1610580387.0225315, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 437.0381832122803, + "msecs": 22.531509399414062, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15000.765562057495, + "relativeCreated": 15015.023231506348, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -184964,8 +184911,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:44,437", - "created": 1610361464.4371693, + "asctime": "2021-01-14 00:26:27,022", + "created": 1610580387.0229409, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -184975,15 +184922,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 437.16931343078613, + "msecs": 22.940874099731445, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15000.896692276001, + "relativeCreated": 15015.432596206665, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -184991,8 +184938,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4453187, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0312202, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -185002,15 +184949,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 445.31869888305664, + "msecs": 31.220197677612305, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.046077728271, + "relativeCreated": 15023.711919784546, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185018,8 +184965,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4454467, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0313554, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185029,15 +184976,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 445.4467296600342, + "msecs": 31.35538101196289, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.174108505249, + "relativeCreated": 15023.847103118896, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185046,8 +184993,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4454985, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.031408, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185057,15 +185004,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 445.4984664916992, + "msecs": 31.408071517944336, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.225845336914, + "relativeCreated": 15023.899793624878, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185073,8 +185020,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4455626, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0314732, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185084,15 +185031,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 445.56260108947754, + "msecs": 31.473159790039062, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.289979934692, + "relativeCreated": 15023.964881896973, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185101,8 +185048,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.445606, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.031517, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185112,15 +185059,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 445.605993270874, + "msecs": 31.51702880859375, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.333372116089, + "relativeCreated": 15024.008750915527, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185128,8 +185075,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4456673, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0315802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185139,15 +185086,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 445.6672668457031, + "msecs": 31.580209732055664, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.394645690918, + "relativeCreated": 15024.07193183899, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185156,8 +185103,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4457078, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0316222, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185167,15 +185114,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 445.7077980041504, + "msecs": 31.62217140197754, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.435176849365, + "relativeCreated": 15024.113893508911, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185183,8 +185130,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4457624, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0316782, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185194,15 +185141,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 445.76239585876465, + "msecs": 31.678199768066406, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.48977470398, + "relativeCreated": 15024.169921875, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185211,8 +185158,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4458017, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0317194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185222,15 +185169,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 445.8017349243164, + "msecs": 31.719446182250977, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.529113769531, + "relativeCreated": 15024.211168289185, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185238,8 +185185,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4458585, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.031778, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185249,15 +185196,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 445.8584785461426, + "msecs": 31.77809715270996, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.585857391357, + "relativeCreated": 15024.269819259644, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185266,8 +185213,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4458985, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0318203, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185277,15 +185224,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 445.89853286743164, + "msecs": 31.820297241210938, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.625911712646, + "relativeCreated": 15024.312019348145, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185293,8 +185240,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:44,445", - "created": 1610361464.4459765, + "asctime": "2021-01-14 00:26:27,031", + "created": 1610580387.0318983, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -185304,15 +185251,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 445.97649574279785, + "msecs": 31.89826011657715, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15009.703874588013, + "relativeCreated": 15024.38998222351, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185320,8 +185267,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:44,446", - "created": 1610361464.4469194, + "asctime": "2021-01-14 00:26:27,032", + "created": 1610580387.0328481, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -185331,15 +185278,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 446.91944122314453, + "msecs": 32.84811973571777, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15010.64682006836, + "relativeCreated": 15025.339841842651, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185347,8 +185294,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,447", - "created": 1610361464.447044, + "asctime": "2021-01-14 00:26:27,032", + "created": 1610580387.032977, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185358,15 +185305,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 447.04389572143555, + "msecs": 32.97710418701172, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15010.77127456665, + "relativeCreated": 15025.468826293945, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185375,8 +185322,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:44,447", - "created": 1610361464.4471061, + "asctime": "2021-01-14 00:26:27,033", + "created": 1610580387.0330424, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185386,15 +185333,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 447.10612297058105, + "msecs": 33.04243087768555, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15010.833501815796, + "relativeCreated": 15025.53415298462, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185402,8 +185349,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:44,447", - "created": 1610361464.447182, + "asctime": "2021-01-14 00:26:27,033", + "created": 1610580387.0331366, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185413,15 +185360,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 447.18194007873535, + "msecs": 33.136606216430664, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15010.90931892395, + "relativeCreated": 15025.628328323364, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185432,26 +185379,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:44,447", - "created": 1610361464.4473135, + "asctime": "2021-01-14 00:26:27,033", + "created": 1610580387.033276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 447.3135471343994, + "msecs": 33.27608108520508, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15011.040925979614, + "relativeCreated": 15025.767803192139, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185459,26 +185406,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:44,447", - "created": 1610361464.447376, + "asctime": "2021-01-14 00:26:27,033", + "created": 1610580387.0333378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 447.376012802124, + "msecs": 33.33783149719238, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15011.103391647339, + "relativeCreated": 15025.829553604126, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185489,26 +185436,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:44,447", - "created": 1610361464.4474564, + "asctime": "2021-01-14 00:26:27,033", + "created": 1610580387.0334237, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 447.45635986328125, + "msecs": 33.423662185668945, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15011.183738708496, + "relativeCreated": 15025.915384292603, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -185516,8 +185463,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:44,447", - "created": 1610361464.4478023, + "asctime": "2021-01-14 00:26:27,033", + "created": 1610580387.0337253, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -185527,15 +185474,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 447.8023052215576, + "msecs": 33.72526168823242, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15011.529684066772, + "relativeCreated": 15026.216983795166, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185543,8 +185490,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4561408, + "asctime": "2021-01-14 00:26:27,041", + "created": 1610580387.0419025, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -185554,15 +185501,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 456.14075660705566, + "msecs": 41.90254211425781, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15019.86813545227, + "relativeCreated": 15034.394264221191, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185570,8 +185517,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4563046, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.042038, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185581,15 +185528,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 456.30455017089844, + "msecs": 42.0379638671875, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.031929016113, + "relativeCreated": 15034.529685974121, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185598,8 +185545,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4563956, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0420952, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185609,15 +185556,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 456.39562606811523, + "msecs": 42.095184326171875, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.12300491333, + "relativeCreated": 15034.586906433105, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185625,8 +185572,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4565015, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0421581, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185636,15 +185583,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 456.5014839172363, + "msecs": 42.15812683105469, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.228862762451, + "relativeCreated": 15034.649848937988, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185653,8 +185600,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.456594, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0422187, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185664,15 +185611,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 456.59399032592773, + "msecs": 42.218685150146484, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.321369171143, + "relativeCreated": 15034.71040725708, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185680,8 +185627,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4567022, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0422814, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185691,15 +185638,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 456.70223236083984, + "msecs": 42.281389236450195, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.429611206055, + "relativeCreated": 15034.773111343384, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185708,8 +185655,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4568048, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.042328, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185719,15 +185666,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 456.8047523498535, + "msecs": 42.327880859375, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.532131195068, + "relativeCreated": 15034.819602966309, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185735,8 +185682,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4569037, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0423841, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185746,15 +185693,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 456.90369606018066, + "msecs": 42.38414764404297, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.631074905396, + "relativeCreated": 15034.875869750977, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185763,8 +185710,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,456", - "created": 1610361464.4569774, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0424252, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185774,15 +185721,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 456.97736740112305, + "msecs": 42.42515563964844, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.704746246338, + "relativeCreated": 15034.916877746582, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185790,8 +185737,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,457", - "created": 1610361464.4570699, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0424778, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185801,15 +185748,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 457.06987380981445, + "msecs": 42.47784614562988, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.79725265503, + "relativeCreated": 15034.969568252563, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185818,8 +185765,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,457", - "created": 1610361464.4571397, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.0425172, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185829,15 +185776,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 457.1397304534912, + "msecs": 42.51718521118164, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.867109298706, + "relativeCreated": 15035.008907318115, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185845,8 +185792,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:44,457", - "created": 1610361464.457264, + "asctime": "2021-01-14 00:26:27,042", + "created": 1610580387.042602, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -185856,15 +185803,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 457.2639465332031, + "msecs": 42.6020622253418, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15020.991325378418, + "relativeCreated": 15035.093784332275, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185872,8 +185819,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:44,458", - "created": 1610361464.4582705, + "asctime": "2021-01-14 00:26:27,043", + "created": 1610580387.0435495, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -185883,15 +185830,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 458.2705497741699, + "msecs": 43.549537658691406, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15021.997928619385, + "relativeCreated": 15036.041259765625, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185899,8 +185846,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,458", - "created": 1610361464.458451, + "asctime": "2021-01-14 00:26:27,043", + "created": 1610580387.0436785, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185910,15 +185857,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 458.4510326385498, + "msecs": 43.67852210998535, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15022.178411483765, + "relativeCreated": 15036.170244216919, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185927,8 +185874,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:44,458", - "created": 1610361464.4585586, + "asctime": "2021-01-14 00:26:27,043", + "created": 1610580387.043733, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185938,15 +185885,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 458.5585594177246, + "msecs": 43.73288154602051, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15022.28593826294, + "relativeCreated": 15036.224603652954, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185954,8 +185901,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:44,458", - "created": 1610361464.4586918, + "asctime": "2021-01-14 00:26:27,043", + "created": 1610580387.0438201, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -185965,15 +185912,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 458.6918354034424, + "msecs": 43.82014274597168, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15022.419214248657, + "relativeCreated": 15036.311864852905, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -185984,26 +185931,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:44,458", - "created": 1610361464.4588978, + "asctime": "2021-01-14 00:26:27,043", + "created": 1610580387.0439572, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 458.89782905578613, + "msecs": 43.95723342895508, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15022.625207901001, + "relativeCreated": 15036.448955535889, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186011,45 +185958,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:44,458", - "created": 1610361464.4589972, + "asctime": "2021-01-14 00:26:27,044", + "created": 1610580387.044019, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 458.9972496032715, + "msecs": 44.01898384094238, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15022.724628448486, + "relativeCreated": 15036.510705947876, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" } ], - "msecs": 780.2751064300537, + "msecs": 365.76342582702637, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15344.002485275269, + "relativeCreated": 15358.25514793396, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3212778568267822 + "time_consumption": 0.321744441986084 }, { "args": [], - "asctime": "2021-01-11 11:37:44,781", - "created": 1610361464.7810345, + "asctime": "2021-01-14 00:26:27,366", + "created": 1610580387.3665142, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -186067,8 +186014,8 @@ "None", "None" ], - "asctime": "2021-01-11 11:37:44,780", - "created": 1610361464.7808437, + "asctime": "2021-01-14 00:26:27,366", + "created": 1610580387.3663015, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -186078,34 +186025,34 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=None and DID=None", "module": "__init__", - "msecs": 780.8437347412109, + "msecs": 366.3015365600586, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15344.571113586426, + "relativeCreated": 15358.793258666992, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 781.0344696044922, + "msecs": 366.5142059326172, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15344.761848449707, + "relativeCreated": 15359.00592803955, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00019073486328125 + "time_consumption": 0.00021266937255859375 }, { "args": [], - "asctime": "2021-01-11 11:37:44,982", - "created": 1610361464.9826884, + "asctime": "2021-01-14 00:26:27,568", + "created": 1610580387.5682056, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -186124,26 +186071,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:44,781", - "created": 1610361464.781453, + "asctime": "2021-01-14 00:26:27,366", + "created": 1610580387.3668647, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 781.4528942108154, + "msecs": 366.8646812438965, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15345.18027305603, + "relativeCreated": 15359.35640335083, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -186151,8 +186098,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:44,782", - "created": 1610361464.7826364, + "asctime": "2021-01-14 00:26:27,367", + "created": 1610580387.367766, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -186162,15 +186109,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 782.6364040374756, + "msecs": 367.7659034729004, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15346.36378288269, + "relativeCreated": 15360.257625579834, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186178,8 +186125,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:44,791", - "created": 1610361464.79102, + "asctime": "2021-01-14 00:26:27,376", + "created": 1610580387.3762817, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -186189,15 +186136,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 791.0199165344238, + "msecs": 376.28173828125, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15354.747295379639, + "relativeCreated": 15368.773460388184, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186205,8 +186152,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,791", - "created": 1610361464.7913213, + "asctime": "2021-01-14 00:26:27,376", + "created": 1610580387.3766065, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186216,15 +186163,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 791.3212776184082, + "msecs": 376.6064643859863, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15355.048656463623, + "relativeCreated": 15369.09818649292, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186233,8 +186180,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:44,791", - "created": 1610361464.7914846, + "asctime": "2021-01-14 00:26:27,376", + "created": 1610580387.376773, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186244,15 +186191,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 791.4845943450928, + "msecs": 376.7731189727783, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15355.211973190308, + "relativeCreated": 15369.264841079712, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186260,8 +186207,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,791", - "created": 1610361464.7917883, + "asctime": "2021-01-14 00:26:27,376", + "created": 1610580387.376975, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186271,15 +186218,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 791.7883396148682, + "msecs": 376.97505950927734, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15355.515718460083, + "relativeCreated": 15369.466781616211, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186288,8 +186235,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,791", - "created": 1610361464.7919283, + "asctime": "2021-01-14 00:26:27,377", + "created": 1610580387.377174, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186299,15 +186246,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 791.9282913208008, + "msecs": 377.17390060424805, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15355.655670166016, + "relativeCreated": 15369.665622711182, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186315,8 +186262,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,792", - "created": 1610361464.792128, + "asctime": "2021-01-14 00:26:27,377", + "created": 1610580387.377381, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186326,15 +186273,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 792.1280860900879, + "msecs": 377.3810863494873, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15355.855464935303, + "relativeCreated": 15369.87280845642, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186343,8 +186290,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,792", - "created": 1610361464.7922578, + "asctime": "2021-01-14 00:26:27,377", + "created": 1610580387.377519, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186354,15 +186301,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 792.2577857971191, + "msecs": 377.518892288208, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15355.985164642334, + "relativeCreated": 15370.010614395142, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186370,8 +186317,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,792", - "created": 1610361464.7924652, + "asctime": "2021-01-14 00:26:27,377", + "created": 1610580387.377716, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186381,15 +186328,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 792.4652099609375, + "msecs": 377.716064453125, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15356.192588806152, + "relativeCreated": 15370.207786560059, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186398,8 +186345,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,792", - "created": 1610361464.792716, + "asctime": "2021-01-14 00:26:27,377", + "created": 1610580387.377849, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186409,15 +186356,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 792.7160263061523, + "msecs": 377.8491020202637, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15356.443405151367, + "relativeCreated": 15370.340824127197, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186425,8 +186372,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,792", - "created": 1610361464.7929215, + "asctime": "2021-01-14 00:26:27,378", + "created": 1610580387.3780208, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186436,15 +186383,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 792.9215431213379, + "msecs": 378.0207633972168, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15356.648921966553, + "relativeCreated": 15370.51248550415, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186453,8 +186400,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,793", - "created": 1610361464.7930667, + "asctime": "2021-01-14 00:26:27,378", + "created": 1610580387.3781514, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186464,15 +186411,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 793.0667400360107, + "msecs": 378.15141677856445, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15356.794118881226, + "relativeCreated": 15370.643138885498, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186480,8 +186427,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:44,793", - "created": 1610361464.7933328, + "asctime": "2021-01-14 00:26:27,378", + "created": 1610580387.3784075, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -186491,15 +186438,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 793.3328151702881, + "msecs": 378.40747833251953, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15357.060194015503, + "relativeCreated": 15370.899200439453, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186507,8 +186454,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:44,794", - "created": 1610361464.7941647, + "asctime": "2021-01-14 00:26:27,379", + "created": 1610580387.3793237, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -186518,15 +186465,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 794.1646575927734, + "msecs": 379.32372093200684, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15357.892036437988, + "relativeCreated": 15371.81544303894, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186534,8 +186481,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,794", - "created": 1610361464.7942998, + "asctime": "2021-01-14 00:26:27,379", + "created": 1610580387.3795233, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186545,15 +186492,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 794.299840927124, + "msecs": 379.52327728271484, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15358.027219772339, + "relativeCreated": 15372.014999389648, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186562,8 +186509,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:44,794", - "created": 1610361464.7944071, + "asctime": "2021-01-14 00:26:27,379", + "created": 1610580387.3796577, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186573,15 +186520,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 794.4071292877197, + "msecs": 379.6577453613281, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15358.134508132935, + "relativeCreated": 15372.149467468262, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186589,8 +186536,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:44,794", - "created": 1610361464.794589, + "asctime": "2021-01-14 00:26:27,379", + "created": 1610580387.3798568, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186600,15 +186547,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 794.5890426635742, + "msecs": 379.85682487487793, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15358.316421508789, + "relativeCreated": 15372.348546981812, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186619,26 +186566,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:44,795", - "created": 1610361464.7950766, + "asctime": "2021-01-14 00:26:27,380", + "created": 1610580387.3801887, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 795.0766086578369, + "msecs": 380.1887035369873, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15358.803987503052, + "relativeCreated": 15372.68042564392, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186646,26 +186593,26 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:44,795", - "created": 1610361464.7952302, + "asctime": "2021-01-14 00:26:27,380", + "created": 1610580387.3803487, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 795.2301502227783, + "msecs": 380.34868240356445, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15358.957529067993, + "relativeCreated": 15372.840404510498, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186676,26 +186623,26 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:44,795", - "created": 1610361464.7954206, + "asctime": "2021-01-14 00:26:27,380", + "created": 1610580387.3805475, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 795.4206466674805, + "msecs": 380.54752349853516, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15359.148025512695, + "relativeCreated": 15373.039245605469, "stack_info": null, - "thread": 139975895000832, + "thread": 140580873017088, "threadName": "Thread-25" }, { @@ -186703,8 +186650,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:44,796", - "created": 1610361464.7964377, + "asctime": "2021-01-14 00:26:27,381", + "created": 1610580387.3812683, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -186714,15 +186661,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 796.4377403259277, + "msecs": 381.2682628631592, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15360.165119171143, + "relativeCreated": 15373.759984970093, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186730,8 +186677,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:44,804", - "created": 1610361464.8048434, + "asctime": "2021-01-14 00:26:27,389", + "created": 1610580387.3895862, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -186741,15 +186688,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 804.8434257507324, + "msecs": 389.5862102508545, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15368.570804595947, + "relativeCreated": 15382.077932357788, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186757,8 +186704,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,804", - "created": 1610361464.804975, + "asctime": "2021-01-14 00:26:27,389", + "created": 1610580387.3898335, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186768,15 +186715,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 804.9750328063965, + "msecs": 389.8334503173828, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15368.702411651611, + "relativeCreated": 15382.325172424316, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186785,8 +186732,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.8050535, + "asctime": "2021-01-14 00:26:27,389", + "created": 1610580387.3899636, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186796,15 +186743,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.0534725189209, + "msecs": 389.96362686157227, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15368.780851364136, + "relativeCreated": 15382.455348968506, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186812,8 +186759,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.8051336, + "asctime": "2021-01-14 00:26:27,390", + "created": 1610580387.390126, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186823,15 +186770,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.133581161499, + "msecs": 390.12598991394043, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15368.860960006714, + "relativeCreated": 15382.617712020874, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186840,8 +186787,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.805196, + "asctime": "2021-01-14 00:26:27,390", + "created": 1610580387.3902736, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186851,15 +186798,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.1960468292236, + "msecs": 390.2735710144043, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15368.923425674438, + "relativeCreated": 15382.765293121338, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186867,8 +186814,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.805278, + "asctime": "2021-01-14 00:26:27,390", + "created": 1610580387.390436, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186878,15 +186825,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.2780628204346, + "msecs": 390.43593406677246, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15369.00544166565, + "relativeCreated": 15382.927656173706, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186895,8 +186842,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.8053317, + "asctime": "2021-01-14 00:26:27,390", + "created": 1610580387.3905432, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186906,15 +186853,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.3317070007324, + "msecs": 390.54322242736816, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15369.059085845947, + "relativeCreated": 15383.034944534302, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186922,8 +186869,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.8054059, + "asctime": "2021-01-14 00:26:27,390", + "created": 1610580387.3906913, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186933,15 +186880,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.405855178833, + "msecs": 390.69128036499023, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15369.133234024048, + "relativeCreated": 15383.183002471924, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186950,8 +186897,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.805458, + "asctime": "2021-01-14 00:26:27,390", + "created": 1610580387.3907974, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186961,15 +186908,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.4580688476562, + "msecs": 390.79737663269043, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15369.185447692871, + "relativeCreated": 15383.289098739624, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -186977,8 +186924,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.8055272, + "asctime": "2021-01-14 00:26:27,390", + "created": 1610580387.3909347, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -186988,15 +186935,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 805.5272102355957, + "msecs": 390.93470573425293, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15369.25458908081, + "relativeCreated": 15383.426427841187, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -187005,8 +186952,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.8055801, + "asctime": "2021-01-14 00:26:27,391", + "created": 1610580387.391039, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -187016,15 +186963,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 805.5801391601562, + "msecs": 391.0388946533203, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15369.307518005371, + "relativeCreated": 15383.530616760254, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -187032,8 +186979,8 @@ "comm-server:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:44,805", - "created": 1610361464.8056834, + "asctime": "2021-01-14 00:26:27,391", + "created": 1610580387.3912437, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187043,15 +186990,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 805.6833744049072, + "msecs": 391.24369621276855, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15369.410753250122, + "relativeCreated": 15383.735418319702, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -187059,8 +187006,8 @@ "comm-client:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:44,806", - "created": 1610361464.8064754, + "asctime": "2021-01-14 00:26:27,392", + "created": 1610580387.3921413, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187070,15 +187017,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 806.4754009246826, + "msecs": 392.14134216308594, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15370.202779769897, + "relativeCreated": 15384.63306427002, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -187086,8 +187033,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:44,806", - "created": 1610361464.8065734, + "asctime": "2021-01-14 00:26:27,392", + "created": 1610580387.39234, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -187097,15 +187044,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 806.5733909606934, + "msecs": 392.33994483947754, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15370.300769805908, + "relativeCreated": 15384.831666946411, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -187114,8 +187061,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:44,806", - "created": 1610361464.8066478, + "asctime": "2021-01-14 00:26:27,392", + "created": 1610580387.3924928, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -187125,15 +187072,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 806.647777557373, + "msecs": 392.49277114868164, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15370.375156402588, + "relativeCreated": 15384.984493255615, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -187141,8 +187088,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" ], - "asctime": "2021-01-11 11:37:44,806", - "created": 1610361464.8067458, + "asctime": "2021-01-14 00:26:27,392", + "created": 1610580387.3926888, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -187152,15 +187099,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", "module": "stp", - "msecs": 806.7457675933838, + "msecs": 392.6887512207031, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15370.473146438599, + "relativeCreated": 15385.180473327637, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { @@ -187171,74 +187118,74 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:44,806", - "created": 1610361464.8069088, + "asctime": "2021-01-14 00:26:27,393", + "created": 1610580387.3930037, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 806.9088459014893, + "msecs": 393.0037021636963, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15370.636224746704, + "relativeCreated": 15385.49542427063, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,806", - "created": 1610361464.806999, + "asctime": "2021-01-14 00:26:27,393", + "created": 1610580387.3932085, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 806.9989681243896, + "msecs": 393.20850372314453, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15370.726346969604, + "relativeCreated": 15385.700225830078, "stack_info": null, - "thread": 139975886608128, + "thread": 140580386502400, "threadName": "Thread-26" } ], - "msecs": 982.6884269714355, + "msecs": 568.2055950164795, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15546.41580581665, + "relativeCreated": 15560.697317123413, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.1756894588470459 + "time_consumption": 0.17499709129333496 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:44,983", - "created": 1610361464.9836574, + "asctime": "2021-01-14 00:26:27,569", + "created": 1610580387.5692039, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -187255,8 +187202,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:44,983", - "created": 1610361464.9832304, + "asctime": "2021-01-14 00:26:27,568", + "created": 1610580387.5687935, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -187266,15 +187213,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 983.2303524017334, + "msecs": 568.793535232544, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15546.957731246948, + "relativeCreated": 15561.285257339478, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187283,8 +187230,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:44,983", - "created": 1610361464.9834867, + "asctime": "2021-01-14 00:26:27,568", + "created": 1610580387.568999, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -187294,37 +187241,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 983.4866523742676, + "msecs": 568.9990520477295, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15547.214031219482, + "relativeCreated": 15561.490774154663, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 983.6573600769043, + "msecs": 569.2038536071777, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15547.38473892212, + "relativeCreated": 15561.695575714111, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00017070770263671875 + "time_consumption": 0.0002048015594482422 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:44,984", - "created": 1610361464.9842029, + "asctime": "2021-01-14 00:26:27,569", + "created": 1610580387.5697432, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -187341,8 +187288,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:44,983", - "created": 1610361464.9838982, + "asctime": "2021-01-14 00:26:27,569", + "created": 1610580387.5694425, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -187352,15 +187299,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 983.8981628417969, + "msecs": 569.4425106048584, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15547.625541687012, + "relativeCreated": 15561.934232711792, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187369,8 +187316,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:44,984", - "created": 1610361464.9840572, + "asctime": "2021-01-14 00:26:27,569", + "created": 1610580387.5695992, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -187380,41 +187327,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 984.0571880340576, + "msecs": 569.5991516113281, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15547.784566879272, + "relativeCreated": 15562.090873718262, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 984.2028617858887, + "msecs": 569.7431564331055, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15547.930240631104, + "relativeCreated": 15562.234878540039, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001456737518310547 + "time_consumption": 0.00014400482177734375 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.5584697723388672, - "time_finished": "2021-01-11 11:37:44,984", - "time_start": "2021-01-11 11:37:44,425" + "time_consumption": 0.555203914642334, + "time_finished": "2021-01-14 00:26:27,569", + "time_start": "2021-01-14 00:26:27,014" }, "_r9srME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-11 11:37:42,354", - "created": 1610361462.354192, + "asctime": "2021-01-14 00:26:24,937", + "created": 1610580384.9377315, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187425,19 +187372,19 @@ "message": "_r9srME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 354.19201850891113, + "msecs": 937.7315044403076, "msg": "_r9srME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12917.919397354126, + "relativeCreated": 12930.223226547241, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:42,360", - "created": 1610361462.3600702, + "asctime": "2021-01-14 00:26:24,946", + "created": 1610580384.9469757, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -187452,8 +187399,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:42,355", - "created": 1610361462.3551645, + "asctime": "2021-01-14 00:26:24,938", + "created": 1610580384.9386587, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187463,23 +187410,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 355.1645278930664, + "msecs": 938.6587142944336, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12918.891906738281, + "relativeCreated": 12931.150436401367, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,355", - "created": 1610361462.3559399, + "asctime": "2021-01-14 00:26:24,939", + "created": 1610580384.9395292, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187489,23 +187436,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 355.9398651123047, + "msecs": 939.5291805267334, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12919.66724395752, + "relativeCreated": 12932.020902633667, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.3560605, + "asctime": "2021-01-14 00:26:24,939", + "created": 1610580384.9397812, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187515,41 +187462,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 356.0605049133301, + "msecs": 939.7811889648438, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12919.787883758545, + "relativeCreated": 12932.272911071777, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.3562467, + "asctime": "2021-01-14 00:26:24,940", + "created": 1610580384.9401212, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 356.2467098236084, + "msecs": 940.1211738586426, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12919.974088668823, + "relativeCreated": 12932.612895965576, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187558,26 +187505,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.3563468, + "asctime": "2021-01-14 00:26:24,940", + "created": 1610580384.9403005, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 356.34684562683105, + "msecs": 940.300464630127, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.074224472046, + "relativeCreated": 12932.79218673706, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187585,26 +187532,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.3564727, + "asctime": "2021-01-14 00:26:24,940", + "created": 1610580384.9405258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 356.4727306365967, + "msecs": 940.5257701873779, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.200109481812, + "relativeCreated": 12933.017492294312, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187612,26 +187559,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.3565624, + "asctime": "2021-01-14 00:26:24,940", + "created": 1610580384.940686, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 356.56237602233887, + "msecs": 940.6859874725342, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.289754867554, + "relativeCreated": 12933.177709579468, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187639,26 +187586,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.3566453, + "asctime": "2021-01-14 00:26:24,940", + "created": 1610580384.9408338, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 356.6453456878662, + "msecs": 940.8338069915771, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.372724533081, + "relativeCreated": 12933.32552909851, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187666,26 +187613,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.3567274, + "asctime": "2021-01-14 00:26:24,940", + "created": 1610580384.9409761, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 356.72736167907715, + "msecs": 940.9761428833008, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.454740524292, + "relativeCreated": 12933.467864990234, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187695,8 +187642,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.356849, + "asctime": "2021-01-14 00:26:24,941", + "created": 1610580384.9411902, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187706,15 +187653,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 356.84895515441895, + "msecs": 941.190242767334, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.576333999634, + "relativeCreated": 12933.681964874268, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187724,8 +187671,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:42,356", - "created": 1610361462.356951, + "asctime": "2021-01-14 00:26:24,941", + "created": 1610580384.9413724, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187735,15 +187682,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 356.9509983062744, + "msecs": 941.3723945617676, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.67837715149, + "relativeCreated": 12933.864116668701, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187753,8 +187700,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.3570454, + "asctime": "2021-01-14 00:26:24,941", + "created": 1610580384.9415417, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187764,15 +187711,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 357.04541206359863, + "msecs": 941.5416717529297, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.772790908813, + "relativeCreated": 12934.033393859863, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187782,8 +187729,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.357139, + "asctime": "2021-01-14 00:26:24,941", + "created": 1610580384.941716, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187793,41 +187740,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 357.13911056518555, + "msecs": 941.7159557342529, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.8664894104, + "relativeCreated": 12934.207677841187, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.3572178, + "asctime": "2021-01-14 00:26:24,941", + "created": 1610580384.9418561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 357.21778869628906, + "msecs": 941.8561458587646, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12920.945167541504, + "relativeCreated": 12934.347867965698, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187836,26 +187783,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.357304, + "asctime": "2021-01-14 00:26:24,942", + "created": 1610580384.9420128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 357.3040962219238, + "msecs": 942.0127868652344, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.031475067139, + "relativeCreated": 12934.504508972168, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187863,26 +187810,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.357399, + "asctime": "2021-01-14 00:26:24,942", + "created": 1610580384.9421816, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 357.39898681640625, + "msecs": 942.1815872192383, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.126365661621, + "relativeCreated": 12934.673309326172, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187890,26 +187837,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.3574805, + "asctime": "2021-01-14 00:26:24,942", + "created": 1610580384.9423277, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 357.480525970459, + "msecs": 942.3277378082275, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.207904815674, + "relativeCreated": 12934.819459915161, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187919,8 +187866,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.3575673, + "asctime": "2021-01-14 00:26:24,942", + "created": 1610580384.942483, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187930,15 +187877,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 357.56731033325195, + "msecs": 942.4829483032227, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.294689178467, + "relativeCreated": 12934.974670410156, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187948,8 +187895,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.3576536, + "asctime": "2021-01-14 00:26:24,942", + "created": 1610580384.9426389, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -187959,15 +187906,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 357.6536178588867, + "msecs": 942.6388740539551, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.380996704102, + "relativeCreated": 12935.130596160889, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -187976,26 +187923,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.357736, + "asctime": "2021-01-14 00:26:24,942", + "created": 1610580384.9427874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 357.73611068725586, + "msecs": 942.7874088287354, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.46348953247, + "relativeCreated": 12935.279130935669, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188004,26 +187951,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.3578138, + "asctime": "2021-01-14 00:26:24,942", + "created": 1610580384.9429274, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 357.81383514404297, + "msecs": 942.927360534668, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.541213989258, + "relativeCreated": 12935.419082641602, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188032,78 +187979,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:42,357", - "created": 1610361462.3578885, + "asctime": "2021-01-14 00:26:24,943", + "created": 1610580384.9430656, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 357.88846015930176, + "msecs": 943.0656433105469, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.615839004517, + "relativeCreated": 12935.55736541748, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.3581612, + "asctime": "2021-01-14 00:26:24,943", + "created": 1610580384.943218, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 358.16121101379395, + "msecs": 943.2179927825928, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12921.888589859009, + "relativeCreated": 12935.709714889526, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.3583415, + "asctime": "2021-01-14 00:26:24,943", + "created": 1610580384.9438825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 358.3414554595947, + "msecs": 943.8824653625488, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.06883430481, + "relativeCreated": 12936.374187469482, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188112,26 +188059,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.3584354, + "asctime": "2021-01-14 00:26:24,944", + "created": 1610580384.944049, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 358.43539237976074, + "msecs": 944.0488815307617, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.162771224976, + "relativeCreated": 12936.540603637695, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188139,26 +188086,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.3585513, + "asctime": "2021-01-14 00:26:24,944", + "created": 1610580384.944255, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 358.5512638092041, + "msecs": 944.2551136016846, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.278642654419, + "relativeCreated": 12936.746835708618, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188166,26 +188113,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.3586361, + "asctime": "2021-01-14 00:26:24,944", + "created": 1610580384.9444075, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 358.63614082336426, + "msecs": 944.4074630737305, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.36351966858, + "relativeCreated": 12936.899185180664, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188193,26 +188140,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.358717, + "asctime": "2021-01-14 00:26:24,944", + "created": 1610580384.9445562, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 358.7169647216797, + "msecs": 944.5562362670898, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.444343566895, + "relativeCreated": 12937.047958374023, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188220,26 +188167,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.358795, + "asctime": "2021-01-14 00:26:24,944", + "created": 1610580384.9446993, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 358.7949275970459, + "msecs": 944.6992874145508, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.52230644226, + "relativeCreated": 12937.191009521484, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188249,8 +188196,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.3588853, + "asctime": "2021-01-14 00:26:24,944", + "created": 1610580384.9448621, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188260,15 +188207,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 358.8852882385254, + "msecs": 944.8621273040771, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.61266708374, + "relativeCreated": 12937.35384941101, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188278,8 +188225,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:42,358", - "created": 1610361462.3589737, + "asctime": "2021-01-14 00:26:24,945", + "created": 1610580384.945021, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188289,15 +188236,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 358.97374153137207, + "msecs": 945.0209140777588, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.701120376587, + "relativeCreated": 12937.512636184692, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188307,8 +188254,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3590603, + "asctime": "2021-01-14 00:26:24,945", + "created": 1610580384.9451976, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188318,15 +188265,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 359.06028747558594, + "msecs": 945.197582244873, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.7876663208, + "relativeCreated": 12937.689304351807, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188336,8 +188283,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3591456, + "asctime": "2021-01-14 00:26:24,945", + "created": 1610580384.9453528, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188347,41 +188294,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 359.1456413269043, + "msecs": 945.3527927398682, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.87302017212, + "relativeCreated": 12937.844514846802, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3592281, + "asctime": "2021-01-14 00:26:24,945", + "created": 1610580384.9454894, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 359.22813415527344, + "msecs": 945.4894065856934, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12922.955513000488, + "relativeCreated": 12937.981128692627, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188390,26 +188337,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3593192, + "asctime": "2021-01-14 00:26:24,945", + "created": 1610580384.9456506, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 359.31921005249023, + "msecs": 945.650577545166, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.046588897705, + "relativeCreated": 12938.1422996521, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188417,26 +188364,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3594127, + "asctime": "2021-01-14 00:26:24,945", + "created": 1610580384.9458234, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 359.41267013549805, + "msecs": 945.8234310150146, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.140048980713, + "relativeCreated": 12938.315153121948, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188444,26 +188391,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3594944, + "asctime": "2021-01-14 00:26:24,945", + "created": 1610580384.9459715, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 359.4944477081299, + "msecs": 945.9714889526367, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.221826553345, + "relativeCreated": 12938.46321105957, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188473,8 +188420,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3595772, + "asctime": "2021-01-14 00:26:24,946", + "created": 1610580384.946119, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188484,15 +188431,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 359.5771789550781, + "msecs": 946.1190700531006, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.304557800293, + "relativeCreated": 12938.610792160034, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188502,8 +188449,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3596618, + "asctime": "2021-01-14 00:26:24,946", + "created": 1610580384.9462712, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188513,15 +188460,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 359.6618175506592, + "msecs": 946.2711811065674, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.389196395874, + "relativeCreated": 12938.762903213501, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188530,26 +188477,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3597498, + "asctime": "2021-01-14 00:26:24,946", + "created": 1610580384.9464276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 359.74979400634766, + "msecs": 946.427583694458, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.477172851562, + "relativeCreated": 12938.919305801392, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188558,26 +188505,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3598285, + "asctime": "2021-01-14 00:26:24,946", + "created": 1610580384.9465675, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 359.8284721374512, + "msecs": 946.5675354003906, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.555850982666, + "relativeCreated": 12939.059257507324, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188586,71 +188533,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3599045, + "asctime": "2021-01-14 00:26:24,946", + "created": 1610580384.9467049, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 359.90452766418457, + "msecs": 946.7048645019531, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.6319065094, + "relativeCreated": 12939.196586608887, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,359", - "created": 1610361462.3599834, + "asctime": "2021-01-14 00:26:24,946", + "created": 1610580384.946844, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 359.9834442138672, + "msecs": 946.8441009521484, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.710823059082, + "relativeCreated": 12939.335823059082, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 360.07022857666016, + "msecs": 946.9757080078125, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.797607421875, + "relativeCreated": 12939.467430114746, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 8.678436279296875e-05 + "time_consumption": 0.0001316070556640625 }, { "args": [], - "asctime": "2021-01-11 11:37:42,704", - "created": 1610361462.7043443, + "asctime": "2021-01-14 00:26:25,292", + "created": 1610580385.292128, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -188665,8 +188612,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:42,360", - "created": 1610361462.3602376, + "asctime": "2021-01-14 00:26:24,947", + "created": 1610580384.9472733, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188676,23 +188623,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 360.23759841918945, + "msecs": 947.2732543945312, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12923.964977264404, + "relativeCreated": 12939.764976501465, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:42,360", - "created": 1610361462.3603244, + "asctime": "2021-01-14 00:26:24,947", + "created": 1610580384.9474154, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188702,41 +188649,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 360.3243827819824, + "msecs": 947.4153518676758, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12924.051761627197, + "relativeCreated": 12939.90707397461, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,360", - "created": 1610361462.3604088, + "asctime": "2021-01-14 00:26:24,947", + "created": 1610580384.947578, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 360.4087829589844, + "msecs": 947.577953338623, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12924.1361618042, + "relativeCreated": 12940.069675445557, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188747,34 +188694,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,360", - "created": 1610361462.3605611, + "asctime": "2021-01-14 00:26:24,947", + "created": 1610580384.9478343, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 360.5611324310303, + "msecs": 947.8342533111572, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12924.288511276245, + "relativeCreated": 12940.32597541809, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,360", - "created": 1610361462.360888, + "asctime": "2021-01-14 00:26:24,948", + "created": 1610580384.9484465, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188784,23 +188731,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 360.8880043029785, + "msecs": 948.44651222229, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12924.615383148193, + "relativeCreated": 12940.938234329224, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:42,360", - "created": 1610361462.3609807, + "asctime": "2021-01-14 00:26:24,948", + "created": 1610580384.9486113, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188810,41 +188757,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 360.980749130249, + "msecs": 948.6112594604492, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12924.708127975464, + "relativeCreated": 12941.102981567383, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:42,361", - "created": 1610361462.3610637, + "asctime": "2021-01-14 00:26:24,948", + "created": 1610580384.9487586, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 361.06371879577637, + "msecs": 948.758602142334, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12924.791097640991, + "relativeCreated": 12941.250324249268, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -188852,8 +188799,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,361", - "created": 1610361462.36132, + "asctime": "2021-01-14 00:26:24,949", + "created": 1610580384.9490793, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188863,15 +188810,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 361.32001876831055, + "msecs": 949.0792751312256, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12925.047397613525, + "relativeCreated": 12941.57099723816, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -188879,8 +188826,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,369", - "created": 1610361462.3695726, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9573045, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -188890,15 +188837,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 369.57263946533203, + "msecs": 957.3044776916504, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.300018310547, + "relativeCreated": 12949.796199798584, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -188906,8 +188853,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,369", - "created": 1610361462.3697505, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9574285, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -188917,15 +188864,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 369.7504997253418, + "msecs": 957.4284553527832, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.477878570557, + "relativeCreated": 12949.920177459717, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -188934,8 +188881,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,369", - "created": 1610361462.369834, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9574811, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -188945,15 +188892,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 369.83394622802734, + "msecs": 957.4811458587646, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.561325073242, + "relativeCreated": 12949.972867965698, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -188961,8 +188908,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,369", - "created": 1610361462.369933, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9575431, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -188972,15 +188919,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 369.9328899383545, + "msecs": 957.543134689331, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.66026878357, + "relativeCreated": 12950.034856796265, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -188989,8 +188936,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.3700013, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9575996, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189000,15 +188947,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 370.00131607055664, + "msecs": 957.5996398925781, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.728694915771, + "relativeCreated": 12950.091361999512, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189016,8 +188963,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.370101, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.957662, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189027,15 +188974,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 370.1009750366211, + "msecs": 957.6621055603027, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.828353881836, + "relativeCreated": 12950.153827667236, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189044,8 +188991,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.370173, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9577065, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189055,15 +189002,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 370.17297744750977, + "msecs": 957.7064514160156, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.900356292725, + "relativeCreated": 12950.19817352295, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189071,8 +189018,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.3702638, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.957762, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189082,15 +189029,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 370.26381492614746, + "msecs": 957.7620029449463, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12933.991193771362, + "relativeCreated": 12950.25372505188, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189099,8 +189046,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.3703284, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.957802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189110,15 +189057,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 370.328426361084, + "msecs": 957.8020572662354, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12934.055805206299, + "relativeCreated": 12950.293779373169, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189126,8 +189073,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.3704205, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9578552, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189137,15 +189084,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 370.4204559326172, + "msecs": 957.855224609375, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12934.147834777832, + "relativeCreated": 12950.346946716309, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189154,8 +189101,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.3704944, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.9578955, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189165,15 +189112,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 370.4943656921387, + "msecs": 957.8955173492432, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12934.221744537354, + "relativeCreated": 12950.387239456177, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189181,8 +189128,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:42,370", - "created": 1610361462.3706167, + "asctime": "2021-01-14 00:26:24,957", + "created": 1610580384.95798, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -189192,15 +189139,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 370.6166744232178, + "msecs": 957.9799175262451, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12934.344053268433, + "relativeCreated": 12950.471639633179, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189208,8 +189155,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:42,371", - "created": 1610361462.3716059, + "asctime": "2021-01-14 00:26:24,958", + "created": 1610580384.9589388, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -189219,15 +189166,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 371.60587310791016, + "msecs": 958.9388370513916, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12935.333251953125, + "relativeCreated": 12951.430559158325, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189235,8 +189182,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,371", - "created": 1610361462.371779, + "asctime": "2021-01-14 00:26:24,959", + "created": 1610580384.9590862, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189246,15 +189193,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 371.7789649963379, + "msecs": 959.0861797332764, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12935.506343841553, + "relativeCreated": 12951.57790184021, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189263,8 +189210,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,371", - "created": 1610361462.3718643, + "asctime": "2021-01-14 00:26:24,959", + "created": 1610580384.9591422, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189274,15 +189221,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 371.86431884765625, + "msecs": 959.1422080993652, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12935.591697692871, + "relativeCreated": 12951.633930206299, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189290,8 +189237,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:42,371", - "created": 1610361462.3719883, + "asctime": "2021-01-14 00:26:24,959", + "created": 1610580384.9592404, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189301,15 +189248,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 371.98829650878906, + "msecs": 959.2404365539551, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12935.715675354004, + "relativeCreated": 12951.732158660889, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189320,26 +189267,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,372", - "created": 1610361462.3721814, + "asctime": "2021-01-14 00:26:24,959", + "created": 1610580384.9593897, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 372.1814155578613, + "msecs": 959.3896865844727, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12935.908794403076, + "relativeCreated": 12951.881408691406, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189347,26 +189294,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:42,372", - "created": 1610361462.3722725, + "asctime": "2021-01-14 00:26:24,959", + "created": 1610580384.9594548, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 372.2724914550781, + "msecs": 959.4547748565674, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12935.999870300293, + "relativeCreated": 12951.946496963501, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189377,26 +189324,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,372", - "created": 1610361462.3724122, + "asctime": "2021-01-14 00:26:24,959", + "created": 1610580384.9595408, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 372.41220474243164, + "msecs": 959.540843963623, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12936.139583587646, + "relativeCreated": 12952.032566070557, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -189404,8 +189351,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,372", - "created": 1610361462.372843, + "asctime": "2021-01-14 00:26:24,959", + "created": 1610580384.9598317, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -189415,15 +189362,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 372.84302711486816, + "msecs": 959.831714630127, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12936.570405960083, + "relativeCreated": 12952.32343673706, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189431,8 +189378,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.381043, + "asctime": "2021-01-14 00:26:24,967", + "created": 1610580384.9679744, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -189442,15 +189389,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 381.0429573059082, + "msecs": 967.9744243621826, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12944.770336151123, + "relativeCreated": 12960.466146469116, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189458,8 +189405,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3812008, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.9681244, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189469,15 +189416,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 381.20079040527344, + "msecs": 968.1243896484375, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12944.928169250488, + "relativeCreated": 12960.616111755371, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189486,8 +189433,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3812828, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.9681873, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189497,15 +189444,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 381.2828063964844, + "msecs": 968.1873321533203, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.0101852417, + "relativeCreated": 12960.679054260254, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189513,8 +189460,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3813822, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.968284, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189524,15 +189471,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 381.3822269439697, + "msecs": 968.2838916778564, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.109605789185, + "relativeCreated": 12960.77561378479, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189541,8 +189488,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3814514, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.9683645, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189552,15 +189499,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 381.4513683319092, + "msecs": 968.3644771575928, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.178747177124, + "relativeCreated": 12960.856199264526, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189568,8 +189515,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.381603, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.9684875, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189579,15 +189526,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 381.6030025482178, + "msecs": 968.4875011444092, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.330381393433, + "relativeCreated": 12960.979223251343, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189596,8 +189543,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3816886, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.968609, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189607,15 +189554,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 381.68859481811523, + "msecs": 968.609094619751, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.41597366333, + "relativeCreated": 12961.100816726685, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189623,8 +189570,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3817804, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.9687417, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189634,15 +189581,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 381.78038597106934, + "msecs": 968.7416553497314, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.507764816284, + "relativeCreated": 12961.233377456665, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189651,8 +189598,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3818483, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.9688463, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189662,15 +189609,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 381.8483352661133, + "msecs": 968.846321105957, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.575714111328, + "relativeCreated": 12961.33804321289, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189678,8 +189625,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,381", - "created": 1610361462.3819346, + "asctime": "2021-01-14 00:26:24,968", + "created": 1610580384.9689574, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189689,15 +189636,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 381.93464279174805, + "msecs": 968.9574241638184, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.662021636963, + "relativeCreated": 12961.449146270752, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189706,8 +189653,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,382", - "created": 1610361462.3820043, + "asctime": "2021-01-14 00:26:24,969", + "created": 1610580384.9690342, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189717,15 +189664,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 382.0042610168457, + "msecs": 969.0341949462891, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.73163986206, + "relativeCreated": 12961.525917053223, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189733,8 +189680,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:42,382", - "created": 1610361462.3821247, + "asctime": "2021-01-14 00:26:24,969", + "created": 1610580384.969241, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -189744,15 +189691,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 382.124662399292, + "msecs": 969.2409038543701, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12945.852041244507, + "relativeCreated": 12961.732625961304, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189760,8 +189707,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:42,383", - "created": 1610361462.383113, + "asctime": "2021-01-14 00:26:24,970", + "created": 1610580384.970231, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -189771,15 +189718,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 383.11290740966797, + "msecs": 970.2310562133789, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12946.840286254883, + "relativeCreated": 12962.722778320312, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189787,8 +189734,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,383", - "created": 1610361462.3832865, + "asctime": "2021-01-14 00:26:24,970", + "created": 1610580384.9704227, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189798,15 +189745,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 383.2864761352539, + "msecs": 970.4227447509766, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12947.013854980469, + "relativeCreated": 12962.91446685791, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189815,8 +189762,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,383", - "created": 1610361462.38337, + "asctime": "2021-01-14 00:26:24,970", + "created": 1610580384.9705665, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189826,15 +189773,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 383.36992263793945, + "msecs": 970.5665111541748, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12947.097301483154, + "relativeCreated": 12963.058233261108, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189842,8 +189789,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:42,383", - "created": 1610361462.3834941, + "asctime": "2021-01-14 00:26:24,970", + "created": 1610580384.9708006, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -189853,15 +189800,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 383.49413871765137, + "msecs": 970.8006381988525, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12947.221517562866, + "relativeCreated": 12963.292360305786, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189872,26 +189819,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:42,383", - "created": 1610361462.383692, + "asctime": "2021-01-14 00:26:24,971", + "created": 1610580384.9711256, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 383.69202613830566, + "msecs": 971.125602722168, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12947.41940498352, + "relativeCreated": 12963.617324829102, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -189899,45 +189846,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:42,383", - "created": 1610361462.3837996, + "asctime": "2021-01-14 00:26:24,971", + "created": 1610580384.971301, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 383.79955291748047, + "msecs": 971.3010787963867, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 12947.526931762695, + "relativeCreated": 12963.79280090332, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" } ], - "msecs": 704.3442726135254, + "msecs": 292.1280860900879, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13268.07165145874, + "relativeCreated": 13284.619808197021, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3205447196960449 + "time_consumption": 0.32082700729370117 }, { "args": [], - "asctime": "2021-01-11 11:37:42,705", - "created": 1610361462.7051005, + "asctime": "2021-01-14 00:26:25,292", + "created": 1610580385.2929316, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -189955,8 +189902,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:42,704", - "created": 1610361462.7049134, + "asctime": "2021-01-14 00:26:25,292", + "created": 1610580385.2927396, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -189966,34 +189913,34 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 704.9133777618408, + "msecs": 292.7396297454834, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13268.640756607056, + "relativeCreated": 13285.231351852417, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 705.1005363464355, + "msecs": 292.93155670166016, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13268.82791519165, + "relativeCreated": 13285.423278808594, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00018715858459472656 + "time_consumption": 0.0001919269561767578 }, { "args": [], - "asctime": "2021-01-11 11:37:42,906", - "created": 1610361462.90671, + "asctime": "2021-01-14 00:26:25,494", + "created": 1610580385.4946458, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -190012,26 +189959,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:42,705", - "created": 1610361462.7054746, + "asctime": "2021-01-14 00:26:25,293", + "created": 1610580385.2933748, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 705.4746150970459, + "msecs": 293.37477684020996, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13269.20199394226, + "relativeCreated": 13285.866498947144, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -190039,8 +189986,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:42,706", - "created": 1610361462.70633, + "asctime": "2021-01-14 00:26:25,294", + "created": 1610580385.2942336, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190050,15 +189997,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 706.3300609588623, + "msecs": 294.2335605621338, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13270.057439804077, + "relativeCreated": 13286.725282669067, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190066,8 +190013,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:42,714", - "created": 1610361462.7148147, + "asctime": "2021-01-14 00:26:25,302", + "created": 1610580385.3027527, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190077,15 +190024,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 714.8146629333496, + "msecs": 302.7527332305908, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13278.542041778564, + "relativeCreated": 13295.244455337524, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190093,8 +190040,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,715", - "created": 1610361462.715096, + "asctime": "2021-01-14 00:26:25,303", + "created": 1610580385.3030765, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190104,15 +190051,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 715.0959968566895, + "msecs": 303.07650566101074, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13278.823375701904, + "relativeCreated": 13295.568227767944, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190121,8 +190068,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,715", - "created": 1610361462.715257, + "asctime": "2021-01-14 00:26:25,303", + "created": 1610580385.3032424, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190132,15 +190079,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 715.256929397583, + "msecs": 303.24244499206543, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13278.984308242798, + "relativeCreated": 13295.734167098999, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190148,8 +190095,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,715", - "created": 1610361462.715459, + "asctime": "2021-01-14 00:26:25,303", + "created": 1610580385.3034434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190159,15 +190106,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 715.4591083526611, + "msecs": 303.44343185424805, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13279.186487197876, + "relativeCreated": 13295.935153961182, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190176,8 +190123,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,715", - "created": 1610361462.715599, + "asctime": "2021-01-14 00:26:25,303", + "created": 1610580385.3035846, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190187,15 +190134,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 715.5990600585938, + "msecs": 303.5845756530762, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13279.326438903809, + "relativeCreated": 13296.07629776001, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190203,8 +190150,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,715", - "created": 1610361462.7158265, + "asctime": "2021-01-14 00:26:25,303", + "created": 1610580385.3037834, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190214,15 +190161,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 715.8265113830566, + "msecs": 303.7834167480469, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13279.553890228271, + "relativeCreated": 13296.27513885498, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190231,8 +190178,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,715", - "created": 1610361462.7159872, + "asctime": "2021-01-14 00:26:25,303", + "created": 1610580385.3039153, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190242,15 +190189,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 715.9872055053711, + "msecs": 303.91526222229004, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13279.714584350586, + "relativeCreated": 13296.406984329224, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190258,8 +190205,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,716", - "created": 1610361462.7162237, + "asctime": "2021-01-14 00:26:25,304", + "created": 1610580385.3041327, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190269,15 +190216,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 716.2237167358398, + "msecs": 304.13269996643066, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13279.951095581055, + "relativeCreated": 13296.624422073364, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190286,8 +190233,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,716", - "created": 1610361462.7163978, + "asctime": "2021-01-14 00:26:25,304", + "created": 1610580385.3042672, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190297,15 +190244,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 716.397762298584, + "msecs": 304.26716804504395, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13280.125141143799, + "relativeCreated": 13296.758890151978, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190313,8 +190260,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,716", - "created": 1610361462.7166092, + "asctime": "2021-01-14 00:26:25,304", + "created": 1610580385.3044395, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190324,15 +190271,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 716.6092395782471, + "msecs": 304.4395446777344, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13280.336618423462, + "relativeCreated": 13296.931266784668, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190341,8 +190288,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,716", - "created": 1610361462.7167888, + "asctime": "2021-01-14 00:26:25,304", + "created": 1610580385.3045692, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190352,15 +190299,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 716.7887687683105, + "msecs": 304.5692443847656, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13280.516147613525, + "relativeCreated": 13297.0609664917, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190368,8 +190315,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:42,717", - "created": 1610361462.7170217, + "asctime": "2021-01-14 00:26:25,304", + "created": 1610580385.304822, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190379,15 +190326,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 717.0217037200928, + "msecs": 304.8219680786133, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13280.749082565308, + "relativeCreated": 13297.313690185547, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190395,8 +190342,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:42,718", - "created": 1610361462.7180643, + "asctime": "2021-01-14 00:26:25,305", + "created": 1610580385.3057258, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190406,15 +190353,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 718.0643081665039, + "msecs": 305.7258129119873, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13281.791687011719, + "relativeCreated": 13298.21753501892, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190422,8 +190369,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,718", - "created": 1610361462.7182949, + "asctime": "2021-01-14 00:26:25,305", + "created": 1610580385.305909, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190433,15 +190380,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 718.2948589324951, + "msecs": 305.9089183807373, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13282.02223777771, + "relativeCreated": 13298.40064048767, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190450,8 +190397,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,718", - "created": 1610361462.718445, + "asctime": "2021-01-14 00:26:25,306", + "created": 1610580385.3060446, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190461,15 +190408,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 718.4450626373291, + "msecs": 306.0445785522461, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13282.172441482544, + "relativeCreated": 13298.53630065918, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190477,8 +190424,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:42,718", - "created": 1610361462.7186723, + "asctime": "2021-01-14 00:26:25,306", + "created": 1610580385.3062813, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190488,15 +190435,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 718.6722755432129, + "msecs": 306.28132820129395, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13282.399654388428, + "relativeCreated": 13298.773050308228, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190507,26 +190454,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:42,719", - "created": 1610361462.719001, + "asctime": "2021-01-14 00:26:25,306", + "created": 1610580385.3066459, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 719.001054763794, + "msecs": 306.64587020874023, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13282.728433609009, + "relativeCreated": 13299.137592315674, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190534,26 +190481,26 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:42,719", - "created": 1610361462.7191615, + "asctime": "2021-01-14 00:26:25,306", + "created": 1610580385.306827, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 719.1615104675293, + "msecs": 306.8270683288574, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13282.888889312744, + "relativeCreated": 13299.318790435791, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190564,26 +190511,26 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:42,719", - "created": 1610361462.7193742, + "asctime": "2021-01-14 00:26:25,307", + "created": 1610580385.3070745, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 719.3741798400879, + "msecs": 307.07454681396484, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13283.101558685303, + "relativeCreated": 13299.566268920898, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -190591,8 +190538,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:42,720", - "created": 1610361462.7200687, + "asctime": "2021-01-14 00:26:25,307", + "created": 1610580385.3078523, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190602,15 +190549,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 720.0686931610107, + "msecs": 307.85226821899414, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13283.796072006226, + "relativeCreated": 13300.343990325928, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190618,8 +190565,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:42,728", - "created": 1610361462.7285066, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.3162405, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190629,15 +190576,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 728.5065650939941, + "msecs": 316.2405490875244, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13292.233943939209, + "relativeCreated": 13308.732271194458, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190645,8 +190592,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,728", - "created": 1610361462.7288144, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.3164167, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190656,15 +190603,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 728.8143634796143, + "msecs": 316.41674041748047, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13292.54174232483, + "relativeCreated": 13308.908462524414, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190673,8 +190620,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,728", - "created": 1610361462.7289882, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.316507, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190684,15 +190631,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 728.9881706237793, + "msecs": 316.50710105895996, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13292.715549468994, + "relativeCreated": 13308.998823165894, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190700,8 +190647,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,729", - "created": 1610361462.729212, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.3166323, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190711,15 +190658,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 729.2120456695557, + "msecs": 316.6322708129883, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13292.93942451477, + "relativeCreated": 13309.123992919922, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190728,8 +190675,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,729", - "created": 1610361462.7293563, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.3167117, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190739,15 +190686,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 729.3562889099121, + "msecs": 316.7116641998291, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13293.083667755127, + "relativeCreated": 13309.203386306763, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190755,8 +190702,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,729", - "created": 1610361462.7295587, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.3168206, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190766,15 +190713,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 729.5587062835693, + "msecs": 316.8206214904785, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13293.286085128784, + "relativeCreated": 13309.312343597412, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190783,8 +190730,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,729", - "created": 1610361462.7297068, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.3168914, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190794,15 +190741,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 729.7067642211914, + "msecs": 316.8914318084717, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13293.434143066406, + "relativeCreated": 13309.383153915405, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190810,8 +190757,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,729", - "created": 1610361462.7298963, + "asctime": "2021-01-14 00:26:25,316", + "created": 1610580385.3169968, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190821,15 +190768,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 729.8963069915771, + "msecs": 316.99681282043457, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13293.623685836792, + "relativeCreated": 13309.488534927368, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190838,8 +190785,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,730", - "created": 1610361462.7300284, + "asctime": "2021-01-14 00:26:25,317", + "created": 1610580385.3170664, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190849,15 +190796,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 730.0283908843994, + "msecs": 317.0664310455322, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13293.755769729614, + "relativeCreated": 13309.558153152466, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190865,8 +190812,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,730", - "created": 1610361462.7302117, + "asctime": "2021-01-14 00:26:25,317", + "created": 1610580385.317169, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190876,15 +190823,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 730.2117347717285, + "msecs": 317.1689510345459, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13293.939113616943, + "relativeCreated": 13309.66067314148, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190893,8 +190840,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,730", - "created": 1610361462.7303448, + "asctime": "2021-01-14 00:26:25,317", + "created": 1610580385.3172388, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190904,15 +190851,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 730.3447723388672, + "msecs": 317.23880767822266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13294.072151184082, + "relativeCreated": 13309.730529785156, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190920,8 +190867,8 @@ "comm-server:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:42,730", - "created": 1610361462.7305756, + "asctime": "2021-01-14 00:26:25,317", + "created": 1610580385.3173811, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190931,15 +190878,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 730.5755615234375, + "msecs": 317.3811435699463, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13294.302940368652, + "relativeCreated": 13309.87286567688, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190947,8 +190894,8 @@ "comm-client:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:42,731", - "created": 1610361462.7315917, + "asctime": "2021-01-14 00:26:25,318", + "created": 1610580385.3182178, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -190958,15 +190905,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 731.5917015075684, + "msecs": 318.2177543640137, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13295.319080352783, + "relativeCreated": 13310.709476470947, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -190974,8 +190921,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,731", - "created": 1610361462.731924, + "asctime": "2021-01-14 00:26:25,318", + "created": 1610580385.318353, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -190985,15 +190932,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 731.9240570068359, + "msecs": 318.35293769836426, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13295.65143585205, + "relativeCreated": 13310.844659805298, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -191002,8 +190949,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,732", - "created": 1610361462.7320976, + "asctime": "2021-01-14 00:26:25,318", + "created": 1610580385.3184547, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191013,15 +190960,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 732.0976257324219, + "msecs": 318.4547424316406, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13295.825004577637, + "relativeCreated": 13310.946464538574, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -191029,8 +190976,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" ], - "asctime": "2021-01-11 11:37:42,732", - "created": 1610361462.7323537, + "asctime": "2021-01-14 00:26:25,318", + "created": 1610580385.3185897, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191040,15 +190987,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", "module": "stp", - "msecs": 732.353687286377, + "msecs": 318.5896873474121, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13296.081066131592, + "relativeCreated": 13311.081409454346, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -191059,74 +191006,74 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:42,732", - "created": 1610361462.732792, + "asctime": "2021-01-14 00:26:25,318", + "created": 1610580385.3188257, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 732.7919006347656, + "msecs": 318.82572174072266, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13296.51927947998, + "relativeCreated": 13311.317443847656, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,732", - "created": 1610361462.732935, + "asctime": "2021-01-14 00:26:25,318", + "created": 1610580385.3189516, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 732.9349517822266, + "msecs": 318.9516067504883, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13296.662330627441, + "relativeCreated": 13311.443328857422, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" } ], - "msecs": 906.7099094390869, + "msecs": 494.6458339691162, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13470.437288284302, + "relativeCreated": 13487.13755607605, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.17377495765686035 + "time_consumption": 0.17569422721862793 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:42,907", - "created": 1610361462.9075692, + "asctime": "2021-01-14 00:26:25,495", + "created": 1610580385.495543, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -191143,8 +191090,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:42,907", - "created": 1610361462.9072185, + "asctime": "2021-01-14 00:26:25,495", + "created": 1610580385.4951935, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -191154,15 +191101,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 907.2184562683105, + "msecs": 495.1934814453125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13470.945835113525, + "relativeCreated": 13487.685203552246, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -191171,8 +191118,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:42,907", - "created": 1610361462.9074073, + "asctime": "2021-01-14 00:26:25,495", + "created": 1610580385.4953797, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -191182,37 +191129,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 907.407283782959, + "msecs": 495.3796863555908, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13471.134662628174, + "relativeCreated": 13487.871408462524, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 907.569169998169, + "msecs": 495.5430030822754, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13471.296548843384, + "relativeCreated": 13488.034725189209, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016188621520996094 + "time_consumption": 0.0001633167266845703 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:42,908", - "created": 1610361462.9081087, + "asctime": "2021-01-14 00:26:25,496", + "created": 1610580385.4961467, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -191229,8 +191176,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:42,907", - "created": 1610361462.90782, + "asctime": "2021-01-14 00:26:25,495", + "created": 1610580385.4958305, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -191240,15 +191187,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 907.8199863433838, + "msecs": 495.8305358886719, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13471.547365188599, + "relativeCreated": 13488.322257995605, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -191257,8 +191204,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:42,907", - "created": 1610361462.9079657, + "asctime": "2021-01-14 00:26:25,495", + "created": 1610580385.4959846, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -191268,34 +191215,34 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 907.9656600952148, + "msecs": 495.9845542907715, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13471.69303894043, + "relativeCreated": 13488.476276397705, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 908.1087112426758, + "msecs": 496.14667892456055, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13471.83609008789, + "relativeCreated": 13488.638401031494, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001430511474609375 + "time_consumption": 0.0001621246337890625 }, { "args": [], - "asctime": "2021-01-11 11:37:42,908", - "created": 1610361462.9085178, + "asctime": "2021-01-14 00:26:25,496", + "created": 1610580385.4965723, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -191314,8 +191261,8 @@ "0", "'__callback_error__'" ], - "asctime": "2021-01-11 11:37:42,908", - "created": 1610361462.908372, + "asctime": "2021-01-14 00:26:25,496", + "created": 1610580385.4964163, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -191325,34 +191272,34 @@ "lineno": 168, "message": "prot-server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", "module": "__init__", - "msecs": 908.3719253540039, + "msecs": 496.4163303375244, "msg": "%s Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13472.099304199219, + "relativeCreated": 13488.908052444458, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 908.5178375244141, + "msecs": 496.57225608825684, "msg": "Overwriting existing Callback using one with faulty (too many) return values", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13472.245216369629, + "relativeCreated": 13489.06397819519, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014591217041015625 + "time_consumption": 0.00015592575073242188 }, { "args": [], - "asctime": "2021-01-11 11:37:43,110", - "created": 1610361463.1100278, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6980278, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -191371,26 +191318,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:42,908", - "created": 1610361462.9088721, + "asctime": "2021-01-14 00:26:25,496", + "created": 1610580385.4968963, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 908.872127532959, + "msecs": 496.89626693725586, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13472.599506378174, + "relativeCreated": 13489.38798904419, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -191398,8 +191345,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:42,909", - "created": 1610361462.9097226, + "asctime": "2021-01-14 00:26:25,498", + "created": 1610580385.498609, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -191409,15 +191356,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 909.7225666046143, + "msecs": 498.6090660095215, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13473.44994544983, + "relativeCreated": 13491.100788116455, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191425,8 +191372,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:42,918", - "created": 1610361462.9181964, + "asctime": "2021-01-14 00:26:25,507", + "created": 1610580385.5071044, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -191436,15 +191383,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 918.196439743042, + "msecs": 507.10439682006836, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13481.923818588257, + "relativeCreated": 13499.596118927002, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191452,8 +191399,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,918", - "created": 1610361462.9184213, + "asctime": "2021-01-14 00:26:25,507", + "created": 1610580385.5074263, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191463,15 +191410,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 918.4212684631348, + "msecs": 507.42626190185547, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13482.14864730835, + "relativeCreated": 13499.917984008789, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191480,8 +191427,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,918", - "created": 1610361462.9185393, + "asctime": "2021-01-14 00:26:25,507", + "created": 1610580385.5075898, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191491,15 +191438,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 918.53928565979, + "msecs": 507.58981704711914, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13482.266664505005, + "relativeCreated": 13500.081539154053, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191507,8 +191454,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,918", - "created": 1610361462.9186933, + "asctime": "2021-01-14 00:26:25,507", + "created": 1610580385.5077903, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191518,15 +191465,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 918.6933040618896, + "msecs": 507.79032707214355, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13482.420682907104, + "relativeCreated": 13500.282049179077, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191535,8 +191482,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,918", - "created": 1610361462.9187973, + "asctime": "2021-01-14 00:26:25,507", + "created": 1610580385.5079303, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191546,15 +191493,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 918.7972545623779, + "msecs": 507.9302787780762, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13482.524633407593, + "relativeCreated": 13500.42200088501, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191562,8 +191509,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,918", - "created": 1610361462.9189448, + "asctime": "2021-01-14 00:26:25,508", + "created": 1610580385.5081432, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191573,15 +191520,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 918.9448356628418, + "msecs": 508.14318656921387, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13482.672214508057, + "relativeCreated": 13500.634908676147, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191590,8 +191537,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,919", - "created": 1610361462.9190433, + "asctime": "2021-01-14 00:26:25,508", + "created": 1610580385.5082777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191601,15 +191548,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 919.0433025360107, + "msecs": 508.27765464782715, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13482.770681381226, + "relativeCreated": 13500.76937675476, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191617,8 +191564,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,919", - "created": 1610361462.91919, + "asctime": "2021-01-14 00:26:25,508", + "created": 1610580385.508482, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191628,15 +191575,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 919.1899299621582, + "msecs": 508.4819793701172, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13482.917308807373, + "relativeCreated": 13500.97370147705, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191645,8 +191592,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,919", - "created": 1610361462.919287, + "asctime": "2021-01-14 00:26:25,508", + "created": 1610580385.5086193, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191656,15 +191603,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 919.2869663238525, + "msecs": 508.6193084716797, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13483.014345169067, + "relativeCreated": 13501.111030578613, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191672,8 +191619,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,919", - "created": 1610361462.9194186, + "asctime": "2021-01-14 00:26:25,508", + "created": 1610580385.5087912, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191683,15 +191630,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 919.4185733795166, + "msecs": 508.7912082672119, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13483.145952224731, + "relativeCreated": 13501.282930374146, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191700,8 +191647,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,919", - "created": 1610361462.9195266, + "asctime": "2021-01-14 00:26:25,508", + "created": 1610580385.5089324, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191711,15 +191658,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 919.5265769958496, + "msecs": 508.93235206604004, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13483.253955841064, + "relativeCreated": 13501.424074172974, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191727,8 +191674,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:42,919", - "created": 1610361462.9196916, + "asctime": "2021-01-14 00:26:25,509", + "created": 1610580385.5091953, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -191738,15 +191685,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 919.6915626525879, + "msecs": 509.19532775878906, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13483.418941497803, + "relativeCreated": 13501.687049865723, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191754,8 +191701,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:42,920", - "created": 1610361462.9206305, + "asctime": "2021-01-14 00:26:25,510", + "created": 1610580385.510138, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -191765,15 +191712,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 920.6304550170898, + "msecs": 510.13803482055664, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13484.357833862305, + "relativeCreated": 13502.62975692749, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191781,8 +191728,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,920", - "created": 1610361462.920888, + "asctime": "2021-01-14 00:26:25,510", + "created": 1610580385.5103889, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191792,15 +191739,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 920.8879470825195, + "msecs": 510.3888511657715, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13484.615325927734, + "relativeCreated": 13502.880573272705, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191809,8 +191756,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,921", - "created": 1610361462.9210112, + "asctime": "2021-01-14 00:26:25,510", + "created": 1610580385.5105557, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191820,15 +191767,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 921.011209487915, + "msecs": 510.5557441711426, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13484.73858833313, + "relativeCreated": 13503.047466278076, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191836,8 +191783,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:42,921", - "created": 1610361462.921194, + "asctime": "2021-01-14 00:26:25,510", + "created": 1610580385.5108213, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -191847,15 +191794,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 921.1940765380859, + "msecs": 510.8213424682617, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13484.9214553833, + "relativeCreated": 13503.313064575195, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191866,26 +191813,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:42,921", - "created": 1610361462.9214666, + "asctime": "2021-01-14 00:26:25,511", + "created": 1610580385.511192, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 921.466588973999, + "msecs": 511.19208335876465, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13485.193967819214, + "relativeCreated": 13503.683805465698, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191893,50 +191840,50 @@ "prot-server:", "__callback_error__" ], - "asctime": "2021-01-11 11:37:42,921", - "created": 1610361462.9216008, + "asctime": "2021-01-14 00:26:25,511", + "created": 1610580385.511376, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback_error__ to process received data", "module": "__init__", - "msecs": 921.6008186340332, + "msecs": 511.37590408325195, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13485.328197479248, + "relativeCreated": 13503.867626190186, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { "args": [], - "asctime": "2021-01-11 11:37:42,921", - "created": 1610361462.9217486, + "asctime": "2021-01-14 00:26:25,511", + "created": 1610580385.511578, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 482, + "lineno": 494, "message": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack (expected 2)\" and it's return values for service: read data request, data_id: 0", "module": "__init__", - "msecs": 921.7486381530762, + "msecs": 511.5780830383301, "msg": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack (expected 2)\" and it's return values for service: read data request, data_id: 0", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13485.476016998291, + "relativeCreated": 13504.069805145264, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191947,26 +191894,26 @@ "status: callback error", "None" ], - "asctime": "2021-01-11 11:37:42,921", - "created": 1610361462.9219115, + "asctime": "2021-01-14 00:26:25,511", + "created": 1610580385.5118058, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 921.9114780426025, + "msecs": 511.80577278137207, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13485.638856887817, + "relativeCreated": 13504.297494888306, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -191974,8 +191921,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-01-11 11:37:42,922", - "created": 1610361462.922666, + "asctime": "2021-01-14 00:26:25,512", + "created": 1610580385.5129418, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -191985,15 +191932,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 922.666072845459, + "msecs": 512.941837310791, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13486.393451690674, + "relativeCreated": 13505.433559417725, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192001,8 +191948,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-01-11 11:37:42,930", - "created": 1610361462.9309528, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.5213366, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -192012,15 +191959,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 930.952787399292, + "msecs": 521.336555480957, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13494.680166244507, + "relativeCreated": 13513.82827758789, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192028,8 +191975,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.931138, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.5214963, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192039,15 +191986,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 931.1380386352539, + "msecs": 521.4962959289551, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13494.865417480469, + "relativeCreated": 13513.988018035889, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192056,8 +192003,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.9312277, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.5215719, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192067,15 +192014,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 931.2276840209961, + "msecs": 521.5718746185303, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13494.955062866211, + "relativeCreated": 13514.063596725464, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192083,8 +192030,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.9313352, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.52166, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192094,15 +192041,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 931.3352108001709, + "msecs": 521.6600894927979, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.062589645386, + "relativeCreated": 13514.151811599731, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192111,8 +192058,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.9314213, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.521722, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192122,15 +192069,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 931.4212799072266, + "msecs": 521.7220783233643, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.148658752441, + "relativeCreated": 13514.213800430298, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192138,8 +192085,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.9315293, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.5218062, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192149,15 +192096,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 931.5292835235596, + "msecs": 521.8062400817871, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.256662368774, + "relativeCreated": 13514.29796218872, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192166,8 +192113,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.9316, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.5218663, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192177,15 +192124,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 931.6000938415527, + "msecs": 521.8663215637207, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.327472686768, + "relativeCreated": 13514.358043670654, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192193,8 +192140,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.931698, + "asctime": "2021-01-14 00:26:25,521", + "created": 1610580385.5219443, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192204,15 +192151,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 931.6980838775635, + "msecs": 521.9442844390869, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.425462722778, + "relativeCreated": 13514.43600654602, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192221,8 +192168,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.931767, + "asctime": "2021-01-14 00:26:25,522", + "created": 1610580385.5220077, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192232,15 +192179,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 931.7669868469238, + "msecs": 522.0077037811279, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.494365692139, + "relativeCreated": 13514.499425888062, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192248,8 +192195,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.9318576, + "asctime": "2021-01-14 00:26:25,522", + "created": 1610580385.5220804, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192259,15 +192206,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 931.8575859069824, + "msecs": 522.0804214477539, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.584964752197, + "relativeCreated": 13514.572143554688, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192276,8 +192223,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:42,931", - "created": 1610361462.9319265, + "asctime": "2021-01-14 00:26:25,522", + "created": 1610580385.5221348, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192287,15 +192234,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 931.9264888763428, + "msecs": 522.1347808837891, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.653867721558, + "relativeCreated": 13514.626502990723, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192303,8 +192250,8 @@ "comm-server:", "(7): 7d a1 a2 87 f3 3a 3e" ], - "asctime": "2021-01-11 11:37:42,932", - "created": 1610361462.9320521, + "asctime": "2021-01-14 00:26:25,522", + "created": 1610580385.5222394, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -192314,15 +192261,15 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d a1 a2 87 f3 3a 3e", "module": "__init__", - "msecs": 932.0521354675293, + "msecs": 522.2394466400146, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13495.779514312744, + "relativeCreated": 13514.731168746948, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192330,8 +192277,8 @@ "comm-client:", "(7): 7d a1 a2 87 f3 3a 3e" ], - "asctime": "2021-01-11 11:37:42,933", - "created": 1610361462.9331965, + "asctime": "2021-01-14 00:26:25,523", + "created": 1610580385.5233371, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -192341,15 +192288,15 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d a1 a2 87 f3 3a 3e", "module": "__init__", - "msecs": 933.1965446472168, + "msecs": 523.3371257781982, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13496.923923492432, + "relativeCreated": 13515.828847885132, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192357,8 +192304,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:42,933", - "created": 1610361462.9334614, + "asctime": "2021-01-14 00:26:25,523", + "created": 1610580385.523513, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192368,15 +192315,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 933.4614276885986, + "msecs": 523.5130786895752, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13497.188806533813, + "relativeCreated": 13516.004800796509, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192385,8 +192332,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:42,933", - "created": 1610361462.9335833, + "asctime": "2021-01-14 00:26:25,523", + "created": 1610580385.523585, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192396,15 +192343,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 933.5832595825195, + "msecs": 523.5850811004639, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13497.310638427734, + "relativeCreated": 13516.076803207397, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192412,8 +192359,8 @@ "STP:", "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3" ], - "asctime": "2021-01-11 11:37:42,933", - "created": 1610361462.933772, + "asctime": "2021-01-14 00:26:25,523", + "created": 1610580385.5236938, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192423,15 +192370,15 @@ "lineno": 148, "message": "STP: message identified - (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3", "module": "stp", - "msecs": 933.772087097168, + "msecs": 523.6937999725342, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13497.499465942383, + "relativeCreated": 13516.185522079468, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -192442,74 +192389,74 @@ "status: callback error", "None" ], - "asctime": "2021-01-11 11:37:42,934", - "created": 1610361462.9340549, + "asctime": "2021-01-14 00:26:25,523", + "created": 1610580385.5238743, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 934.0548515319824, + "msecs": 523.8742828369141, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13497.782230377197, + "relativeCreated": 13516.366004943848, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:42,934", - "created": 1610361462.9342098, + "asctime": "2021-01-14 00:26:25,523", + "created": 1610580385.523968, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 934.2098236083984, + "msecs": 523.967981338501, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13497.937202453613, + "relativeCreated": 13516.459703445435, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" } ], - "msecs": 110.02779006958008, + "msecs": 698.0278491973877, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13673.755168914795, + "relativeCreated": 13690.519571304321, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.17581796646118164 + "time_consumption": 0.17405986785888672 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:43,110", - "created": 1610361463.110853, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6984985, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -192526,8 +192473,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:43,110", - "created": 1610361463.1105082, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6983304, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -192537,15 +192484,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 110.50820350646973, + "msecs": 698.3304023742676, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13674.235582351685, + "relativeCreated": 13690.822124481201, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -192554,8 +192501,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:43,110", - "created": 1610361463.1106896, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6984186, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -192565,37 +192512,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 110.68964004516602, + "msecs": 698.4186172485352, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13674.41701889038, + "relativeCreated": 13690.910339355469, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 110.85295677185059, + "msecs": 698.4984874725342, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13674.580335617065, + "relativeCreated": 13690.990209579468, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001633167266845703 + "time_consumption": 7.987022399902344e-05 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 2, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:43,111", - "created": 1610361463.1113758, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6987514, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -192612,8 +192559,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 2, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:43,111", - "created": 1610361463.1110892, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6986141, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -192623,15 +192570,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 2, 'data': None} ()", "module": "test", - "msecs": 111.08922958374023, + "msecs": 698.6141204833984, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13674.816608428955, + "relativeCreated": 13691.105842590332, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -192640,8 +192587,8 @@ "{'data': None, 'data_id': 0, 'service_id': 11, 'status': 2}", "" ], - "asctime": "2021-01-11 11:37:43,111", - "created": 1610361463.1112337, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6986835, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -192651,34 +192598,34 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': None, 'data_id': 0, 'service_id': 11, 'status': 2} ()", "module": "test", - "msecs": 111.23371124267578, + "msecs": 698.683500289917, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13674.96109008789, + "relativeCreated": 13691.17522239685, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 111.37580871582031, + "msecs": 698.7514495849609, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13675.103187561035, + "relativeCreated": 13691.243171691895, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014209747314453125 + "time_consumption": 6.794929504394531e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:43,111", - "created": 1610361463.1118205, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6989684, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -192696,8 +192643,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:43,111", - "created": 1610361463.111674, + "asctime": "2021-01-14 00:26:25,698", + "created": 1610580385.6988966, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -192707,34 +192654,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 111.67407035827637, + "msecs": 698.8966464996338, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13675.401449203491, + "relativeCreated": 13691.388368606567, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 111.82045936584473, + "msecs": 698.9684104919434, "msg": "Removing the registered Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13675.54783821106, + "relativeCreated": 13691.460132598877, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014638900756835938 + "time_consumption": 7.176399230957031e-05 }, { "args": [], - "asctime": "2021-01-11 11:37:43,313", - "created": 1610361463.313369, + "asctime": "2021-01-14 00:26:25,900", + "created": 1610580385.9007401, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -192753,26 +192700,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:43,112", - "created": 1610361463.112171, + "asctime": "2021-01-14 00:26:25,699", + "created": 1610580385.6991189, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 112.17093467712402, + "msecs": 699.1188526153564, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13675.898313522339, + "relativeCreated": 13691.61057472229, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -192780,8 +192727,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:43,113", - "created": 1610361463.1132164, + "asctime": "2021-01-14 00:26:25,700", + "created": 1610580385.7000453, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -192791,15 +192738,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 113.21640014648438, + "msecs": 700.0453472137451, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13676.9437789917, + "relativeCreated": 13692.537069320679, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192807,8 +192754,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:43,121", - "created": 1610361463.1215343, + "asctime": "2021-01-14 00:26:25,708", + "created": 1610580385.7083235, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -192818,15 +192765,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 121.53434753417969, + "msecs": 708.3234786987305, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13685.261726379395, + "relativeCreated": 13700.815200805664, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192834,8 +192781,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,121", - "created": 1610361463.1217282, + "asctime": "2021-01-14 00:26:25,708", + "created": 1610580385.7085266, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192845,15 +192792,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 121.72818183898926, + "msecs": 708.526611328125, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13685.455560684204, + "relativeCreated": 13701.018333435059, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192862,8 +192809,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,121", - "created": 1610361463.1218553, + "asctime": "2021-01-14 00:26:25,708", + "created": 1610580385.7086344, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192873,15 +192820,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 121.85525894165039, + "msecs": 708.6343765258789, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13685.582637786865, + "relativeCreated": 13701.126098632812, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192889,8 +192836,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,121", - "created": 1610361463.1219888, + "asctime": "2021-01-14 00:26:25,708", + "created": 1610580385.7087448, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192900,15 +192847,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 121.98877334594727, + "msecs": 708.7447643280029, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13685.716152191162, + "relativeCreated": 13701.236486434937, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192917,8 +192864,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1220827, + "asctime": "2021-01-14 00:26:25,708", + "created": 1610580385.7088256, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192928,15 +192875,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.08271026611328, + "msecs": 708.8255882263184, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13685.810089111328, + "relativeCreated": 13701.317310333252, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192944,8 +192891,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1222172, + "asctime": "2021-01-14 00:26:25,708", + "created": 1610580385.7089324, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192955,15 +192902,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 122.21717834472656, + "msecs": 708.9323997497559, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13685.944557189941, + "relativeCreated": 13701.42412185669, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192972,8 +192919,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1223063, + "asctime": "2021-01-14 00:26:25,709", + "created": 1610580385.7090027, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -192983,15 +192930,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.30634689331055, + "msecs": 709.0027332305908, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13686.033725738525, + "relativeCreated": 13701.494455337524, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -192999,8 +192946,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1224315, + "asctime": "2021-01-14 00:26:25,709", + "created": 1610580385.7091033, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193010,15 +192957,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 122.43151664733887, + "msecs": 709.1033458709717, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13686.158895492554, + "relativeCreated": 13701.595067977905, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193027,8 +192974,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1225429, + "asctime": "2021-01-14 00:26:25,709", + "created": 1610580385.7092144, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193038,15 +192985,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.5428581237793, + "msecs": 709.214448928833, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13686.270236968994, + "relativeCreated": 13701.706171035767, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193054,8 +193001,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1226606, + "asctime": "2021-01-14 00:26:25,709", + "created": 1610580385.7093081, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193065,15 +193012,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 122.66063690185547, + "msecs": 709.3081474304199, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13686.38801574707, + "relativeCreated": 13701.799869537354, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193082,8 +193029,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1227484, + "asctime": "2021-01-14 00:26:25,709", + "created": 1610580385.7093787, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193093,15 +193040,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 122.74837493896484, + "msecs": 709.378719329834, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13686.47575378418, + "relativeCreated": 13701.870441436768, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193109,8 +193056,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:43,122", - "created": 1610361463.1229134, + "asctime": "2021-01-14 00:26:25,709", + "created": 1610580385.7095156, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -193120,15 +193067,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 122.91336059570312, + "msecs": 709.5155715942383, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13686.640739440918, + "relativeCreated": 13702.007293701172, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193136,8 +193083,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:43,123", - "created": 1610361463.1238074, + "asctime": "2021-01-14 00:26:25,710", + "created": 1610580385.7103121, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -193147,15 +193094,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 123.80743026733398, + "msecs": 710.3121280670166, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13687.534809112549, + "relativeCreated": 13702.80385017395, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193163,8 +193110,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,123", - "created": 1610361463.1239703, + "asctime": "2021-01-14 00:26:25,710", + "created": 1610580385.7104127, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193174,15 +193121,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 123.97027015686035, + "msecs": 710.4127407073975, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13687.697649002075, + "relativeCreated": 13702.904462814331, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193191,8 +193138,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,124", - "created": 1610361463.1240788, + "asctime": "2021-01-14 00:26:25,710", + "created": 1610580385.710487, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193202,15 +193149,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 124.07875061035156, + "msecs": 710.486888885498, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13687.806129455566, + "relativeCreated": 13702.978610992432, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193218,8 +193165,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:43,124", - "created": 1610361463.1242414, + "asctime": "2021-01-14 00:26:25,710", + "created": 1610580385.710609, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193229,15 +193176,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 124.24135208129883, + "msecs": 710.608959197998, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13687.968730926514, + "relativeCreated": 13703.100681304932, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193248,52 +193195,52 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:43,124", - "created": 1610361463.1244917, + "asctime": "2021-01-14 00:26:25,710", + "created": 1610580385.710815, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 124.49169158935547, + "msecs": 710.8149528503418, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13688.21907043457, + "relativeCreated": 13703.306674957275, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:43,124", - "created": 1610361463.124626, + "asctime": "2021-01-14 00:26:25,710", + "created": 1610580385.7109225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 474, + "lineno": 486, "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 124.62592124938965, + "msecs": 710.9224796295166, "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13688.353300094604, + "relativeCreated": 13703.41420173645, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193304,26 +193251,26 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:43,124", - "created": 1610361463.124821, + "asctime": "2021-01-14 00:26:25,711", + "created": 1610580385.7110589, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 124.82094764709473, + "msecs": 711.0588550567627, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13688.54832649231, + "relativeCreated": 13703.550577163696, "stack_info": null, - "thread": 139976423479040, + "thread": 140580923373312, "threadName": "Thread-19" }, { @@ -193331,8 +193278,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-01-11 11:37:43,125", - "created": 1610361463.1253538, + "asctime": "2021-01-14 00:26:25,711", + "created": 1610580385.711472, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -193342,15 +193289,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 125.35381317138672, + "msecs": 711.4720344543457, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13689.081192016602, + "relativeCreated": 13703.96375656128, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193358,8 +193305,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-01-11 11:37:43,133", - "created": 1610361463.1336763, + "asctime": "2021-01-14 00:26:25,719", + "created": 1610580385.719968, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -193369,15 +193316,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 133.67629051208496, + "msecs": 719.9680805206299, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13697.4036693573, + "relativeCreated": 13712.459802627563, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193385,8 +193332,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,133", - "created": 1610361463.1338801, + "asctime": "2021-01-14 00:26:25,720", + "created": 1610580385.7206378, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193396,15 +193343,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 133.8801383972168, + "msecs": 720.6377983093262, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13697.607517242432, + "relativeCreated": 13713.12952041626, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193413,8 +193360,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:43,133", - "created": 1610361463.1339982, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.721093, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193424,15 +193371,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 133.99815559387207, + "msecs": 721.092939376831, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13697.725534439087, + "relativeCreated": 13713.584661483765, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193440,8 +193387,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.134131, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.7213452, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193451,15 +193398,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 134.13095474243164, + "msecs": 721.3451862335205, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13697.858333587646, + "relativeCreated": 13713.836908340454, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193468,8 +193415,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.134227, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.7214491, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193479,15 +193426,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 134.22703742980957, + "msecs": 721.4491367340088, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13697.954416275024, + "relativeCreated": 13713.940858840942, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193495,8 +193442,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.1343613, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.7215686, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193506,15 +193453,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 134.36126708984375, + "msecs": 721.5685844421387, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13698.088645935059, + "relativeCreated": 13714.060306549072, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193523,8 +193470,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.1344492, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.7216632, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193534,15 +193481,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 134.44924354553223, + "msecs": 721.663236618042, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13698.176622390747, + "relativeCreated": 13714.154958724976, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193550,8 +193497,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.134572, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.7217662, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193561,15 +193508,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 134.57202911376953, + "msecs": 721.7662334442139, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13698.299407958984, + "relativeCreated": 13714.257955551147, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193578,8 +193525,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.1346595, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.7218406, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193589,15 +193536,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 134.6595287322998, + "msecs": 721.8406200408936, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13698.386907577515, + "relativeCreated": 13714.332342147827, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193605,8 +193552,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.134774, + "asctime": "2021-01-14 00:26:25,721", + "created": 1610580385.721965, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193616,15 +193563,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 134.77396965026855, + "msecs": 721.9650745391846, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13698.501348495483, + "relativeCreated": 13714.456796646118, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193633,8 +193580,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:43,134", - "created": 1610361463.13486, + "asctime": "2021-01-14 00:26:25,722", + "created": 1610580385.7220488, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193644,15 +193591,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 134.86003875732422, + "msecs": 722.0487594604492, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13698.587417602539, + "relativeCreated": 13714.540481567383, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193660,8 +193607,8 @@ "comm-server:", "(7): 7d 88 6a 33 01 3a 3e" ], - "asctime": "2021-01-11 11:37:43,135", - "created": 1610361463.1350212, + "asctime": "2021-01-14 00:26:25,722", + "created": 1610580385.7222238, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -193671,15 +193618,15 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d 88 6a 33 01 3a 3e", "module": "__init__", - "msecs": 135.02120971679688, + "msecs": 722.2237586975098, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13698.748588562012, + "relativeCreated": 13714.715480804443, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193687,8 +193634,8 @@ "comm-client:", "(7): 7d 88 6a 33 01 3a 3e" ], - "asctime": "2021-01-11 11:37:43,136", - "created": 1610361463.1361935, + "asctime": "2021-01-14 00:26:25,723", + "created": 1610580385.723319, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -193698,15 +193645,15 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d 88 6a 33 01 3a 3e", "module": "__init__", - "msecs": 136.19351387023926, + "msecs": 723.3190536499023, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13699.920892715454, + "relativeCreated": 13715.810775756836, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193714,8 +193661,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:43,136", - "created": 1610361463.1364155, + "asctime": "2021-01-14 00:26:25,723", + "created": 1610580385.7234716, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193725,15 +193672,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 136.4154815673828, + "msecs": 723.4716415405273, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13700.142860412598, + "relativeCreated": 13715.963363647461, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193742,8 +193689,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:43,136", - "created": 1610361463.136555, + "asctime": "2021-01-14 00:26:25,723", + "created": 1610580385.7235696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193753,15 +193700,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 136.55495643615723, + "msecs": 723.5696315765381, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13700.282335281372, + "relativeCreated": 13716.061353683472, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193769,8 +193716,8 @@ "STP:", "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01" ], - "asctime": "2021-01-11 11:37:43,136", - "created": 1610361463.1367218, + "asctime": "2021-01-14 00:26:25,723", + "created": 1610580385.7236881, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -193780,15 +193727,15 @@ "lineno": 148, "message": "STP: message identified - (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01", "module": "stp", - "msecs": 136.72184944152832, + "msecs": 723.6881256103516, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13700.449228286743, + "relativeCreated": 13716.179847717285, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { @@ -193799,74 +193746,74 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-11 11:37:43,137", - "created": 1610361463.1371303, + "asctime": "2021-01-14 00:26:25,723", + "created": 1610580385.723868, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 137.1302604675293, + "msecs": 723.8678932189941, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13700.857639312744, + "relativeCreated": 13716.359615325928, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:43,137", - "created": 1610361463.1373434, + "asctime": "2021-01-14 00:26:25,723", + "created": 1610580385.7239692, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 137.3434066772461, + "msecs": 723.9692211151123, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13701.070785522461, + "relativeCreated": 13716.460943222046, "stack_info": null, - "thread": 139975936964352, + "thread": 140580914980608, "threadName": "Thread-20" } ], - "msecs": 313.3690357208252, + "msecs": 900.7401466369629, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13877.09641456604, + "relativeCreated": 13893.231868743896, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.1760256290435791 + "time_consumption": 0.17677092552185059 }, { "args": [ "None", "" ], - "asctime": "2021-01-11 11:37:43,314", - "created": 1610361463.314182, + "asctime": "2021-01-14 00:26:25,901", + "created": 1610580385.9017713, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -193883,8 +193830,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:43,313", - "created": 1610361463.3138485, + "asctime": "2021-01-14 00:26:25,901", + "created": 1610580385.90142, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -193894,15 +193841,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): None ()", "module": "test", - "msecs": 313.84849548339844, + "msecs": 901.4201164245605, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13877.575874328613, + "relativeCreated": 13893.911838531494, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -193911,8 +193858,8 @@ "None", "" ], - "asctime": "2021-01-11 11:37:43,314", - "created": 1610361463.3140266, + "asctime": "2021-01-14 00:26:25,901", + "created": 1610580385.9016073, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -193922,37 +193869,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = None ()", "module": "test", - "msecs": 314.0265941619873, + "msecs": 901.6072750091553, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13877.753973007202, + "relativeCreated": 13894.098997116089, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 314.1820430755615, + "msecs": 901.7713069915771, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13877.909421920776, + "relativeCreated": 13894.26302909851, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015544891357421875 + "time_consumption": 0.000164031982421875 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:43,314", - "created": 1610361463.3147488, + "asctime": "2021-01-14 00:26:25,902", + "created": 1610580385.9023724, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -193969,8 +193916,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-11 11:37:43,314", - "created": 1610361463.3144224, + "asctime": "2021-01-14 00:26:25,902", + "created": 1610580385.902021, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -193980,15 +193927,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 314.4223690032959, + "msecs": 902.0209312438965, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13878.14974784851, + "relativeCreated": 13894.51265335083, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -193997,8 +193944,8 @@ "{'data': None, 'data_id': 0, 'service_id': 11, 'status': 1}", "" ], - "asctime": "2021-01-11 11:37:43,314", - "created": 1610361463.314574, + "asctime": "2021-01-14 00:26:25,902", + "created": 1610580385.9022038, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -194008,41 +193955,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': None, 'data_id': 0, 'service_id': 11, 'status': 1} ()", "module": "test", - "msecs": 314.5740032196045, + "msecs": 902.2037982940674, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13878.30138206482, + "relativeCreated": 13894.695520401001, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 314.74876403808594, + "msecs": 902.3723602294922, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 13878.4761428833, + "relativeCreated": 13894.864082336426, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001747608184814453 + "time_consumption": 0.0001685619354248047 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.9605567455291748, - "time_finished": "2021-01-11 11:37:43,314", - "time_start": "2021-01-11 11:37:42,354" + "time_consumption": 0.9646408557891846, + "time_finished": "2021-01-14 00:26:25,902", + "time_start": "2021-01-14 00:26:24,937" }, "_tb5akE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-11 11:37:44,984", - "created": 1610361464.9846518, + "asctime": "2021-01-14 00:26:27,570", + "created": 1610580387.5701876, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194053,19 +194000,19 @@ "message": "_tb5akE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 984.6518039703369, + "msecs": 570.1875686645508, "msg": "_tb5akE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15548.379182815552, + "relativeCreated": 15562.679290771484, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.9930048, + "asctime": "2021-01-14 00:26:27,579", + "created": 1610580387.5795417, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -194080,8 +194027,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:44,986", - "created": 1610361464.9862354, + "asctime": "2021-01-14 00:26:27,571", + "created": 1610580387.571217, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194091,23 +194038,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 986.2353801727295, + "msecs": 571.2170600891113, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15549.962759017944, + "relativeCreated": 15563.708782196045, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,987", - "created": 1610361464.9871025, + "asctime": "2021-01-14 00:26:27,572", + "created": 1610580387.572094, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194117,23 +194064,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 987.1025085449219, + "msecs": 572.0939636230469, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15550.829887390137, + "relativeCreated": 15564.58568572998, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,987", - "created": 1610361464.9873216, + "asctime": "2021-01-14 00:26:27,572", + "created": 1610580387.5723147, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194143,41 +194090,41 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 987.3216152191162, + "msecs": 572.3147392272949, "msg": "%s Waiting for incomming connection", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15551.048994064331, + "relativeCreated": 15564.806461334229, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,987", - "created": 1610361464.9876459, + "asctime": "2021-01-14 00:26:27,572", + "created": 1610580387.5726457, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 987.6458644866943, + "msecs": 572.6456642150879, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15551.37324333191, + "relativeCreated": 15565.137386322021, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194186,26 +194133,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:44,987", - "created": 1610361464.98783, + "asctime": "2021-01-14 00:26:27,572", + "created": 1610580387.5728264, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 987.8299236297607, + "msecs": 572.8263854980469, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15551.557302474976, + "relativeCreated": 15565.31810760498, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194213,26 +194160,26 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,988", - "created": 1610361464.9880605, + "asctime": "2021-01-14 00:26:27,573", + "created": 1610580387.573051, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 988.060474395752, + "msecs": 573.0509757995605, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15551.787853240967, + "relativeCreated": 15565.542697906494, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194240,26 +194187,26 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,988", - "created": 1610361464.988217, + "asctime": "2021-01-14 00:26:27,573", + "created": 1610580387.573269, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 988.2171154022217, + "msecs": 573.2688903808594, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15551.944494247437, + "relativeCreated": 15565.760612487793, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194267,26 +194214,26 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:44,988", - "created": 1610361464.988362, + "asctime": "2021-01-14 00:26:27,573", + "created": 1610580387.573419, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 988.3620738983154, + "msecs": 573.4190940856934, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15552.08945274353, + "relativeCreated": 15565.910816192627, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194294,26 +194241,26 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:44,988", - "created": 1610361464.9885013, + "asctime": "2021-01-14 00:26:27,573", + "created": 1610580387.5735605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 988.5013103485107, + "msecs": 573.5604763031006, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15552.228689193726, + "relativeCreated": 15566.052198410034, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194323,8 +194270,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:44,988", - "created": 1610361464.9886596, + "asctime": "2021-01-14 00:26:27,573", + "created": 1610580387.5737214, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194334,15 +194281,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 988.6596202850342, + "msecs": 573.7214088439941, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15552.386999130249, + "relativeCreated": 15566.213130950928, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194352,8 +194299,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:44,988", - "created": 1610361464.9888492, + "asctime": "2021-01-14 00:26:27,573", + "created": 1610580387.5738842, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194363,15 +194310,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 988.8491630554199, + "msecs": 573.8842487335205, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15552.576541900635, + "relativeCreated": 15566.375970840454, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194381,8 +194328,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:44,988", - "created": 1610361464.988984, + "asctime": "2021-01-14 00:26:27,574", + "created": 1610580387.574049, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194392,15 +194339,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 988.9841079711914, + "msecs": 574.0489959716797, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15552.711486816406, + "relativeCreated": 15566.540718078613, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194410,8 +194357,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:44,989", - "created": 1610361464.9891305, + "asctime": "2021-01-14 00:26:27,574", + "created": 1610580387.5742102, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194421,41 +194368,41 @@ "lineno": 170, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 989.1304969787598, + "msecs": 574.2101669311523, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15552.857875823975, + "relativeCreated": 15566.701889038086, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,989", - "created": 1610361464.9892423, + "asctime": "2021-01-14 00:26:27,574", + "created": 1610580387.5747268, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 989.2423152923584, + "msecs": 574.7268199920654, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15552.969694137573, + "relativeCreated": 15567.218542098999, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194464,26 +194411,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:44,989", - "created": 1610361464.9896603, + "asctime": "2021-01-14 00:26:27,574", + "created": 1610580387.574896, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 989.6602630615234, + "msecs": 574.8960971832275, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15553.387641906738, + "relativeCreated": 15567.387819290161, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194491,26 +194438,26 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:44,989", - "created": 1610361464.9898121, + "asctime": "2021-01-14 00:26:27,575", + "created": 1610580387.575108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 989.8121356964111, + "msecs": 575.1080513000488, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15553.539514541626, + "relativeCreated": 15567.599773406982, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194518,26 +194465,26 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:44,989", - "created": 1610361464.989933, + "asctime": "2021-01-14 00:26:27,575", + "created": 1610580387.5752594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 989.9330139160156, + "msecs": 575.2594470977783, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15553.66039276123, + "relativeCreated": 15567.751169204712, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194547,8 +194494,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.9900582, + "asctime": "2021-01-14 00:26:27,575", + "created": 1610580387.575418, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194558,15 +194505,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 990.058183670044, + "msecs": 575.4179954528809, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15553.785562515259, + "relativeCreated": 15567.909717559814, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194576,8 +194523,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.9901836, + "asctime": "2021-01-14 00:26:27,575", + "created": 1610580387.5755792, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194587,15 +194534,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 990.1835918426514, + "msecs": 575.5791664123535, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15553.910970687866, + "relativeCreated": 15568.070888519287, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194604,26 +194551,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.990312, + "asctime": "2021-01-14 00:26:27,575", + "created": 1610580387.57573, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 990.3120994567871, + "msecs": 575.7300853729248, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.039478302002, + "relativeCreated": 15568.221807479858, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194632,26 +194579,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.9904253, + "asctime": "2021-01-14 00:26:27,575", + "created": 1610580387.575874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 990.4253482818604, + "msecs": 575.8740901947021, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.152727127075, + "relativeCreated": 15568.365812301636, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194660,78 +194607,78 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.9905338, + "asctime": "2021-01-14 00:26:27,576", + "created": 1610580387.5760248, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 990.5338287353516, + "msecs": 576.0247707366943, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.261207580566, + "relativeCreated": 15568.516492843628, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.990645, + "asctime": "2021-01-14 00:26:27,576", + "created": 1610580387.5761688, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 990.6449317932129, + "msecs": 576.1687755584717, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.372310638428, + "relativeCreated": 15568.660497665405, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.9908652, + "asctime": "2021-01-14 00:26:27,576", + "created": 1610580387.576454, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 990.8652305603027, + "msecs": 576.4539241790771, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.592609405518, + "relativeCreated": 15568.94564628601, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194740,26 +194687,26 @@ "authentification request", "authentification response" ], - "asctime": "2021-01-11 11:37:44,990", - "created": 1610361464.9909883, + "asctime": "2021-01-14 00:26:27,576", + "created": 1610580387.5766115, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 990.9882545471191, + "msecs": 576.6115188598633, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.715633392334, + "relativeCreated": 15569.103240966797, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194767,26 +194714,26 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.9911473, + "asctime": "2021-01-14 00:26:27,576", + "created": 1610580387.5768123, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 991.1472797393799, + "msecs": 576.8122673034668, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.874658584595, + "relativeCreated": 15569.3039894104, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194794,26 +194741,26 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.9912663, + "asctime": "2021-01-14 00:26:27,576", + "created": 1610580387.5769618, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 991.2662506103516, + "msecs": 576.9617557525635, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15554.993629455566, + "relativeCreated": 15569.453477859497, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194821,26 +194768,26 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.9913886, + "asctime": "2021-01-14 00:26:27,577", + "created": 1610580387.5771356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 991.3885593414307, + "msecs": 577.1355628967285, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.115938186646, + "relativeCreated": 15569.627285003662, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194848,26 +194795,26 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.991499, + "asctime": "2021-01-14 00:26:27,577", + "created": 1610580387.577289, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 991.4989471435547, + "msecs": 577.2891044616699, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.22632598877, + "relativeCreated": 15569.780826568604, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194877,8 +194824,8 @@ "0", "0" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.9916174, + "asctime": "2021-01-14 00:26:27,577", + "created": 1610580387.5774415, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194888,15 +194835,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 991.6174411773682, + "msecs": 577.4414539337158, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.344820022583, + "relativeCreated": 15569.93317604065, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194906,8 +194853,8 @@ "1", "0" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.991741, + "asctime": "2021-01-14 00:26:27,577", + "created": 1610580387.577599, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194917,15 +194864,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 991.7409420013428, + "msecs": 577.599048614502, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.468320846558, + "relativeCreated": 15570.090770721436, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194935,8 +194882,8 @@ "0", "1" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.9918628, + "asctime": "2021-01-14 00:26:27,577", + "created": 1610580387.5777535, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194946,15 +194893,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 991.8627738952637, + "msecs": 577.7535438537598, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.590152740479, + "relativeCreated": 15570.245265960693, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -194964,8 +194911,8 @@ "1", "1" ], - "asctime": "2021-01-11 11:37:44,991", - "created": 1610361464.9919937, + "asctime": "2021-01-14 00:26:27,577", + "created": 1610580387.5779054, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -194975,41 +194922,41 @@ "lineno": 170, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 991.9936656951904, + "msecs": 577.9054164886475, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.721044540405, + "relativeCreated": 15570.397138595581, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9921012, + "asctime": "2021-01-14 00:26:27,578", + "created": 1610580387.5780537, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 373, + "lineno": 385, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 992.1011924743652, + "msecs": 578.0537128448486, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.82857131958, + "relativeCreated": 15570.545434951782, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195018,26 +194965,26 @@ "channel name request", "channel name response" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9922204, + "asctime": "2021-01-14 00:26:27,578", + "created": 1610580387.5782056, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 992.220401763916, + "msecs": 578.2055854797363, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15555.94778060913, + "relativeCreated": 15570.69730758667, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195045,26 +194992,26 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9923496, + "asctime": "2021-01-14 00:26:27,578", + "created": 1610580387.578371, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 992.3496246337891, + "msecs": 578.3710479736328, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.077003479004, + "relativeCreated": 15570.862770080566, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195072,26 +195019,26 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9924638, + "asctime": "2021-01-14 00:26:27,578", + "created": 1610580387.578516, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 559, + "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 992.4638271331787, + "msecs": 578.5160064697266, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.191205978394, + "relativeCreated": 15571.00772857666, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195101,8 +195048,8 @@ "8", "0" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9925792, + "asctime": "2021-01-14 00:26:27,578", + "created": 1610580387.578665, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195112,15 +195059,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 992.5792217254639, + "msecs": 578.665018081665, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.306600570679, + "relativeCreated": 15571.156740188599, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195130,8 +195077,8 @@ "9", "0" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.992713, + "asctime": "2021-01-14 00:26:27,578", + "created": 1610580387.578825, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195141,15 +195088,15 @@ "lineno": 170, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 992.7129745483398, + "msecs": 578.8249969482422, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.440353393555, + "relativeCreated": 15571.316719055176, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195158,26 +195105,26 @@ "read data request", "read data response" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9928255, + "asctime": "2021-01-14 00:26:27,578", + "created": 1610580387.578981, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 992.8255081176758, + "msecs": 578.9809226989746, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.55288696289, + "relativeCreated": 15571.472644805908, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195186,26 +195133,26 @@ "write data request", "write data response" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9928749, + "asctime": "2021-01-14 00:26:27,579", + "created": 1610580387.5791225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 992.8748607635498, + "msecs": 579.1225433349609, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.602239608765, + "relativeCreated": 15571.614265441895, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195214,71 +195161,71 @@ "execute request", "execute response" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9929206, + "asctime": "2021-01-14 00:26:27,579", + "created": 1610580387.5792594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 582, + "lineno": 594, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 992.9206371307373, + "msecs": 579.2593955993652, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.648015975952, + "relativeCreated": 15571.751117706299, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,992", - "created": 1610361464.9929643, + "asctime": "2021-01-14 00:26:27,579", + "created": 1610580387.579408, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 325, + "lineno": 337, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 992.9642677307129, + "msecs": 579.4079303741455, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.691646575928, + "relativeCreated": 15571.89965248108, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 993.0047988891602, + "msecs": 579.5416831970215, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.732177734375, + "relativeCreated": 15572.033405303955, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 4.0531158447265625e-05 + "time_consumption": 0.00013375282287597656 }, { "args": [], - "asctime": "2021-01-11 11:37:45,336", - "created": 1610361465.3368242, + "asctime": "2021-01-14 00:26:27,923", + "created": 1610580387.9239876, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -195293,8 +195240,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.993098, + "asctime": "2021-01-14 00:26:27,579", + "created": 1610580387.579842, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195304,23 +195251,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 993.0980205535889, + "msecs": 579.8420906066895, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.825399398804, + "relativeCreated": 15572.333812713623, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.9931414, + "asctime": "2021-01-14 00:26:27,579", + "created": 1610580387.5799837, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195330,41 +195277,41 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 993.1414127349854, + "msecs": 579.9837112426758, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.8687915802, + "relativeCreated": 15572.47543334961, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.993184, + "asctime": "2021-01-14 00:26:27,580", + "created": 1610580387.5801868, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 993.1840896606445, + "msecs": 580.1868438720703, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.91146850586, + "relativeCreated": 15572.678565979004, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195375,34 +195322,34 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.9932618, + "asctime": "2021-01-14 00:26:27,580", + "created": 1610580387.5802877, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 993.2618141174316, + "msecs": 580.2876949310303, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15556.989192962646, + "relativeCreated": 15572.779417037964, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.9934464, + "asctime": "2021-01-14 00:26:27,580", + "created": 1610580387.5804896, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195412,23 +195359,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 993.4463500976562, + "msecs": 580.4896354675293, "msg": "%s Connection established...", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15557.173728942871, + "relativeCreated": 15572.981357574463, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.993497, + "asctime": "2021-01-14 00:26:27,580", + "created": 1610580387.5805447, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195438,41 +195385,41 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 993.4968948364258, + "msecs": 580.5447101593018, "msg": "%s Cleaning up receive-buffer", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15557.22427368164, + "relativeCreated": 15573.036432266235, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.9935415, + "asctime": "2021-01-14 00:26:27,580", + "created": 1610580387.5805917, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 427, + "lineno": 439, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 993.5414791107178, + "msecs": 580.5916786193848, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15557.268857955933, + "relativeCreated": 15573.083400726318, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -195480,8 +195427,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:44,993", - "created": 1610361464.993697, + "asctime": "2021-01-14 00:26:27,580", + "created": 1610580387.58075, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195491,15 +195438,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 993.696928024292, + "msecs": 580.7499885559082, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15557.424306869507, + "relativeCreated": 15573.241710662842, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195507,8 +195454,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:45,001", - "created": 1610361465.0018604, + "asctime": "2021-01-14 00:26:27,588", + "created": 1610580387.588963, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195518,15 +195465,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 1.8603801727294922, + "msecs": 588.9630317687988, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15565.587759017944, + "relativeCreated": 15581.454753875732, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195534,8 +195481,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,001", - "created": 1610361465.0019767, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5890865, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195545,15 +195492,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 1.9767284393310547, + "msecs": 589.0865325927734, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15565.704107284546, + "relativeCreated": 15581.578254699707, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195562,8 +195509,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0020294, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5891662, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195573,15 +195520,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 2.0294189453125, + "msecs": 589.1661643981934, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15565.756797790527, + "relativeCreated": 15581.657886505127, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195589,8 +195536,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0020907, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5892286, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195600,15 +195547,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 2.0906925201416016, + "msecs": 589.228630065918, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15565.818071365356, + "relativeCreated": 15581.720352172852, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195617,8 +195564,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0021338, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5892744, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195628,15 +195575,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 2.1338462829589844, + "msecs": 589.2744064331055, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15565.861225128174, + "relativeCreated": 15581.766128540039, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195644,8 +195591,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0021956, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5893366, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195655,15 +195602,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 2.195596694946289, + "msecs": 589.336633682251, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15565.922975540161, + "relativeCreated": 15581.828355789185, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195672,8 +195619,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0022364, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5893776, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195683,15 +195630,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 2.2363662719726562, + "msecs": 589.3776416778564, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15565.963745117188, + "relativeCreated": 15581.86936378479, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195699,8 +195646,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0022917, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5894332, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195710,15 +195657,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 2.2916793823242188, + "msecs": 589.4331932067871, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15566.019058227539, + "relativeCreated": 15581.92491531372, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195727,8 +195674,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.002332, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5894732, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195738,15 +195685,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 2.331972122192383, + "msecs": 589.4732475280762, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15566.059350967407, + "relativeCreated": 15581.96496963501, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195754,8 +195701,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0023873, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5895274, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195765,15 +195712,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 2.3872852325439453, + "msecs": 589.5273685455322, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15566.114664077759, + "relativeCreated": 15582.019090652466, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195782,8 +195729,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0024278, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5895672, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195793,15 +195740,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 2.427816390991211, + "msecs": 589.5671844482422, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15566.155195236206, + "relativeCreated": 15582.058906555176, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195809,8 +195756,8 @@ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:45,002", - "created": 1610361465.0025215, + "asctime": "2021-01-14 00:26:27,589", + "created": 1610580387.5896528, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195820,15 +195767,15 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 2.521514892578125, + "msecs": 589.6527767181396, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15566.248893737793, + "relativeCreated": 15582.144498825073, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195836,8 +195783,8 @@ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-01-11 11:37:45,003", - "created": 1610361465.0034153, + "asctime": "2021-01-14 00:26:27,590", + "created": 1610580387.5905933, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -195847,15 +195794,15 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 3.415346145629883, + "msecs": 590.5933380126953, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.142724990845, + "relativeCreated": 15583.085060119629, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195863,8 +195810,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,003", - "created": 1610361465.0034885, + "asctime": "2021-01-14 00:26:27,590", + "created": 1610580387.5907407, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195874,15 +195821,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 3.4885406494140625, + "msecs": 590.7406806945801, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.215919494629, + "relativeCreated": 15583.232402801514, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195891,8 +195838,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,003", - "created": 1610361465.0035489, + "asctime": "2021-01-14 00:26:27,590", + "created": 1610580387.5907998, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195902,15 +195849,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 3.548860549926758, + "msecs": 590.7998085021973, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.276239395142, + "relativeCreated": 15583.29153060913, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195918,8 +195865,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" ], - "asctime": "2021-01-11 11:37:45,003", - "created": 1610361465.0036218, + "asctime": "2021-01-14 00:26:27,590", + "created": 1610580387.5908833, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -195929,15 +195876,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", "module": "stp", - "msecs": 3.621816635131836, + "msecs": 590.8832550048828, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.349195480347, + "relativeCreated": 15583.374977111816, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195948,26 +195895,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:45,003", - "created": 1610361465.0037494, + "asctime": "2021-01-14 00:26:27,591", + "created": 1610580387.5910356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 3.749370574951172, + "msecs": 591.0356044769287, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.476749420166, + "relativeCreated": 15583.527326583862, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -195975,26 +195922,26 @@ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-11 11:37:45,003", - "created": 1610361465.0038176, + "asctime": "2021-01-14 00:26:27,591", + "created": 1610580387.5911021, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 3.8175582885742188, + "msecs": 591.102123260498, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.544937133789, + "relativeCreated": 15583.593845367432, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196005,26 +195952,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:45,003", - "created": 1610361465.003896, + "asctime": "2021-01-14 00:26:27,591", + "created": 1610580387.5911868, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 3.895998001098633, + "msecs": 591.1867618560791, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.623376846313, + "relativeCreated": 15583.678483963013, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196032,8 +195979,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:45,004", - "created": 1610361465.0041542, + "asctime": "2021-01-14 00:26:27,591", + "created": 1610580387.5914862, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196043,15 +195990,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 4.154205322265625, + "msecs": 591.4862155914307, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15567.88158416748, + "relativeCreated": 15583.977937698364, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196059,8 +196006,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-01-11 11:37:45,012", - "created": 1610361465.0124137, + "asctime": "2021-01-14 00:26:27,599", + "created": 1610580387.5997, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196070,15 +196017,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 12.413740158081055, + "msecs": 599.6999740600586, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.141119003296, + "relativeCreated": 15592.191696166992, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196086,8 +196033,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,012", - "created": 1610361465.012585, + "asctime": "2021-01-14 00:26:27,599", + "created": 1610580387.599827, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196097,15 +196044,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 12.584924697875977, + "msecs": 599.8270511627197, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.31230354309, + "relativeCreated": 15592.318773269653, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196114,8 +196061,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,012", - "created": 1610361465.0126722, + "asctime": "2021-01-14 00:26:27,599", + "created": 1610580387.5998807, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196125,15 +196072,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 12.672185897827148, + "msecs": 599.8806953430176, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.399564743042, + "relativeCreated": 15592.372417449951, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196141,8 +196088,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,012", - "created": 1610361465.0128179, + "asctime": "2021-01-14 00:26:27,599", + "created": 1610580387.5999577, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196152,15 +196099,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 12.817859649658203, + "msecs": 599.9577045440674, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.545238494873, + "relativeCreated": 15592.449426651001, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196169,8 +196116,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,012", - "created": 1610361465.0128965, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.6000044, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196180,15 +196127,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 12.896537780761719, + "msecs": 600.0044345855713, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.623916625977, + "relativeCreated": 15592.496156692505, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196196,8 +196143,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,013", - "created": 1610361465.0130043, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.600066, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196207,15 +196154,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 13.004302978515625, + "msecs": 600.0659465789795, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.73168182373, + "relativeCreated": 15592.557668685913, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196224,8 +196171,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,013", - "created": 1610361465.0130746, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.600107, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196235,15 +196182,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 13.074636459350586, + "msecs": 600.106954574585, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.802015304565, + "relativeCreated": 15592.598676681519, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196251,8 +196198,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,013", - "created": 1610361465.0131698, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.6001642, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196262,15 +196209,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 13.16976547241211, + "msecs": 600.1641750335693, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.897144317627, + "relativeCreated": 15592.655897140503, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196279,8 +196226,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,013", - "created": 1610361465.0132487, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.600205, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196290,15 +196237,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 13.248682022094727, + "msecs": 600.2049446105957, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15576.97606086731, + "relativeCreated": 15592.69666671753, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196306,8 +196253,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,013", - "created": 1610361465.0133476, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.6002617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196317,15 +196264,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 13.347625732421875, + "msecs": 600.2616882324219, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15577.075004577637, + "relativeCreated": 15592.753410339355, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196334,8 +196281,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,013", - "created": 1610361465.013418, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.6003017, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196345,15 +196292,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 13.417959213256836, + "msecs": 600.3017425537109, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15577.145338058472, + "relativeCreated": 15592.793464660645, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196361,8 +196308,8 @@ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:45,013", - "created": 1610361465.013554, + "asctime": "2021-01-14 00:26:27,600", + "created": 1610580387.600387, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196372,15 +196319,15 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 13.554096221923828, + "msecs": 600.3870964050293, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15577.281475067139, + "relativeCreated": 15592.878818511963, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196388,8 +196335,8 @@ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-11 11:37:45,014", - "created": 1610361465.0145042, + "asctime": "2021-01-14 00:26:27,601", + "created": 1610580387.6012554, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196399,15 +196346,15 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 14.504194259643555, + "msecs": 601.2554168701172, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15578.231573104858, + "relativeCreated": 15593.74713897705, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196415,8 +196362,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,014", - "created": 1610361465.0146363, + "asctime": "2021-01-14 00:26:27,601", + "created": 1610580387.6013353, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196426,15 +196373,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 14.63627815246582, + "msecs": 601.3352870941162, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15578.36365699768, + "relativeCreated": 15593.82700920105, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196443,8 +196390,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,014", - "created": 1610361465.014726, + "asctime": "2021-01-14 00:26:27,601", + "created": 1610580387.6013877, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196454,15 +196401,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 14.725923538208008, + "msecs": 601.3877391815186, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15578.453302383423, + "relativeCreated": 15593.879461288452, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196470,8 +196417,8 @@ "STP:", "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" ], - "asctime": "2021-01-11 11:37:45,014", - "created": 1610361465.01487, + "asctime": "2021-01-14 00:26:27,601", + "created": 1610580387.601478, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196481,15 +196428,15 @@ "lineno": 148, "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", "module": "stp", - "msecs": 14.869928359985352, + "msecs": 601.478099822998, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15578.5973072052, + "relativeCreated": 15593.969821929932, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196500,26 +196447,26 @@ "status: okay", "None" ], - "asctime": "2021-01-11 11:37:45,015", - "created": 1610361465.0150843, + "asctime": "2021-01-14 00:26:27,601", + "created": 1610580387.6016257, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 15.084266662597656, + "msecs": 601.6256809234619, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15578.811645507812, + "relativeCreated": 15594.117403030396, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -196527,45 +196474,45 @@ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-11 11:37:45,015", - "created": 1610361465.0151858, + "asctime": "2021-01-14 00:26:27,601", + "created": 1610580387.6016889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 492, + "lineno": 504, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 15.185832977294922, + "msecs": 601.6888618469238, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15578.91321182251, + "relativeCreated": 15594.180583953857, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" } ], - "msecs": 336.8241786956787, + "msecs": 923.987627029419, "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15900.551557540894, + "relativeCreated": 15916.479349136353, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.3216383457183838 + "time_consumption": 0.3222987651824951 }, { "args": [], - "asctime": "2021-01-11 11:37:45,338", - "created": 1610361465.338093, + "asctime": "2021-01-14 00:26:27,925", + "created": 1610580387.925391, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -196583,8 +196530,8 @@ "None", "None" ], - "asctime": "2021-01-11 11:37:45,337", - "created": 1610361465.3373487, + "asctime": "2021-01-14 00:26:27,924", + "created": 1610580387.9245627, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196594,15 +196541,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback3__' for SID=None and DID=None", "module": "__init__", - "msecs": 337.34869956970215, + "msecs": 924.5626926422119, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15901.076078414917, + "relativeCreated": 15917.054414749146, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -196612,8 +196559,8 @@ "None", "0" ], - "asctime": "2021-01-11 11:37:45,337", - "created": 1610361465.3375714, + "asctime": "2021-01-14 00:26:27,924", + "created": 1610580387.9247952, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196623,15 +196570,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback2__' for SID=None and DID=0", "module": "__init__", - "msecs": 337.571382522583, + "msecs": 924.7951507568359, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15901.298761367798, + "relativeCreated": 15917.28687286377, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -196641,8 +196588,8 @@ "10", "None" ], - "asctime": "2021-01-11 11:37:45,337", - "created": 1610361465.337757, + "asctime": "2021-01-14 00:26:27,924", + "created": 1610580387.9249835, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196652,15 +196599,15 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback1__' for SID=10 and DID=None", "module": "__init__", - "msecs": 337.7571105957031, + "msecs": 924.9835014343262, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15901.484489440918, + "relativeCreated": 15917.47522354126, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -196670,8 +196617,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:45,337", - "created": 1610361465.337956, + "asctime": "2021-01-14 00:26:27,925", + "created": 1610580387.9252477, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196681,34 +196628,34 @@ "lineno": 170, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 337.9559516906738, + "msecs": 925.2476692199707, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15901.683330535889, + "relativeCreated": 15917.739391326904, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 338.0930423736572, + "msecs": 925.3909587860107, "msg": "Registering all kind of Callbacks", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15901.820421218872, + "relativeCreated": 15917.882680892944, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00013709068298339844 + "time_consumption": 0.00014328956604003906 }, { "args": [], - "asctime": "2021-01-11 11:37:45,539", - "created": 1610361465.5396125, + "asctime": "2021-01-14 00:26:28,126", + "created": 1610580388.126965, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -196727,26 +196674,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,338", - "created": 1610361465.3384223, + "asctime": "2021-01-14 00:26:27,925", + "created": 1610580387.925727, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 338.4222984313965, + "msecs": 925.7268905639648, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15902.149677276611, + "relativeCreated": 15918.218612670898, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -196754,8 +196701,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,339", - "created": 1610361465.3392525, + "asctime": "2021-01-14 00:26:27,926", + "created": 1610580387.9268732, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196765,15 +196712,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 339.2524719238281, + "msecs": 926.8732070922852, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15902.979850769043, + "relativeCreated": 15919.364929199219, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196781,8 +196728,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,347", - "created": 1610361465.3477523, + "asctime": "2021-01-14 00:26:27,935", + "created": 1610580387.9352934, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -196792,15 +196739,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 347.75233268737793, + "msecs": 935.293436050415, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15911.479711532593, + "relativeCreated": 15927.785158157349, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196808,8 +196755,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,348", - "created": 1610361465.3480356, + "asctime": "2021-01-14 00:26:27,935", + "created": 1610580387.9355204, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196819,15 +196766,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 348.0355739593506, + "msecs": 935.5204105377197, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15911.762952804565, + "relativeCreated": 15928.012132644653, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196836,8 +196783,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,348", - "created": 1610361465.3481987, + "asctime": "2021-01-14 00:26:27,935", + "created": 1610580387.935633, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196847,15 +196794,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 348.19865226745605, + "msecs": 935.6329441070557, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15911.92603111267, + "relativeCreated": 15928.12466621399, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196863,8 +196810,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,348", - "created": 1610361465.3483958, + "asctime": "2021-01-14 00:26:27,935", + "created": 1610580387.9357793, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196874,15 +196821,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 348.39582443237305, + "msecs": 935.779333114624, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15912.123203277588, + "relativeCreated": 15928.271055221558, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196891,8 +196838,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,348", - "created": 1610361465.348534, + "asctime": "2021-01-14 00:26:27,935", + "created": 1610580387.9358685, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196902,15 +196849,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 348.53410720825195, + "msecs": 935.868501663208, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15912.261486053467, + "relativeCreated": 15928.360223770142, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196918,8 +196865,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,348", - "created": 1610361465.3487332, + "asctime": "2021-01-14 00:26:27,935", + "created": 1610580387.9359932, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196929,15 +196876,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 348.73318672180176, + "msecs": 935.9931945800781, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15912.460565567017, + "relativeCreated": 15928.484916687012, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196946,8 +196893,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,348", - "created": 1610361465.3489192, + "asctime": "2021-01-14 00:26:27,936", + "created": 1610580387.9360757, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196957,15 +196904,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 348.919153213501, + "msecs": 936.0756874084473, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15912.646532058716, + "relativeCreated": 15928.56740951538, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -196973,8 +196920,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,349", - "created": 1610361465.34913, + "asctime": "2021-01-14 00:26:27,936", + "created": 1610580387.936191, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -196984,15 +196931,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 349.12991523742676, + "msecs": 936.1910820007324, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15912.857294082642, + "relativeCreated": 15928.682804107666, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197001,8 +196948,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,349", - "created": 1610361465.3493047, + "asctime": "2021-01-14 00:26:27,936", + "created": 1610580387.9362726, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197012,15 +196959,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 349.3046760559082, + "msecs": 936.2726211547852, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15913.032054901123, + "relativeCreated": 15928.764343261719, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197028,8 +196975,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,349", - "created": 1610361465.349546, + "asctime": "2021-01-14 00:26:27,936", + "created": 1610580387.9363866, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197039,15 +196986,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 349.545955657959, + "msecs": 936.3865852355957, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15913.273334503174, + "relativeCreated": 15928.87830734253, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197056,8 +197003,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,349", - "created": 1610361465.3496807, + "asctime": "2021-01-14 00:26:27,936", + "created": 1610580387.9364681, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197067,15 +197014,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 349.68066215515137, + "msecs": 936.4681243896484, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15913.408041000366, + "relativeCreated": 15928.959846496582, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197083,8 +197030,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,349", - "created": 1610361465.3499362, + "asctime": "2021-01-14 00:26:27,936", + "created": 1610580387.936616, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -197094,15 +197041,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 349.93624687194824, + "msecs": 936.6159439086914, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15913.663625717163, + "relativeCreated": 15929.107666015625, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197110,8 +197057,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,350", - "created": 1610361465.350825, + "asctime": "2021-01-14 00:26:27,937", + "created": 1610580387.9374282, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -197121,15 +197068,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 350.82507133483887, + "msecs": 937.4282360076904, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15914.552450180054, + "relativeCreated": 15929.919958114624, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197137,8 +197084,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,350", - "created": 1610361465.35097, + "asctime": "2021-01-14 00:26:27,937", + "created": 1610580387.9375477, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197148,15 +197095,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 350.9700298309326, + "msecs": 937.5476837158203, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15914.697408676147, + "relativeCreated": 15930.039405822754, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197165,8 +197112,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,351", - "created": 1610361465.351071, + "asctime": "2021-01-14 00:26:27,937", + "created": 1610580387.937632, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197176,15 +197123,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 351.0708808898926, + "msecs": 937.6320838928223, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15914.798259735107, + "relativeCreated": 15930.123805999756, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197192,8 +197139,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:45,351", - "created": 1610361465.351239, + "asctime": "2021-01-14 00:26:27,937", + "created": 1610580387.9377804, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197203,15 +197150,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 351.2389659881592, + "msecs": 937.7803802490234, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15914.966344833374, + "relativeCreated": 15930.272102355957, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197222,26 +197169,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,351", - "created": 1610361465.3515081, + "asctime": "2021-01-14 00:26:27,938", + "created": 1610580387.9380128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 351.50814056396484, + "msecs": 938.0128383636475, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15915.23551940918, + "relativeCreated": 15930.504560470581, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197249,26 +197196,26 @@ "prot-server:", "__callback__" ], - "asctime": "2021-01-11 11:37:45,351", - "created": 1610361465.3516383, + "asctime": "2021-01-14 00:26:27,938", + "created": 1610580387.9381268, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 351.6383171081543, + "msecs": 938.126802444458, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15915.36569595337, + "relativeCreated": 15930.618524551392, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197279,26 +197226,26 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:45,351", - "created": 1610361465.3518553, + "asctime": "2021-01-14 00:26:27,938", + "created": 1610580387.9382753, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 351.8552780151367, + "msecs": 938.2753372192383, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15915.582656860352, + "relativeCreated": 15930.767059326172, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -197306,8 +197253,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:45,352", - "created": 1610361465.3524153, + "asctime": "2021-01-14 00:26:27,938", + "created": 1610580387.9387708, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -197317,15 +197264,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 352.4153232574463, + "msecs": 938.7707710266113, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15916.142702102661, + "relativeCreated": 15931.262493133545, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197333,8 +197280,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-01-11 11:37:45,360", - "created": 1610361465.3607628, + "asctime": "2021-01-14 00:26:27,947", + "created": 1610580387.9472642, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -197344,15 +197291,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 360.7628345489502, + "msecs": 947.2641944885254, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15924.490213394165, + "relativeCreated": 15939.755916595459, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197360,8 +197307,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,360", - "created": 1610361465.3609743, + "asctime": "2021-01-14 00:26:27,947", + "created": 1610580387.947584, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197371,15 +197318,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 360.9743118286133, + "msecs": 947.5839138031006, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15924.701690673828, + "relativeCreated": 15940.075635910034, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197388,8 +197335,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.361095, + "asctime": "2021-01-14 00:26:27,947", + "created": 1610580387.947755, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197399,15 +197346,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 361.0949516296387, + "msecs": 947.7550983428955, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15924.822330474854, + "relativeCreated": 15940.24682044983, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197415,8 +197362,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.3612537, + "asctime": "2021-01-14 00:26:27,947", + "created": 1610580387.947971, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197426,15 +197373,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 361.2537384033203, + "msecs": 947.9711055755615, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15924.981117248535, + "relativeCreated": 15940.462827682495, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197443,8 +197390,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.36136, + "asctime": "2021-01-14 00:26:27,948", + "created": 1610580387.9481175, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197454,15 +197401,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 361.3600730895996, + "msecs": 948.1174945831299, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.087451934814, + "relativeCreated": 15940.609216690063, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197470,8 +197417,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.3615143, + "asctime": "2021-01-14 00:26:27,948", + "created": 1610580387.9483302, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197481,15 +197428,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 361.5143299102783, + "msecs": 948.3301639556885, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.241708755493, + "relativeCreated": 15940.821886062622, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197498,8 +197445,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.361611, + "asctime": "2021-01-14 00:26:27,948", + "created": 1610580387.9484632, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197509,15 +197456,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 361.61088943481445, + "msecs": 948.4632015228271, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.33826828003, + "relativeCreated": 15940.95492362976, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197525,8 +197472,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.361746, + "asctime": "2021-01-14 00:26:27,948", + "created": 1610580387.9486473, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197536,15 +197483,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 361.74607276916504, + "msecs": 948.6472606658936, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.47345161438, + "relativeCreated": 15941.138982772827, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197553,8 +197500,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.3618412, + "asctime": "2021-01-14 00:26:27,948", + "created": 1610580387.948777, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197564,15 +197511,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 361.84120178222656, + "msecs": 948.7769603729248, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.568580627441, + "relativeCreated": 15941.268682479858, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197580,8 +197527,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,361", - "created": 1610361465.3619661, + "asctime": "2021-01-14 00:26:27,948", + "created": 1610580387.9489508, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197591,15 +197538,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 361.9661331176758, + "msecs": 948.9507675170898, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.69351196289, + "relativeCreated": 15941.442489624023, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197608,8 +197555,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,362", - "created": 1610361465.3620667, + "asctime": "2021-01-14 00:26:27,949", + "created": 1610580387.949081, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197619,15 +197566,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 362.06674575805664, + "msecs": 949.0809440612793, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.794124603271, + "relativeCreated": 15941.572666168213, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197635,8 +197582,8 @@ "comm-server:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:45,362", - "created": 1610361465.3622327, + "asctime": "2021-01-14 00:26:27,949", + "created": 1610580387.9493525, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -197646,15 +197593,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 362.2326850891113, + "msecs": 949.352502822876, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15925.960063934326, + "relativeCreated": 15941.84422492981, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197662,8 +197609,8 @@ "comm-client:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-01-11 11:37:45,363", - "created": 1610361465.3631067, + "asctime": "2021-01-14 00:26:27,950", + "created": 1610580387.950297, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -197673,15 +197620,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 363.10672760009766, + "msecs": 950.2971172332764, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15926.834106445312, + "relativeCreated": 15942.78883934021, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197689,8 +197636,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,363", - "created": 1610361465.3632824, + "asctime": "2021-01-14 00:26:27,950", + "created": 1610580387.9505448, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197700,15 +197647,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 363.2824420928955, + "msecs": 950.5448341369629, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15927.00982093811, + "relativeCreated": 15943.036556243896, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197717,8 +197664,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,363", - "created": 1610361465.3634048, + "asctime": "2021-01-14 00:26:27,950", + "created": 1610580387.950716, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197728,15 +197675,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 363.4047508239746, + "msecs": 950.7160186767578, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15927.13212966919, + "relativeCreated": 15943.207740783691, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197744,8 +197691,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" ], - "asctime": "2021-01-11 11:37:45,363", - "created": 1610361465.3635802, + "asctime": "2021-01-14 00:26:27,950", + "created": 1610580387.9509568, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -197755,15 +197702,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", "module": "stp", - "msecs": 363.58022689819336, + "msecs": 950.9568214416504, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15927.307605743408, + "relativeCreated": 15943.448543548584, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -197774,74 +197721,74 @@ "status: okay", "33" ], - "asctime": "2021-01-11 11:37:45,363", - "created": 1610361465.363874, + "asctime": "2021-01-14 00:26:27,951", + "created": 1610580387.9513578, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 363.8739585876465, + "msecs": 951.3578414916992, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15927.601337432861, + "relativeCreated": 15943.849563598633, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:45,364", - "created": 1610361465.3640463, + "asctime": "2021-01-14 00:26:27,951", + "created": 1610580387.9516811, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 364.0463352203369, + "msecs": 951.6811370849609, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 15927.773714065552, + "relativeCreated": 15944.172859191895, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" } ], - "msecs": 539.6125316619873, + "msecs": 126.96504592895508, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16103.339910507202, + "relativeCreated": 16119.456768035889, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.1755661964416504 + "time_consumption": 0.17528390884399414 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:45,540", - "created": 1610361465.5405107, + "asctime": "2021-01-14 00:26:28,127", + "created": 1610580388.1278167, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -197858,8 +197805,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:45,540", - "created": 1610361465.5400987, + "asctime": "2021-01-14 00:26:28,127", + "created": 1610580388.1274648, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -197869,15 +197816,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 540.0986671447754, + "msecs": 127.46477127075195, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16103.82604598999, + "relativeCreated": 16119.956493377686, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -197886,8 +197833,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:45,540", - "created": 1610361465.5403109, + "asctime": "2021-01-14 00:26:28,127", + "created": 1610580388.1276493, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -197897,37 +197844,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 540.3108596801758, + "msecs": 127.64930725097656, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16104.03823852539, + "relativeCreated": 16120.14102935791, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 540.5106544494629, + "msecs": 127.81667709350586, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16104.238033294678, + "relativeCreated": 16120.30839920044, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00019979476928710938 + "time_consumption": 0.00016736984252929688 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:45,541", - "created": 1610361465.5410953, + "asctime": "2021-01-14 00:26:28,128", + "created": 1610580388.128348, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -197944,8 +197891,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-11 11:37:45,540", - "created": 1610361465.5407915, + "asctime": "2021-01-14 00:26:28,128", + "created": 1610580388.1280549, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -197955,15 +197902,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 540.7915115356445, + "msecs": 128.05485725402832, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16104.51889038086, + "relativeCreated": 16120.546579360962, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -197972,8 +197919,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:45,540", - "created": 1610361465.5409482, + "asctime": "2021-01-14 00:26:28,128", + "created": 1610580388.128204, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -197983,34 +197930,34 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 540.9481525421143, + "msecs": 128.2041072845459, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16104.67553138733, + "relativeCreated": 16120.69582939148, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 541.0952568054199, + "msecs": 128.34811210632324, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16104.822635650635, + "relativeCreated": 16120.839834213257, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00014710426330566406 + "time_consumption": 0.00014400482177734375 }, { "args": [], - "asctime": "2021-01-11 11:37:45,541", - "created": 1610361465.5415423, + "asctime": "2021-01-14 00:26:28,128", + "created": 1610580388.1288018, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -198028,8 +197975,8 @@ "10", "0" ], - "asctime": "2021-01-11 11:37:45,541", - "created": 1610361465.5413854, + "asctime": "2021-01-14 00:26:28,128", + "created": 1610580388.128639, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -198039,34 +197986,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 541.3854122161865, + "msecs": 128.63898277282715, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16105.112791061401, + "relativeCreated": 16121.13070487976, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 541.5422916412354, + "msecs": 128.80182266235352, "msg": "Removing Callback for a specific Data- and Service-ID", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16105.26967048645, + "relativeCreated": 16121.293544769287, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00015687942504882812 + "time_consumption": 0.0001628398895263672 }, { "args": [], - "asctime": "2021-01-11 11:37:45,743", - "created": 1610361465.7430918, + "asctime": "2021-01-14 00:26:28,330", + "created": 1610580388.3302956, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -198085,26 +198032,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,541", - "created": 1610361465.54185, + "asctime": "2021-01-14 00:26:28,129", + "created": 1610580388.129162, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 541.8500900268555, + "msecs": 129.16207313537598, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16105.57746887207, + "relativeCreated": 16121.65379524231, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -198112,8 +198059,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,542", - "created": 1610361465.5429497, + "asctime": "2021-01-14 00:26:28,130", + "created": 1610580388.1303685, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -198123,15 +198070,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 542.9496765136719, + "msecs": 130.36847114562988, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16106.677055358887, + "relativeCreated": 16122.860193252563, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198139,8 +198086,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,551", - "created": 1610361465.5512989, + "asctime": "2021-01-14 00:26:28,138", + "created": 1610580388.1387985, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -198150,15 +198097,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 551.2988567352295, + "msecs": 138.79847526550293, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16115.026235580444, + "relativeCreated": 16131.290197372437, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198166,8 +198113,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,551", - "created": 1610361465.5515072, + "asctime": "2021-01-14 00:26:28,139", + "created": 1610580388.1390636, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198177,15 +198124,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 551.5072345733643, + "msecs": 139.06359672546387, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16115.23461341858, + "relativeCreated": 16131.555318832397, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198194,8 +198141,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,551", - "created": 1610361465.5516279, + "asctime": "2021-01-14 00:26:28,139", + "created": 1610580388.1392114, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198205,15 +198152,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 551.6278743743896, + "msecs": 139.21141624450684, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16115.355253219604, + "relativeCreated": 16131.70313835144, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198221,8 +198168,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,551", - "created": 1610361465.5517743, + "asctime": "2021-01-14 00:26:28,139", + "created": 1610580388.1393933, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198232,15 +198179,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 551.774263381958, + "msecs": 139.39332962036133, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16115.501642227173, + "relativeCreated": 16131.885051727295, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198249,8 +198196,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,551", - "created": 1610361465.5518794, + "asctime": "2021-01-14 00:26:28,139", + "created": 1610580388.1395211, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198260,15 +198207,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 551.8794059753418, + "msecs": 139.52112197875977, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16115.606784820557, + "relativeCreated": 16132.012844085693, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198276,8 +198223,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,552", - "created": 1610361465.552047, + "asctime": "2021-01-14 00:26:28,139", + "created": 1610580388.139726, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198287,15 +198234,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 552.0470142364502, + "msecs": 139.725923538208, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16115.774393081665, + "relativeCreated": 16132.217645645142, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198304,8 +198251,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,552", - "created": 1610361465.552146, + "asctime": "2021-01-14 00:26:28,139", + "created": 1610580388.1398468, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198315,15 +198262,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 552.1459579467773, + "msecs": 139.8468017578125, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16115.873336791992, + "relativeCreated": 16132.338523864746, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198331,8 +198278,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,552", - "created": 1610361465.5523129, + "asctime": "2021-01-14 00:26:28,140", + "created": 1610580388.1400125, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198342,15 +198289,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 552.3128509521484, + "msecs": 140.0125026702881, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16116.040229797363, + "relativeCreated": 16132.504224777222, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198359,8 +198306,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,552", - "created": 1610361465.552414, + "asctime": "2021-01-14 00:26:28,140", + "created": 1610580388.140129, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198370,15 +198317,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 552.4139404296875, + "msecs": 140.12908935546875, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16116.141319274902, + "relativeCreated": 16132.620811462402, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198386,8 +198333,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,552", - "created": 1610361465.5525403, + "asctime": "2021-01-14 00:26:28,140", + "created": 1610580388.1402807, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198397,15 +198344,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 552.5403022766113, + "msecs": 140.28072357177734, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16116.267681121826, + "relativeCreated": 16132.772445678711, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198414,8 +198361,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,552", - "created": 1610361465.5526454, + "asctime": "2021-01-14 00:26:28,140", + "created": 1610580388.1403968, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198425,15 +198372,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 552.6454448699951, + "msecs": 140.3968334197998, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16116.37282371521, + "relativeCreated": 16132.888555526733, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198441,8 +198388,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,552", - "created": 1610361465.5528405, + "asctime": "2021-01-14 00:26:28,140", + "created": 1610580388.140611, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -198452,15 +198399,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 552.8404712677002, + "msecs": 140.610933303833, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16116.567850112915, + "relativeCreated": 16133.102655410767, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198468,8 +198415,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,553", - "created": 1610361465.5536945, + "asctime": "2021-01-14 00:26:28,141", + "created": 1610580388.141505, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -198479,15 +198426,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 553.694486618042, + "msecs": 141.50500297546387, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16117.421865463257, + "relativeCreated": 16133.996725082397, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198495,8 +198442,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,553", - "created": 1610361465.5538266, + "asctime": "2021-01-14 00:26:28,141", + "created": 1610580388.1416864, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198506,15 +198453,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 553.8265705108643, + "msecs": 141.68643951416016, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16117.55394935608, + "relativeCreated": 16134.178161621094, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198523,8 +198470,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,553", - "created": 1610361465.553925, + "asctime": "2021-01-14 00:26:28,141", + "created": 1610580388.1418314, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198534,15 +198481,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 553.9250373840332, + "msecs": 141.8313980102539, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16117.652416229248, + "relativeCreated": 16134.323120117188, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198550,8 +198497,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:45,554", - "created": 1610361465.5540926, + "asctime": "2021-01-14 00:26:28,142", + "created": 1610580388.142061, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198561,15 +198508,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 554.0926456451416, + "msecs": 142.0609951019287, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16117.820024490356, + "relativeCreated": 16134.552717208862, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198580,26 +198527,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,554", - "created": 1610361465.554364, + "asctime": "2021-01-14 00:26:28,142", + "created": 1610580388.1424484, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 554.3639659881592, + "msecs": 142.44842529296875, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16118.091344833374, + "relativeCreated": 16134.940147399902, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198607,26 +198554,26 @@ "prot-server:", "__callback1__" ], - "asctime": "2021-01-11 11:37:45,554", - "created": 1610361465.5544977, + "asctime": "2021-01-14 00:26:28,142", + "created": 1610580388.1426356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback1__ to process received data", "module": "__init__", - "msecs": 554.4977188110352, + "msecs": 142.63558387756348, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16118.22509765625, + "relativeCreated": 16135.127305984497, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198637,26 +198584,26 @@ "status: operation not permitted", "34" ], - "asctime": "2021-01-11 11:37:45,554", - "created": 1610361465.5546787, + "asctime": "2021-01-14 00:26:28,142", + "created": 1610580388.1429172, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 554.6786785125732, + "msecs": 142.91715621948242, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16118.406057357788, + "relativeCreated": 16135.408878326416, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -198664,8 +198611,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53" ], - "asctime": "2021-01-11 11:37:45,555", - "created": 1610361465.5552485, + "asctime": "2021-01-14 00:26:28,143", + "created": 1610580388.143827, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -198675,15 +198622,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53", "module": "__init__", - "msecs": 555.248498916626, + "msecs": 143.82696151733398, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16118.97587776184, + "relativeCreated": 16136.318683624268, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198691,8 +198638,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53" ], - "asctime": "2021-01-11 11:37:45,563", - "created": 1610361465.563606, + "asctime": "2021-01-14 00:26:28,152", + "created": 1610580388.152348, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -198702,15 +198649,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53", "module": "__init__", - "msecs": 563.6060237884521, + "msecs": 152.34804153442383, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16127.333402633667, + "relativeCreated": 16144.839763641357, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198718,8 +198665,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,563", - "created": 1610361465.5638096, + "asctime": "2021-01-14 00:26:28,152", + "created": 1610580388.1526518, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198729,15 +198676,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 563.8096332550049, + "msecs": 152.65178680419922, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16127.53701210022, + "relativeCreated": 16145.143508911133, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198746,8 +198693,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,563", - "created": 1610361465.5639186, + "asctime": "2021-01-14 00:26:28,152", + "created": 1610580388.1528177, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198757,15 +198704,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 563.9185905456543, + "msecs": 152.8177261352539, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16127.64596939087, + "relativeCreated": 16145.309448242188, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198773,8 +198720,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.5640504, + "asctime": "2021-01-14 00:26:28,153", + "created": 1610580388.1530185, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198784,15 +198731,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 564.0504360198975, + "msecs": 153.01847457885742, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16127.777814865112, + "relativeCreated": 16145.510196685791, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198801,8 +198748,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.5641618, + "asctime": "2021-01-14 00:26:28,153", + "created": 1610580388.1532254, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198812,15 +198759,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 564.1617774963379, + "msecs": 153.22542190551758, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16127.889156341553, + "relativeCreated": 16145.717144012451, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198828,8 +198775,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.564297, + "asctime": "2021-01-14 00:26:28,153", + "created": 1610580388.1534326, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198839,15 +198786,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 564.2969608306885, + "msecs": 153.43260765075684, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16128.024339675903, + "relativeCreated": 16145.92432975769, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198856,8 +198803,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.5644052, + "asctime": "2021-01-14 00:26:28,153", + "created": 1610580388.1535695, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198867,15 +198814,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 564.4052028656006, + "msecs": 153.56945991516113, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16128.132581710815, + "relativeCreated": 16146.061182022095, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198883,8 +198830,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.5645306, + "asctime": "2021-01-14 00:26:28,153", + "created": 1610580388.153756, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198894,15 +198841,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 564.530611038208, + "msecs": 153.75590324401855, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16128.257989883423, + "relativeCreated": 16146.247625350952, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198911,8 +198858,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.5646183, + "asctime": "2021-01-14 00:26:28,153", + "created": 1610580388.1538885, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198922,15 +198869,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 564.6183490753174, + "msecs": 153.88846397399902, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16128.345727920532, + "relativeCreated": 16146.380186080933, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198938,8 +198885,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.564734, + "asctime": "2021-01-14 00:26:28,154", + "created": 1610580388.15406, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198949,15 +198896,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 564.7339820861816, + "msecs": 154.05988693237305, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16128.461360931396, + "relativeCreated": 16146.551609039307, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198966,8 +198913,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,564", - "created": 1610361465.5648477, + "asctime": "2021-01-14 00:26:28,154", + "created": 1610580388.1541905, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -198977,15 +198924,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 564.8477077484131, + "msecs": 154.1905403137207, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16128.575086593628, + "relativeCreated": 16146.682262420654, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -198993,8 +198940,8 @@ "comm-server:", "(5): 62 51 ca 3a 3e" ], - "asctime": "2021-01-11 11:37:45,565", - "created": 1610361465.5650132, + "asctime": "2021-01-14 00:26:28,154", + "created": 1610580388.1544225, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -199004,15 +198951,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): 62 51 ca 3a 3e", "module": "__init__", - "msecs": 565.0131702423096, + "msecs": 154.42252159118652, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16128.740549087524, + "relativeCreated": 16146.91424369812, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -199020,8 +198967,8 @@ "comm-client:", "(5): 62 51 ca 3a 3e" ], - "asctime": "2021-01-11 11:37:45,565", - "created": 1610361465.565843, + "asctime": "2021-01-14 00:26:28,155", + "created": 1610580388.1553006, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -199031,15 +198978,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): 62 51 ca 3a 3e", "module": "__init__", - "msecs": 565.8431053161621, + "msecs": 155.30061721801758, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16129.570484161377, + "relativeCreated": 16147.792339324951, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -199047,8 +198994,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,565", - "created": 1610361465.565959, + "asctime": "2021-01-14 00:26:28,155", + "created": 1610580388.155433, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199058,15 +199005,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 565.9589767456055, + "msecs": 155.43293952941895, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16129.68635559082, + "relativeCreated": 16147.924661636353, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -199075,8 +199022,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,566", - "created": 1610361465.5660577, + "asctime": "2021-01-14 00:26:28,155", + "created": 1610580388.1555405, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199086,15 +199033,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 566.0576820373535, + "msecs": 155.54046630859375, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16129.785060882568, + "relativeCreated": 16148.032188415527, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -199102,8 +199049,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca" ], - "asctime": "2021-01-11 11:37:45,566", - "created": 1610361465.566221, + "asctime": "2021-01-14 00:26:28,155", + "created": 1610580388.1557255, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199113,15 +199060,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca", "module": "stp", - "msecs": 566.2209987640381, + "msecs": 155.72547912597656, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16129.948377609253, + "relativeCreated": 16148.21720123291, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -199132,74 +199079,74 @@ "status: operation not permitted", "34" ], - "asctime": "2021-01-11 11:37:45,566", - "created": 1610361465.5664814, + "asctime": "2021-01-14 00:26:28,156", + "created": 1610580388.1560376, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 566.481351852417, + "msecs": 156.0375690460205, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16130.208730697632, + "relativeCreated": 16148.529291152954, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:45,566", - "created": 1610361465.566623, + "asctime": "2021-01-14 00:26:28,156", + "created": 1610580388.1562169, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 566.6229724884033, + "msecs": 156.21685981750488, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16130.350351333618, + "relativeCreated": 16148.708581924438, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" } ], - "msecs": 743.0918216705322, + "msecs": 330.2955627441406, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16306.819200515747, + "relativeCreated": 16322.787284851074, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.1764688491821289 + "time_consumption": 0.17407870292663574 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:45,743", - "created": 1610361465.7439923, + "asctime": "2021-01-14 00:26:28,331", + "created": 1610580388.3312228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -199216,8 +199163,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:45,743", - "created": 1610361465.7436376, + "asctime": "2021-01-14 00:26:28,330", + "created": 1610580388.330868, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -199227,15 +199174,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 743.6375617980957, + "msecs": 330.8680057525635, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16307.36494064331, + "relativeCreated": 16323.359727859497, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -199244,8 +199191,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:45,743", - "created": 1610361465.743829, + "asctime": "2021-01-14 00:26:28,331", + "created": 1610580388.3310568, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -199255,37 +199202,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 743.8290119171143, + "msecs": 331.0568332672119, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16307.55639076233, + "relativeCreated": 16323.548555374146, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 743.9923286437988, + "msecs": 331.2227725982666, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16307.719707489014, + "relativeCreated": 16323.7144947052, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001633167266845703 + "time_consumption": 0.0001659393310546875 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34}", "" ], - "asctime": "2021-01-11 11:37:45,744", - "created": 1610361465.744522, + "asctime": "2021-01-14 00:26:28,331", + "created": 1610580388.3317776, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -199302,8 +199249,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34}", "" ], - "asctime": "2021-01-11 11:37:45,744", - "created": 1610361465.7442322, + "asctime": "2021-01-14 00:26:28,331", + "created": 1610580388.3314838, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -199313,15 +199260,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34} ()", "module": "test", - "msecs": 744.232177734375, + "msecs": 331.4838409423828, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16307.95955657959, + "relativeCreated": 16323.975563049316, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -199330,8 +199277,8 @@ "{'data': 34, 'data_id': 0, 'service_id': 11, 'status': 6}", "" ], - "asctime": "2021-01-11 11:37:45,744", - "created": 1610361465.7443783, + "asctime": "2021-01-14 00:26:28,331", + "created": 1610580388.3316321, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -199341,34 +199288,34 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 34, 'data_id': 0, 'service_id': 11, 'status': 6} ()", "module": "test", - "msecs": 744.3783283233643, + "msecs": 331.632137298584, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16308.10570716858, + "relativeCreated": 16324.123859405518, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 744.5220947265625, + "msecs": 331.77757263183594, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16308.249473571777, + "relativeCreated": 16324.26929473877, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001437664031982422 + "time_consumption": 0.00014543533325195312 }, { "args": [], - "asctime": "2021-01-11 11:37:45,744", - "created": 1610361465.7449784, + "asctime": "2021-01-14 00:26:28,332", + "created": 1610580388.3321917, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -199386,8 +199333,8 @@ "10", "None" ], - "asctime": "2021-01-11 11:37:45,744", - "created": 1610361465.7448213, + "asctime": "2021-01-14 00:26:28,332", + "created": 1610580388.3320384, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -199397,34 +199344,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", "module": "__init__", - "msecs": 744.821310043335, + "msecs": 332.03840255737305, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16308.54868888855, + "relativeCreated": 16324.530124664307, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 744.9784278869629, + "msecs": 332.19170570373535, "msg": "Removing Callback for a specific Service-ID and all Data-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16308.705806732178, + "relativeCreated": 16324.683427810669, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001571178436279297 + "time_consumption": 0.0001533031463623047 }, { "args": [], - "asctime": "2021-01-11 11:37:45,946", - "created": 1610361465.9466996, + "asctime": "2021-01-14 00:26:28,533", + "created": 1610580388.533769, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -199443,26 +199390,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,745", - "created": 1610361465.7452953, + "asctime": "2021-01-14 00:26:28,332", + "created": 1610580388.3325076, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 745.2952861785889, + "msecs": 332.5076103210449, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16309.022665023804, + "relativeCreated": 16324.999332427979, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -199470,8 +199417,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,746", - "created": 1610361465.7467058, + "asctime": "2021-01-14 00:26:28,334", + "created": 1610580388.334237, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -199481,15 +199428,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 746.7057704925537, + "msecs": 334.23709869384766, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16310.433149337769, + "relativeCreated": 16326.728820800781, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199497,8 +199444,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,755", - "created": 1610361465.7551877, + "asctime": "2021-01-14 00:26:28,342", + "created": 1610580388.342674, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -199508,15 +199455,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 755.1877498626709, + "msecs": 342.67401695251465, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16318.915128707886, + "relativeCreated": 16335.165739059448, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199524,8 +199471,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,755", - "created": 1610361465.7554739, + "asctime": "2021-01-14 00:26:28,342", + "created": 1610580388.3429189, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199535,15 +199482,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 755.4738521575928, + "msecs": 342.91887283325195, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16319.201231002808, + "relativeCreated": 16335.410594940186, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199552,8 +199499,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,755", - "created": 1610361465.7556643, + "asctime": "2021-01-14 00:26:28,343", + "created": 1610580388.3430753, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199563,15 +199510,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.6643486022949, + "msecs": 343.0752754211426, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16319.39172744751, + "relativeCreated": 16335.566997528076, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199579,8 +199526,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,755", - "created": 1610361465.755866, + "asctime": "2021-01-14 00:26:28,343", + "created": 1610580388.3432512, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199590,15 +199537,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.8660507202148, + "msecs": 343.25122833251953, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16319.59342956543, + "relativeCreated": 16335.742950439453, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199607,8 +199554,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,756", - "created": 1610361465.7560046, + "asctime": "2021-01-14 00:26:28,343", + "created": 1610580388.3433707, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199618,15 +199565,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 756.0045719146729, + "msecs": 343.3706760406494, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16319.731950759888, + "relativeCreated": 16335.862398147583, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199634,8 +199581,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,756", - "created": 1610361465.756204, + "asctime": "2021-01-14 00:26:28,343", + "created": 1610580388.3435323, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199645,15 +199592,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 756.2038898468018, + "msecs": 343.5323238372803, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16319.931268692017, + "relativeCreated": 16336.024045944214, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199662,8 +199609,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,756", - "created": 1610361465.7563345, + "asctime": "2021-01-14 00:26:28,343", + "created": 1610580388.3436399, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199673,15 +199620,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 756.3345432281494, + "msecs": 343.6398506164551, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16320.061922073364, + "relativeCreated": 16336.131572723389, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199689,8 +199636,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,756", - "created": 1610361465.7565217, + "asctime": "2021-01-14 00:26:28,343", + "created": 1610580388.3437889, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199700,15 +199647,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 756.5217018127441, + "msecs": 343.78886222839355, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16320.249080657959, + "relativeCreated": 16336.280584335327, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199717,8 +199664,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,756", - "created": 1610361465.7566714, + "asctime": "2021-01-14 00:26:28,343", + "created": 1610580388.3439238, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199728,15 +199675,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 756.6714286804199, + "msecs": 343.92380714416504, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16320.398807525635, + "relativeCreated": 16336.415529251099, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199744,8 +199691,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,756", - "created": 1610361465.7568822, + "asctime": "2021-01-14 00:26:28,344", + "created": 1610580388.3440688, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199755,15 +199702,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 756.8821907043457, + "msecs": 344.0687656402588, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16320.60956954956, + "relativeCreated": 16336.560487747192, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199772,8 +199719,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,757", - "created": 1610361465.757019, + "asctime": "2021-01-14 00:26:28,344", + "created": 1610580388.3441753, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199783,15 +199730,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 757.01904296875, + "msecs": 344.1753387451172, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16320.746421813965, + "relativeCreated": 16336.66706085205, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199799,8 +199746,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,757", - "created": 1610361465.7572699, + "asctime": "2021-01-14 00:26:28,344", + "created": 1610580388.344383, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -199810,15 +199757,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 757.2698593139648, + "msecs": 344.38300132751465, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16320.99723815918, + "relativeCreated": 16336.874723434448, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199826,8 +199773,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,758", - "created": 1610361465.758208, + "asctime": "2021-01-14 00:26:28,345", + "created": 1610580388.345257, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -199837,15 +199784,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 758.2080364227295, + "msecs": 345.257043838501, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16321.935415267944, + "relativeCreated": 16337.748765945435, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199853,8 +199800,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,758", - "created": 1610361465.758451, + "asctime": "2021-01-14 00:26:28,345", + "created": 1610580388.3454566, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199864,15 +199811,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 758.450984954834, + "msecs": 345.456600189209, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16322.178363800049, + "relativeCreated": 16337.948322296143, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199881,8 +199828,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,758", - "created": 1610361465.7586145, + "asctime": "2021-01-14 00:26:28,345", + "created": 1610580388.345592, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199892,15 +199839,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 758.6145401000977, + "msecs": 345.5920219421387, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16322.341918945312, + "relativeCreated": 16338.083744049072, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199908,8 +199855,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:45,758", - "created": 1610361465.7588573, + "asctime": "2021-01-14 00:26:28,345", + "created": 1610580388.34579, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -199919,15 +199866,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 758.857250213623, + "msecs": 345.78990936279297, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16322.584629058838, + "relativeCreated": 16338.281631469727, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199938,26 +199885,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,759", - "created": 1610361465.7592194, + "asctime": "2021-01-14 00:26:28,346", + "created": 1610580388.346095, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 759.2194080352783, + "msecs": 346.09508514404297, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16322.946786880493, + "relativeCreated": 16338.586807250977, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199965,26 +199912,26 @@ "prot-server:", "__callback2__" ], - "asctime": "2021-01-11 11:37:45,759", - "created": 1610361465.7594273, + "asctime": "2021-01-14 00:26:28,346", + "created": 1610580388.3462555, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback2__ to process received data", "module": "__init__", - "msecs": 759.4273090362549, + "msecs": 346.2555408477783, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16323.15468788147, + "relativeCreated": 16338.747262954712, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -199995,26 +199942,26 @@ "status: operation not permitted", "35" ], - "asctime": "2021-01-11 11:37:45,759", - "created": 1610361465.759694, + "asctime": "2021-01-14 00:26:28,346", + "created": 1610580388.3464806, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 759.6940994262695, + "msecs": 346.4806079864502, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16323.421478271484, + "relativeCreated": 16338.972330093384, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -200022,8 +199969,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a" ], - "asctime": "2021-01-11 11:37:45,760", - "created": 1610361465.7604635, + "asctime": "2021-01-14 00:26:28,347", + "created": 1610580388.3471267, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -200033,15 +199980,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a", "module": "__init__", - "msecs": 760.4634761810303, + "msecs": 347.12672233581543, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16324.190855026245, + "relativeCreated": 16339.618444442749, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200049,8 +199996,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a" ], - "asctime": "2021-01-11 11:37:45,768", - "created": 1610361465.7687182, + "asctime": "2021-01-14 00:26:28,355", + "created": 1610580388.3555408, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -200060,15 +200007,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a", "module": "__init__", - "msecs": 768.7182426452637, + "msecs": 355.5407524108887, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16332.445621490479, + "relativeCreated": 16348.032474517822, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200076,8 +200023,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,768", - "created": 1610361465.7688906, + "asctime": "2021-01-14 00:26:28,355", + "created": 1610580388.3557916, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200087,15 +200034,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 768.8906192779541, + "msecs": 355.7915687561035, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16332.617998123169, + "relativeCreated": 16348.283290863037, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200104,8 +200051,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,768", - "created": 1610361465.7689683, + "asctime": "2021-01-14 00:26:28,355", + "created": 1610580388.3559282, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200115,15 +200062,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 768.9683437347412, + "msecs": 355.9281826019287, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16332.695722579956, + "relativeCreated": 16348.419904708862, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200131,8 +200078,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7690752, + "asctime": "2021-01-14 00:26:28,356", + "created": 1610580388.3561163, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200142,15 +200089,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 769.0751552581787, + "msecs": 356.11629486083984, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16332.802534103394, + "relativeCreated": 16348.608016967773, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200159,8 +200106,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7691426, + "asctime": "2021-01-14 00:26:28,356", + "created": 1610580388.3562331, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200170,15 +200117,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 769.1426277160645, + "msecs": 356.2331199645996, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16332.87000656128, + "relativeCreated": 16348.724842071533, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200186,8 +200133,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7692385, + "asctime": "2021-01-14 00:26:28,356", + "created": 1610580388.3563952, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200197,15 +200144,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 769.2384719848633, + "msecs": 356.3952445983887, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16332.965850830078, + "relativeCreated": 16348.886966705322, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200214,8 +200161,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7693071, + "asctime": "2021-01-14 00:26:28,356", + "created": 1610580388.3565032, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200225,15 +200172,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 769.3071365356445, + "msecs": 356.5032482147217, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16333.03451538086, + "relativeCreated": 16348.994970321655, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200241,8 +200188,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7693944, + "asctime": "2021-01-14 00:26:28,356", + "created": 1610580388.3566515, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200252,15 +200199,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 769.3943977355957, + "msecs": 356.65154457092285, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16333.12177658081, + "relativeCreated": 16349.143266677856, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200269,8 +200216,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.769456, + "asctime": "2021-01-14 00:26:28,356", + "created": 1610580388.3567572, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200280,15 +200227,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 769.4559097290039, + "msecs": 356.75716400146484, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16333.183288574219, + "relativeCreated": 16349.248886108398, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200296,8 +200243,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7695389, + "asctime": "2021-01-14 00:26:28,356", + "created": 1610580388.356894, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200307,15 +200254,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 769.5388793945312, + "msecs": 356.89401626586914, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16333.266258239746, + "relativeCreated": 16349.385738372803, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200324,8 +200271,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7696, + "asctime": "2021-01-14 00:26:28,357", + "created": 1610580388.3570085, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200335,15 +200282,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 769.5999145507812, + "msecs": 357.0084571838379, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16333.327293395996, + "relativeCreated": 16349.500179290771, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200351,8 +200298,8 @@ "comm-server:", "(5): 79 60 8b 3a 3e" ], - "asctime": "2021-01-11 11:37:45,769", - "created": 1610361465.7697122, + "asctime": "2021-01-14 00:26:28,357", + "created": 1610580388.35724, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -200362,15 +200309,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): 79 60 8b 3a 3e", "module": "__init__", - "msecs": 769.7122097015381, + "msecs": 357.2399616241455, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16333.439588546753, + "relativeCreated": 16349.73168373108, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200378,8 +200325,8 @@ "comm-client:", "(5): 79 60 8b 3a 3e" ], - "asctime": "2021-01-11 11:37:45,770", - "created": 1610361465.7705603, + "asctime": "2021-01-14 00:26:28,358", + "created": 1610580388.3581016, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -200389,15 +200336,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): 79 60 8b 3a 3e", "module": "__init__", - "msecs": 770.5602645874023, + "msecs": 358.10160636901855, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16334.287643432617, + "relativeCreated": 16350.593328475952, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200405,8 +200352,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,770", - "created": 1610361465.7707524, + "asctime": "2021-01-14 00:26:28,358", + "created": 1610580388.3582335, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200416,15 +200363,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 770.7524299621582, + "msecs": 358.2334518432617, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16334.479808807373, + "relativeCreated": 16350.725173950195, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200433,8 +200380,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,770", - "created": 1610361465.7708752, + "asctime": "2021-01-14 00:26:28,358", + "created": 1610580388.3583534, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200444,15 +200391,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 770.8752155303955, + "msecs": 358.3533763885498, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16334.60259437561, + "relativeCreated": 16350.845098495483, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200460,8 +200407,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b" ], - "asctime": "2021-01-11 11:37:45,771", - "created": 1610361465.771066, + "asctime": "2021-01-14 00:26:28,358", + "created": 1610580388.3585653, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200471,15 +200418,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b", "module": "stp", - "msecs": 771.0659503936768, + "msecs": 358.5653305053711, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16334.793329238892, + "relativeCreated": 16351.057052612305, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -200490,74 +200437,74 @@ "status: operation not permitted", "35" ], - "asctime": "2021-01-11 11:37:45,771", - "created": 1610361465.7713456, + "asctime": "2021-01-14 00:26:28,358", + "created": 1610580388.358888, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 771.3456153869629, + "msecs": 358.8879108428955, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16335.072994232178, + "relativeCreated": 16351.37963294983, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:45,771", - "created": 1610361465.771501, + "asctime": "2021-01-14 00:26:28,359", + "created": 1610580388.3590603, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 771.5010643005371, + "msecs": 359.06028747558594, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16335.228443145752, + "relativeCreated": 16351.55200958252, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" } ], - "msecs": 946.6996192932129, + "msecs": 533.768892288208, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16510.426998138428, + "relativeCreated": 16526.26061439514, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.17519855499267578 + "time_consumption": 0.17470860481262207 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:45,947", - "created": 1610361465.9475603, + "asctime": "2021-01-14 00:26:28,534", + "created": 1610580388.5347526, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -200574,8 +200521,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:45,947", - "created": 1610361465.9472044, + "asctime": "2021-01-14 00:26:28,534", + "created": 1610580388.5343726, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -200585,15 +200532,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 947.2043514251709, + "msecs": 534.3725681304932, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16510.931730270386, + "relativeCreated": 16526.864290237427, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -200602,8 +200549,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:45,947", - "created": 1610361465.947393, + "asctime": "2021-01-14 00:26:28,534", + "created": 1610580388.5345604, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -200613,37 +200560,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 947.3929405212402, + "msecs": 534.5604419708252, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16511.120319366455, + "relativeCreated": 16527.05216407776, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 947.5603103637695, + "msecs": 534.752607345581, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16511.287689208984, + "relativeCreated": 16527.244329452515, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016736984252929688 + "time_consumption": 0.00019216537475585938 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35}", "" ], - "asctime": "2021-01-11 11:37:45,948", - "created": 1610361465.9481013, + "asctime": "2021-01-14 00:26:28,535", + "created": 1610580388.5353057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -200660,8 +200607,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35}", "" ], - "asctime": "2021-01-11 11:37:45,947", - "created": 1610361465.9477973, + "asctime": "2021-01-14 00:26:28,534", + "created": 1610580388.5349905, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -200671,15 +200618,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35} ()", "module": "test", - "msecs": 947.7972984313965, + "msecs": 534.9905490875244, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16511.52467727661, + "relativeCreated": 16527.482271194458, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -200688,8 +200635,8 @@ "{'data': 35, 'data_id': 0, 'service_id': 11, 'status': 6}", "" ], - "asctime": "2021-01-11 11:37:45,947", - "created": 1610361465.9479556, + "asctime": "2021-01-14 00:26:28,535", + "created": 1610580388.5351567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -200699,34 +200646,34 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 35, 'data_id': 0, 'service_id': 11, 'status': 6} ()", "module": "test", - "msecs": 947.9556083679199, + "msecs": 535.1567268371582, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16511.682987213135, + "relativeCreated": 16527.64844894409, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 948.101282119751, + "msecs": 535.3057384490967, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16511.828660964966, + "relativeCreated": 16527.79746055603, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001456737518310547 + "time_consumption": 0.00014901161193847656 }, { "args": [], - "asctime": "2021-01-11 11:37:45,948", - "created": 1610361465.948513, + "asctime": "2021-01-14 00:26:28,535", + "created": 1610580388.5357206, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -200744,8 +200691,8 @@ "None", "0" ], - "asctime": "2021-01-11 11:37:45,948", - "created": 1610361465.9483616, + "asctime": "2021-01-14 00:26:28,535", + "created": 1610580388.5355694, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -200755,34 +200702,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", "module": "__init__", - "msecs": 948.3616352081299, + "msecs": 535.569429397583, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16512.089014053345, + "relativeCreated": 16528.061151504517, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 948.5130310058594, + "msecs": 535.7205867767334, "msg": "Removing Callback for a specific Data-ID and all Serice-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16512.240409851074, + "relativeCreated": 16528.212308883667, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001513957977294922 + "time_consumption": 0.00015115737915039062 }, { "args": [], - "asctime": "2021-01-11 11:37:46,150", - "created": 1610361466.1500416, + "asctime": "2021-01-14 00:26:28,737", + "created": 1610580388.737297, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -200801,26 +200748,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,948", - "created": 1610361465.9488707, + "asctime": "2021-01-14 00:26:28,536", + "created": 1610580388.5360491, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 948.8706588745117, + "msecs": 536.0491275787354, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16512.598037719727, + "relativeCreated": 16528.54084968567, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -200828,8 +200775,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,950", - "created": 1610361465.9501185, + "asctime": "2021-01-14 00:26:28,537", + "created": 1610580388.537643, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -200839,15 +200786,15 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 950.1185417175293, + "msecs": 537.6429557800293, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16513.845920562744, + "relativeCreated": 16530.134677886963, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -200855,8 +200802,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-01-11 11:37:45,958", - "created": 1610361465.9585626, + "asctime": "2021-01-14 00:26:28,546", + "created": 1610580388.5461197, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -200866,15 +200813,15 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 958.5626125335693, + "msecs": 546.1196899414062, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16522.289991378784, + "relativeCreated": 16538.61141204834, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -200882,8 +200829,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,958", - "created": 1610361465.9588447, + "asctime": "2021-01-14 00:26:28,546", + "created": 1610580388.5464542, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200893,15 +200840,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 958.8446617126465, + "msecs": 546.4541912078857, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16522.57204055786, + "relativeCreated": 16538.94591331482, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -200910,8 +200857,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,959", - "created": 1610361465.9590068, + "asctime": "2021-01-14 00:26:28,546", + "created": 1610580388.5466247, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200921,15 +200868,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 959.0067863464355, + "msecs": 546.6246604919434, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16522.73416519165, + "relativeCreated": 16539.116382598877, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -200937,8 +200884,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,959", - "created": 1610361465.9592032, + "asctime": "2021-01-14 00:26:28,546", + "created": 1610580388.5468347, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200948,15 +200895,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 959.2032432556152, + "msecs": 546.8347072601318, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16522.93062210083, + "relativeCreated": 16539.326429367065, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -200965,8 +200912,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,959", - "created": 1610361465.9593604, + "asctime": "2021-01-14 00:26:28,546", + "created": 1610580388.5469794, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -200976,15 +200923,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 959.3603610992432, + "msecs": 546.9794273376465, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16523.087739944458, + "relativeCreated": 16539.47114944458, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -200992,8 +200939,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,959", - "created": 1610361465.9596324, + "asctime": "2021-01-14 00:26:28,547", + "created": 1610580388.5471818, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201003,15 +200950,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 959.632396697998, + "msecs": 547.1818447113037, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16523.359775543213, + "relativeCreated": 16539.673566818237, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201020,8 +200967,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,959", - "created": 1610361465.9598713, + "asctime": "2021-01-14 00:26:28,547", + "created": 1610580388.5473163, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201031,15 +200978,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 959.8712921142578, + "msecs": 547.316312789917, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16523.598670959473, + "relativeCreated": 16539.80803489685, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201047,8 +200994,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,960", - "created": 1610361465.9600976, + "asctime": "2021-01-14 00:26:28,547", + "created": 1610580388.547503, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201058,15 +201005,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.0975513458252, + "msecs": 547.5029945373535, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16523.82493019104, + "relativeCreated": 16539.994716644287, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201075,8 +201022,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,960", - "created": 1610361465.9602327, + "asctime": "2021-01-14 00:26:28,547", + "created": 1610580388.5476348, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201086,15 +201033,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.2327346801758, + "msecs": 547.6348400115967, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16523.96011352539, + "relativeCreated": 16540.12656211853, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201102,8 +201049,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,960", - "created": 1610361465.9604058, + "asctime": "2021-01-14 00:26:28,547", + "created": 1610580388.5478868, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201113,15 +201060,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 960.4058265686035, + "msecs": 547.886848449707, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16524.13320541382, + "relativeCreated": 16540.37857055664, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201130,8 +201077,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,960", - "created": 1610361465.9605467, + "asctime": "2021-01-14 00:26:28,548", + "created": 1610580388.5480494, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201141,15 +201088,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 960.5467319488525, + "msecs": 548.0494499206543, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16524.274110794067, + "relativeCreated": 16540.541172027588, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201157,8 +201104,8 @@ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,960", - "created": 1610361465.9608192, + "asctime": "2021-01-14 00:26:28,548", + "created": 1610580388.5483444, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -201168,15 +201115,15 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 960.8192443847656, + "msecs": 548.3443737030029, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16524.54662322998, + "relativeCreated": 16540.836095809937, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201184,8 +201131,8 @@ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-01-11 11:37:45,961", - "created": 1610361465.9618027, + "asctime": "2021-01-14 00:26:28,549", + "created": 1610580388.5493526, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -201195,15 +201142,15 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 961.8027210235596, + "msecs": 549.3526458740234, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16525.530099868774, + "relativeCreated": 16541.844367980957, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201211,8 +201158,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,962", - "created": 1610361465.9620433, + "asctime": "2021-01-14 00:26:28,549", + "created": 1610580388.549691, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201222,15 +201169,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 962.043285369873, + "msecs": 549.6909618377686, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16525.770664215088, + "relativeCreated": 16542.182683944702, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201239,8 +201186,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,962", - "created": 1610361465.9622076, + "asctime": "2021-01-14 00:26:28,549", + "created": 1610580388.5498714, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201250,15 +201197,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 962.207555770874, + "msecs": 549.8714447021484, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16525.93493461609, + "relativeCreated": 16542.363166809082, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201266,8 +201213,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" ], - "asctime": "2021-01-11 11:37:45,962", - "created": 1610361465.9624503, + "asctime": "2021-01-14 00:26:28,550", + "created": 1610580388.5501308, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201277,15 +201224,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", "module": "stp", - "msecs": 962.4502658843994, + "msecs": 550.1308441162109, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16526.177644729614, + "relativeCreated": 16542.622566223145, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201296,26 +201243,26 @@ "status: okay", "31" ], - "asctime": "2021-01-11 11:37:45,962", - "created": 1610361465.9628344, + "asctime": "2021-01-14 00:26:28,550", + "created": 1610580388.5505524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 962.834358215332, + "msecs": 550.5523681640625, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16526.561737060547, + "relativeCreated": 16543.044090270996, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201323,26 +201270,26 @@ "prot-server:", "__callback3__" ], - "asctime": "2021-01-11 11:37:45,963", - "created": 1610361465.9630268, + "asctime": "2021-01-14 00:26:28,550", + "created": 1610580388.5507493, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, + "lineno": 490, "message": "prot-server: Executing callback __callback3__ to process received data", "module": "__init__", - "msecs": 963.026762008667, + "msecs": 550.7493019104004, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16526.754140853882, + "relativeCreated": 16543.241024017334, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201353,26 +201300,26 @@ "status: okay", "36" ], - "asctime": "2021-01-11 11:37:45,963", - "created": 1610361465.9632628, + "asctime": "2021-01-14 00:26:28,550", + "created": 1610580388.5509946, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 963.2627964019775, + "msecs": 550.9946346282959, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16526.990175247192, + "relativeCreated": 16543.48635673523, "stack_info": null, - "thread": 139975400093440, + "thread": 140580378109696, "threadName": "Thread-27" }, { @@ -201380,8 +201327,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99" ], - "asctime": "2021-01-11 11:37:45,964", - "created": 1610361465.9640462, + "asctime": "2021-01-14 00:26:28,551", + "created": 1610580388.551838, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -201391,15 +201338,15 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99", "module": "__init__", - "msecs": 964.0462398529053, + "msecs": 551.8379211425781, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16527.77361869812, + "relativeCreated": 16544.32964324951, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201407,8 +201354,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99" ], - "asctime": "2021-01-11 11:37:45,972", - "created": 1610361465.972408, + "asctime": "2021-01-14 00:26:28,560", + "created": 1610580388.5603495, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -201418,15 +201365,15 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99", "module": "__init__", - "msecs": 972.4080562591553, + "msecs": 560.3494644165039, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.13543510437, + "relativeCreated": 16552.841186523438, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201434,8 +201381,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,972", - "created": 1610361465.9725852, + "asctime": "2021-01-14 00:26:28,560", + "created": 1610580388.5606773, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201445,15 +201392,15 @@ "lineno": 101, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 972.5852012634277, + "msecs": 560.6772899627686, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.312580108643, + "relativeCreated": 16553.169012069702, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201462,8 +201409,8 @@ 58, 60 ], - "asctime": "2021-01-11 11:37:45,972", - "created": 1610361465.9726694, + "asctime": "2021-01-14 00:26:28,560", + "created": 1610580388.5608432, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201473,15 +201420,15 @@ "lineno": 106, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 972.6693630218506, + "msecs": 560.8432292938232, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.396741867065, + "relativeCreated": 16553.334951400757, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201489,8 +201436,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,972", - "created": 1610361465.972793, + "asctime": "2021-01-14 00:26:28,561", + "created": 1610580388.5610461, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201500,15 +201447,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 972.7931022644043, + "msecs": 561.0461235046387, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.52048110962, + "relativeCreated": 16553.537845611572, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201517,8 +201464,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,972", - "created": 1610361465.9728694, + "asctime": "2021-01-14 00:26:28,561", + "created": 1610580388.5612257, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201528,15 +201475,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 972.8693962097168, + "msecs": 561.2256526947021, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.59677505493, + "relativeCreated": 16553.717374801636, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201544,8 +201491,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,972", - "created": 1610361465.97297, + "asctime": "2021-01-14 00:26:28,561", + "created": 1610580388.5614295, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201555,15 +201502,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 972.9700088500977, + "msecs": 561.429500579834, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.697387695312, + "relativeCreated": 16553.921222686768, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201572,8 +201519,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,973", - "created": 1610361465.9730363, + "asctime": "2021-01-14 00:26:28,561", + "created": 1610580388.5615647, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201583,15 +201530,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 973.0362892150879, + "msecs": 561.5646839141846, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.763668060303, + "relativeCreated": 16554.056406021118, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201599,8 +201546,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,973", - "created": 1610361465.973128, + "asctime": "2021-01-14 00:26:28,561", + "created": 1610580388.56175, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201610,15 +201557,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 973.128080368042, + "msecs": 561.7499351501465, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.855459213257, + "relativeCreated": 16554.24165725708, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201627,8 +201574,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,973", - "created": 1610361465.9731925, + "asctime": "2021-01-14 00:26:28,561", + "created": 1610580388.5618823, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201638,15 +201585,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 973.1924533843994, + "msecs": 561.8822574615479, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16536.919832229614, + "relativeCreated": 16554.37397956848, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201654,8 +201601,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,973", - "created": 1610361465.973284, + "asctime": "2021-01-14 00:26:28,562", + "created": 1610580388.562053, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201665,15 +201612,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 973.2840061187744, + "msecs": 562.0529651641846, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16537.01138496399, + "relativeCreated": 16554.544687271118, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201682,8 +201629,8 @@ 58, 61 ], - "asctime": "2021-01-11 11:37:45,973", - "created": 1610361465.9733565, + "asctime": "2021-01-14 00:26:28,562", + "created": 1610580388.5621831, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201693,15 +201640,15 @@ "lineno": 132, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 973.3564853668213, + "msecs": 562.183141708374, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16537.083864212036, + "relativeCreated": 16554.674863815308, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201709,8 +201656,8 @@ "comm-server:", "(5): 96 78 fe 3a 3e" ], - "asctime": "2021-01-11 11:37:45,973", - "created": 1610361465.9734826, + "asctime": "2021-01-14 00:26:28,562", + "created": 1610580388.5624244, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -201720,15 +201667,15 @@ "lineno": 284, "message": "comm-server: TX -> (5): 96 78 fe 3a 3e", "module": "__init__", - "msecs": 973.482608795166, + "msecs": 562.4244213104248, "msg": "%s TX -> %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16537.20998764038, + "relativeCreated": 16554.91614341736, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201736,8 +201683,8 @@ "comm-client:", "(5): 96 78 fe 3a 3e" ], - "asctime": "2021-01-11 11:37:45,974", - "created": 1610361465.9742846, + "asctime": "2021-01-14 00:26:28,563", + "created": 1610580388.5633714, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -201747,15 +201694,15 @@ "lineno": 414, "message": "comm-client: RX <- (5): 96 78 fe 3a 3e", "module": "__init__", - "msecs": 974.2846488952637, + "msecs": 563.3714199066162, "msg": "%s RX <- %s", "name": "root.helpers.all_others", "pathname": "src/helpers/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16538.01202774048, + "relativeCreated": 16555.86314201355, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201763,8 +201710,8 @@ "STP:", 58 ], - "asctime": "2021-01-11 11:37:45,974", - "created": 1610361465.9743695, + "asctime": "2021-01-14 00:26:28,563", + "created": 1610580388.563647, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201774,15 +201721,15 @@ "lineno": 117, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 974.3695259094238, + "msecs": 563.6470317840576, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16538.09690475464, + "relativeCreated": 16556.13875389099, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201791,8 +201738,8 @@ 58, 62 ], - "asctime": "2021-01-11 11:37:45,974", - "created": 1610361465.9744425, + "asctime": "2021-01-14 00:26:28,563", + "created": 1610580388.5638247, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201802,15 +201749,15 @@ "lineno": 127, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 974.4424819946289, + "msecs": 563.8246536254883, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16538.169860839844, + "relativeCreated": 16556.316375732422, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201818,8 +201765,8 @@ "STP:", "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe" ], - "asctime": "2021-01-11 11:37:45,974", - "created": 1610361465.9745543, + "asctime": "2021-01-14 00:26:28,564", + "created": 1610580388.5640802, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -201829,15 +201776,15 @@ "lineno": 148, "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe", "module": "stp", - "msecs": 974.5543003082275, + "msecs": 564.0802383422852, "msg": "%s message identified - %s", "name": "root.stringtools.stp", "pathname": "src/stringtools/stp.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16538.281679153442, + "relativeCreated": 16556.57196044922, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { @@ -201848,74 +201795,74 @@ "status: okay", "36" ], - "asctime": "2021-01-11 11:37:45,974", - "created": 1610361465.9747603, + "asctime": "2021-01-14 00:26:28,564", + "created": 1610580388.5644531, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 438, + "lineno": 450, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 974.7602939605713, + "msecs": 564.453125, "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16538.487672805786, + "relativeCreated": 16556.944847106934, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" }, { "args": [ "prot-client:" ], - "asctime": "2021-01-11 11:37:45,974", - "created": 1610361465.9748633, + "asctime": "2021-01-14 00:26:28,564", + "created": 1610580388.5646708, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 385, + "lineno": 397, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 974.8632907867432, + "msecs": 564.6708011627197, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16538.590669631958, + "relativeCreated": 16557.162523269653, "stack_info": null, - "thread": 139975391700736, + "thread": 140580369716992, "threadName": "Thread-28" } ], - "msecs": 150.0415802001953, + "msecs": 737.2970581054688, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16713.76895904541, + "relativeCreated": 16729.788780212402, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.17517828941345215 + "time_consumption": 0.17262625694274902 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:46,150", - "created": 1610361466.15088, + "asctime": "2021-01-14 00:26:28,738", + "created": 1610580388.7381976, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -201932,8 +201879,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-11 11:37:46,150", - "created": 1610361466.1505358, + "asctime": "2021-01-14 00:26:28,737", + "created": 1610580388.7378414, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -201943,15 +201890,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 150.53582191467285, + "msecs": 737.8413677215576, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16714.263200759888, + "relativeCreated": 16730.33308982849, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -201960,8 +201907,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:46,150", - "created": 1610361466.150719, + "asctime": "2021-01-14 00:26:28,738", + "created": 1610580388.7380292, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -201971,37 +201918,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 150.71892738342285, + "msecs": 738.0292415618896, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16714.446306228638, + "relativeCreated": 16730.520963668823, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 150.8800983428955, + "msecs": 738.1975650787354, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16714.60747718811, + "relativeCreated": 16730.68928718567, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.00016117095947265625 + "time_consumption": 0.00016832351684570312 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36}", "" ], - "asctime": "2021-01-11 11:37:46,151", - "created": 1610361466.1514027, + "asctime": "2021-01-14 00:26:28,738", + "created": 1610580388.7387252, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -202018,8 +201965,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36}", "" ], - "asctime": "2021-01-11 11:37:46,151", - "created": 1610361466.1511145, + "asctime": "2021-01-14 00:26:28,738", + "created": 1610580388.7384355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -202029,15 +201976,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36} ()", "module": "test", - "msecs": 151.11446380615234, + "msecs": 738.4355068206787, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16714.841842651367, + "relativeCreated": 16730.927228927612, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" }, { @@ -202046,8 +201993,8 @@ "{'data': 36, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-11 11:37:46,151", - "created": 1610361466.151259, + "asctime": "2021-01-14 00:26:28,738", + "created": 1610580388.7385826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -202057,40 +202004,40 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 36, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 151.2589454650879, + "msecs": 738.5826110839844, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16714.986324310303, + "relativeCreated": 16731.074333190918, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread" } ], - "msecs": 151.40271186828613, + "msecs": 738.7251853942871, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 36202, + "process": 5267, "processName": "MainProcess", - "relativeCreated": 16715.1300907135, + "relativeCreated": 16731.21690750122, "stack_info": null, - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 0.0001437664031982422 + "time_consumption": 0.00014257431030273438 } ], - "thread": 139977424344896, + "thread": 140582333019968, "threadName": "MainThread", - "time_consumption": 1.1667509078979492, - "time_finished": "2021-01-11 11:37:46,151", - "time_start": "2021-01-11 11:37:44,984" + "time_consumption": 1.1685376167297363, + "time_finished": "2021-01-14 00:26:28,738", + "time_start": "2021-01-14 00:26:27,570" } }, "testrun_id": "p3", - "time_consumption": 19.21418070793152, + "time_consumption": 19.230515241622925, "uid_list_sorted": [ "_XzMFcHYZEem_kd-7nxt1sg", "_7izDUEzYEeuiHtQbLi1mZg", diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index 5adb608..650e2cb 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ