Skip to content

Commit 3c14e2a

Browse files
committed
Made logging name unique
1 parent fd883c0 commit 3c14e2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/script_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def load_pipeline(pipeline_path):
234234

235235
def get_logger(log_path, level=logging.INFO):
236236
# Create the logging file handler
237-
logger = multiprocessing.get_logger()
237+
logger = logging.get_logger(log_path)
238238
logger.setLevel(level)
239239
if os.path.exists(log_path):
240240
os.remove(log_path)

0 commit comments

Comments
 (0)