Skip to content

Commit

Permalink
logfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky committed Jun 10, 2024
1 parent edaafba commit 74b79a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/radical/utils/flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ def __init__(self, name:str = None) -> None:

self._uid = generate_id('flux.%(item_counter)04d', ID_CUSTOM)
self._name = name or self._uid
self._log = Logger(self._uid, ns='radical.utils')
self._prof = Profiler(self._uid, ns='radical.utils')
self._log = Logger(self._name, ns='radical.utils')
self._prof = Profiler(self._name, ns='radical.utils')

self._lock = mt.RLock()

Expand Down

0 comments on commit 74b79a0

Please sign in to comment.