diff options
Diffstat (limited to 'Omni/Log.py')
-rw-r--r-- | Omni/Log.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Omni/Log.py b/Omni/Log.py index 8d61139..7e3fdd3 100644 --- a/Omni/Log.py +++ b/Omni/Log.py @@ -32,5 +32,5 @@ def setup(level: int = logging.INFO) -> logging.Logger: def main() -> None: """Entrypoint to test that this kinda works.""" - setup() - logging.debug("i am doing testing") + logger = setup() + logger.debug("i am doing testing") |