Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion software/squid/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def add_file_logging(log_filename, replace_existing=False):
formatter = py_logging.Formatter(fmt=_baseline_log_format, datefmt=_baseline_log_dateformat)
new_handler.setFormatter(formatter)

log.info(f"Adding new file logger writing to file '{new_handler.baseFilename}")
log.info(f"Adding new file logger writing to file '{new_handler.baseFilename}'")
root_logger.addHandler(new_handler)

# We want a new log file every time we start, so force one at startup if the log file already existed.
Expand Down