File size: 194 Bytes
1d63bf9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# 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")