kopia lustrzana https://github.com/dgtlmoon/changedetection.io
UI - Error text on exception should contain the word Exception (#2322)
rodzic
e110b3ee93
commit
830a0a3a82
|
@ -462,7 +462,7 @@ class update_worker(threading.Thread):
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Exception reached processing watch UUID: {uuid}")
|
logger.error(f"Exception reached processing watch UUID: {uuid}")
|
||||||
logger.error(str(e))
|
logger.error(str(e))
|
||||||
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': str(e)})
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': "Exception: " + str(e)})
|
||||||
# Other serious error
|
# Other serious error
|
||||||
process_changedetection_results = False
|
process_changedetection_results = False
|
||||||
# import traceback
|
# import traceback
|
||||||
|
|
Ładowanie…
Reference in New Issue