firstaid / core /utils /logger.py
rivapereira123's picture
Rename core/logger.py to core/utils/logger.py
cafeac5 verified
raw
history blame contribute delete
194 Bytes
# 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")