Spaces:
Sleeping
Sleeping
# core/utils/logger.py | |
import logging | |
logging.basicConfig( | |
level=logging.INFO, | |
format="%(asctime)s [%(levelname)s] %(name)s: %(message)s" | |
) | |
logger = logging.getLogger("first_aid_app") | |