(msg)
| 53 | |
| 54 | |
| 55 | def print_ts(msg) -> None: |
| 56 | dt = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f') |
| 57 | print('[{}] {}'.format(dt, msg)) |
| 58 | |
| 59 | |
| 60 | # Set up an exception hook for all uncaught exceptions so they can be logged |
no test coverage detected