File size: 376 Bytes
10d6a86 |
1 2 3 4 5 6 7 8 9 10 |
import os, logging
environment = os.getenv("ENVIRONMENT", "dev") # TODO put the logger creation in its own file
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 |