1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-04-05 10:17:00 +00:00

Log exception for unhandled errors in background tasks

This commit is contained in:
Ozzie Isaacs 2025-03-30 08:58:56 +02:00
parent 854a7d020d
commit 65a29ed4c9

View File

@ -199,7 +199,7 @@ class CalibreTask:
self.run(*args)
except Exception as ex:
self._handleError(str(ex))
log.error_or_exception(ex)
log.exception(ex)
self.end_time = datetime.now()