diff --git a/python/logging/base_logger.py b/python/logging/base_logger.py index b4234d8..a0f7067 100644 --- a/python/logging/base_logger.py +++ b/python/logging/base_logger.py @@ -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: --------