merge-requests/30/head
Bob Mottram 2023-04-29 20:22:33 +01:00
parent 67e2e23f7e
commit c88c73265e
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,8 @@ class thread_with_trace(threading.Thread):
self.__run_backup() self.__run_backup()
self.run = self.__run_backup self.run = self.__run_backup
except Exception as ex: except Exception as ex:
print('ERROR: threads.py/__run failed - ' + str(ex)) print('ERROR: threads.py/__run failed - ' + str(ex) +
', ' + str(self.__run_backup))
def globaltrace(self, frame, event, arg): def globaltrace(self, frame, event, arg):
"""Trace the thread """Trace the thread