From a9610d83d2255caa3314740d802c51623b96c9ea Mon Sep 17 00:00:00 2001 From: Ian OHara Date: Fri, 25 Oct 2024 14:30:50 -0700 Subject: [PATCH] logging: add missing close quote in logging message --- software/squid/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/squid/logging.py b/software/squid/logging.py index 7bf6e55a2..fe8018191 100644 --- a/software/squid/logging.py +++ b/software/squid/logging.py @@ -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.