FinRAG / app /engine /logger.py
JPBianchi's picture
removed TODO
6d694e9
Raw
History Blame Contribute Delete
329 Bytes
import os, logging
environment = os.getenv("ENVIRONMENT", "dev")
if environment == "dev":
logger = logging.getLogger("uvicorn")
else:
logger = lambda x: _
# we should log also in production TODO
# check how it works on HuggingFace, if possible
# because we don't have access to the container's file system