From 08ab42285944b158c9b1e875c25cb4b117a46948 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Tue, 9 Jan 2024 11:04:44 -0500 Subject: [PATCH] fixing log file name --- src/staging/staging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/staging/staging.py b/src/staging/staging.py index b5c7384..d6aa9cc 100644 --- a/src/staging/staging.py +++ b/src/staging/staging.py @@ -34,7 +34,7 @@ def __init__(self): log_level, log_path = LoggingUtil.prep_for_logging() # create a logger - self.logger = LoggingUtil.init_logging("iRODS.K8s.Staging", level=log_level, line_format='medium', log_file_path=log_path) + self.logger = LoggingUtil.init_logging("iRODS.Staging", level=log_level, line_format='medium', log_file_path=log_path) # specify the DB to get a connection # note the extra comma makes this single item a singleton tuple