mirror of
https://github.com/Lilac-Rose/Lacie.git
synced 2026-07-25 04:20:38 -05:00
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
"""
|
|
Centralized logging configuration for the Lacie Discord bot.
|
|
|
|
Provides a configured logger factory so all modules use consistent
|
|
logging instead of bare print() statements.
|
|
"""
|
|
|
|
import logging
|
|
import sys
|
|
|
|
|
|
def get_logger(name: str) -> logging.Logger:
|
|
"""Get a configured logger for the given module name.
|
|
|
|
Args:
|
|
name: The module name, typically __name__ from the calling module.
|
|
|
|
Returns:
|
|
A configured logging.Logger instance.
|
|
"""
|
|
logger = logging.getLogger(name)
|
|
return logger
|
|
|
|
|
|
def setup_logging(level: int = logging.INFO) -> None:
|
|
"""Configure the root logger with a console handler.
|
|
|
|
Call this once at bot startup (in bot.py) before any other logging.
|
|
|
|
Args:
|
|
level: The logging level to use. Defaults to INFO.
|
|
"""
|
|
root = logging.getLogger()
|
|
root.setLevel(level)
|
|
|
|
if not root.handlers:
|
|
handler = logging.StreamHandler(sys.stdout)
|
|
handler.setLevel(level)
|
|
formatter = logging.Formatter(
|
|
"[%(asctime)s] [%(name)s] [%(levelname)s] %(message)s",
|
|
datefmt="%Y-%m-%d %H:%M:%S"
|
|
)
|
|
handler.setFormatter(formatter)
|
|
root.addHandler(handler)
|