Skip to content

Commit 6e2ebb9

Browse files
authored
Remove reassignment of interchange global logger (#3841)
Since PR #2828, this has been assigned at the top level as part of module import, and the reassignment has always been reassigning to the same Logger value - effectively a no-op # Changed Behaviour none ## Type of change - Code maintenance/cleanup
1 parent a2ce511 commit 6e2ebb9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

parsl/executors/high_throughput/interchange.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,6 @@ def start_file_logger(filename: str, level: int = logging.DEBUG, format_string:
605605

606606
)
607607

608-
global logger
609-
logger = logging.getLogger(LOGGER_NAME)
610608
logger.setLevel(level)
611609
handler = logging.FileHandler(filename)
612610
handler.setLevel(level)

0 commit comments

Comments
 (0)