Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
fix processmonitor logging (#4213)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadeofblue authored May 20, 2019
1 parent c9eefc6 commit 5c23785
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions golem/core/processmonitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ def kill_process(cls, process):
elif isinstance(process, Process):
process.join()
except Exception as exc:
logger.error("Error terminating process %d: %r", process, exc)
logger.error("Error terminating process %s: %r", process, exc)
else:
logger.warning("Subprocess %d terminated", cls._pid(process))
logger.warning("Subprocess %s terminated", cls._pid(process))

@staticmethod
def _pid(process):
Expand Down

0 comments on commit 5c23785

Please sign in to comment.