Skip to content

Commit ed7db01

Browse files
committed
Fixed logger
1 parent d49ae0f commit ed7db01

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 = logging.get_logger(log_path)
237+
logger = logging.getLogger(log_path)
238238
logger.setLevel(level)
239239
if os.path.exists(log_path):
240240
os.remove(log_path)

0 commit comments

Comments
 (0)