ISEPOS-2280 Adjusted log file name in comment

This commit is contained in:
plgmlesniak 2024-10-15 08:38:55 +02:00
parent 03616dcac6
commit 0d0285a296

View File

@ -11,7 +11,7 @@ def getDefaultLogger(name):
Retrieves or creates a logger with the specified name and sets it up with a file handler.
The logger is configured to write log messages to the file path specified by the
'DEFAULT_LOG_PATH' environment variable. It uses the 'INFO' level as the default
'APP_LOG_FILE' environment variable. It uses the 'INFO' level as the default
logging level and writes log entries in the following format:
'YYYY-MM-DD HH:MM:SS,ms LEVEL logger_name message'
@ -30,13 +30,13 @@ def getDefaultLogger(name):
--------
logger : logging.Logger
A logger instance with the specified name. The logger is configured with a
file handler that writes to the file specified by the 'DEFAULT_LOG_PATH'
file handler that writes to the file specified by the 'APP_LOG_FILE'
environment variable.
Raises:
-------
KeyError:
If the 'DEFAULT_LOG_PATH' environment variable is not set.
If the 'APP_LOG_FILE' environment variable is not set.
Example:
--------