From 530716d4581b419de359cc89488c2c741867d4f9 Mon Sep 17 00:00:00 2001 From: Col Crunch Date: Tue, 26 May 2020 13:25:48 -0400 Subject: [PATCH] Fix docstring n `get_extension_logger` --- allianceauth/services/hooks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/allianceauth/services/hooks.py b/allianceauth/services/hooks.py index 0158d2d5..72fd8d0e 100644 --- a/allianceauth/services/hooks.py +++ b/allianceauth/services/hooks.py @@ -14,8 +14,7 @@ def get_extension_logger(name): Takes the name of a plugin/extension and generates a child logger of the extensions logger to be used by the extension to log events to the extensions logger. - The logging level is decided by whether or not DEBUG is set to true in the project settings. If - DEBUG is set to false, then the logging level is set to INFO. + The logging level is determined by the level defined for the parent logger. :param: name: the name of the extension doing the logging :return: an extensions child logger