Skip to content

Commit

Permalink
fixed logging formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
awicenec committed Aug 15, 2022
1 parent 6d6985a commit f7da88e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daliuge-engine/dlg/drop.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ def _popArg(self, kwargs, key, default):
Pops the specified key arg from kwargs else returns the default
"""
if key not in kwargs:
logger.debug("Defaulting %s to %s in %r" % (key, str(default), self))
logger.debug("Defaulting %s to %s in %r", key, str(default), self)
return kwargs.pop(key, default)

def __hash__(self):
Expand Down

0 comments on commit f7da88e

Please sign in to comment.