浏览代码

report exception with globals.log

Rodja Trappe 2 年之前
父节点
当前提交
8a20dcfdfb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      nicegui/functions/timer.py

+ 1 - 1
nicegui/functions/timer.py

@@ -58,7 +58,7 @@ class Timer:
                 except asyncio.CancelledError:
                     break
                 except:
-                    traceback.print_exc()
+                    globals.log.exception('Exception in timer callback')
                     await asyncio.sleep(self.interval)
         self.cleanup()