diff options
Diffstat (limited to 'fg21sim/configs/manager.py')
-rw-r--r-- | fg21sim/configs/manager.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fg21sim/configs/manager.py b/fg21sim/configs/manager.py index f5465a9..a889259 100644 --- a/fg21sim/configs/manager.py +++ b/fg21sim/configs/manager.py @@ -84,7 +84,13 @@ class ConfigManager: @property def logging(self): """Get and prepare the logging configurations for - `logging.basicConfig()` + ``logging.basicConfig()`` to initialize the logging module. + + NOTE + ---- + ``basicConfig()`` will automatically create a ``Formatter`` with + the giving ``format`` and ``datefmt`` for each handlers if necessary, + and then adding the handlers to the "root" logger. """ from logging import FileHandler, StreamHandler conf = self.get("logging") |