9 lines
195 B
Python
9 lines
195 B
Python
import logging
|
|
import os
|
|
|
|
|
|
class Logger:
|
|
def __init__(self) -> None:
|
|
self.logger = logging.getLogger(os.getenv("LOGGER", "backend-logger"))
|
|
self.logger.setLevel(logging.INFO)
|