summaryrefslogtreecommitdiff
path: root/Omni/Log.py
diff options
context:
space:
mode:
Diffstat (limited to 'Omni/Log.py')
-rw-r--r--Omni/Log.py4
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")