This commit is contained in:
2025-06-09 07:04:33 -04:00
parent eb84ff2060
commit d9b90f6d3e
8 changed files with 419 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
import logging
import os
class Logger:
def __init__(self) -> None:
self.logger = logging.getLogger(os.getenv("LOGGER", "backend-logger"))
self.logger.setLevel(logging.INFO)