mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 04:50:16 +02:00
533 B
533 B
Logging from Custom Apps
Alliance Auth provides a logger for use with custom apps to make everyone's life a little easier.
Using the Extensions Logger
AllianceAuth provides a helper function to get the logger for the current module to reduce the amount of code you need to write.
from allianceauth.services.hooks import get_extension_logger
logger = get_extension_logger(__name__)
This works by creating a child logger of the extension logger which propagates all log entries to the parent (extensions) logger.