From 7802abf4dc9f4c6a45e22018606217e4e3aeec61 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Thu, 14 Jan 2021 00:32:30 +0100 Subject: [PATCH] Documentation update --- _docs_/index.html | 88 +- _docs_/searchindex.js | 2 +- _testresults_/unittest.json | 95409 +++++++++++++++++----------------- _testresults_/unittest.pdf | Bin 855034 -> 855350 bytes 4 files changed, 47730 insertions(+), 47769 deletions(-) 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 5adb608306a730878a76d3ec4e247c6db58af4cd..650e2cb70e426c054fea29a5c4c7d16ccf74c132 100644 GIT binary patch delta 224529 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
5ct6~)I&g{9GS@(od^{H29$0=5& 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�DO5{1<#6?;HMj!ygYAc%V}YK-j=@ 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

i$J8BvosI}gf zHrz(HBCAEc$dT8(Vgn?BMoE!#GvbXcm%IziD}u#kK3RZ&;XNt!ZS=XTlloSR{D)$n zDk?p_ckXsz_H@w0=-nxos(!s`_|NZ_zUm9!26t4h-aj+nHSHq7el91?{n?MsfBK4s zCewF*-(4_@1#Z%%w6c8XM@kh*+!NJC+^1t6aOsH#PcNXBInD3o**u08NKtch^J;G$ zY6A0!Z3;{CH`(5!k%8PPkbX^jNL+&fg`JybMr|ZE0 jF*7bCYLW}JpJ+1Uy$nVbM<5hLw2TZyFqoqbmLmTJJ

GbPJI(DY{9_`{l#uDSzUC<(0k4Hl0W4 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 delta 224074 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