feature/ISEPOS-2280-mechanizm-raportowania-informacji-z-aplikacji-do-pliku-z-logami #2

Merged
Showing only changes of commit 0d0285a296 - Show all commits

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. 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 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: logging level and writes log entries in the following format:
'YYYY-MM-DD HH:MM:SS,ms LEVEL logger_name message' 'YYYY-MM-DD HH:MM:SS,ms LEVEL logger_name message'
@ -30,13 +30,13 @@ def getDefaultLogger(name):
-------- --------
logger : logging.Logger logger : logging.Logger
A logger instance with the specified name. The logger is configured with a 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. environment variable.
Raises: Raises:
------- -------
KeyError: KeyError:
If the 'DEFAULT_LOG_PATH' environment variable is not set. If the 'APP_LOG_FILE' environment variable is not set.
Example: Example:
-------- --------