selena/modules/admin/logging_config.py
Dan 39603b1e06 REF: Made sure everything conforms to Flake8's standards
FIX: Fixed the Permission issues with logger
FEAT: Changed how the XP system works. Now does a scaling curve with xp being 1-5
2024-06-22 08:55:26 -04:00

37 lines
903 B
Python

# modules/admin/logging_config.py
import os
LOG_DIR = "logs"
if not os.path.exists(LOG_DIR):
os.makedirs(LOG_DIR)
LOG_FILE = os.path.join(LOG_DIR, "selena.log")
logging_config = {
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"standard": {"format": "%(asctime)s [%(levelname)s] %(name)s: %(message)s"},
},
"handlers": {
"console": {
"level": "DEBUG",
"class": "logging.StreamHandler",
"formatter": "standard",
},
"file_handler": {
"level": "DEBUG",
"class": "logging.handlers.RotatingFileHandler",
"formatter": "standard",
"filename": LOG_FILE,
"maxBytes": 1024 * 1024 * 5, # 5 MB
"backupCount": 3,
},
},
"root": {
"handlers": ["console", "file_handler"],
"level": "DEBUG",
},
}