diff options
author | Michał Klichowicz <emkael@tlen.pl> | 2023-10-06 17:42:18 +0200 |
---|---|---|
committer | Michał Klichowicz <emkael@tlen.pl> | 2023-10-06 17:42:18 +0200 |
commit | 00ef9a50e4e3b1f082adafaf499770e1e301ce15 (patch) | |
tree | a7e0a0b87435d82559e69ea735b9bc7f8306f64b /src | |
parent | 1c2497c7d0a2d9d5f58ea1d872bde496f048ffd6 (diff) |
Debug exception re-throw removed
Diffstat (limited to 'src')
-rw-r--r-- | src/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py index 8953571..6ac2f7a 100644 --- a/src/main.py +++ b/src/main.py @@ -326,8 +326,7 @@ def main_loop(): fetch_scores(pbn, db, settings) except Exception as ex: - logging.error(ex) - raise + logging.error(repr(ex)) return settings.get('job_interval', 60) |