diff --git a/src/cthulhu/debug.py b/src/cthulhu/debug.py index e6de6de..47a2566 100644 --- a/src/cthulhu/debug.py +++ b/src/cthulhu/debug.py @@ -298,7 +298,7 @@ def println(level, text="", timestamp=False, stack=False): text = text.replace("\ufffc", "[OBJ]") if timestamp: text = text.replace("\n", f"\n{' ' * 18}") - text = f"{datetime.now().strftime('%H:%M:%S.%f')} - {text}" + text = f"{text} - {datetime.now().strftime('%H:%M:%S.%f')}" if stack: text += f" {_stackAsString()}"