Skip to content

Commit

Permalink
util: log PID also when a created process terminates
Browse files Browse the repository at this point in the history
  • Loading branch information
KKoukiou committed Sep 20, 2024
1 parent 3fc0362 commit bb0da2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyanaconda/core/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def _run_program(argv, root='/', stdin=None, stdout=None, env_prune=None,
raise

with program_log_lock:
program_log.debug("Return code: %d", proc.returncode)
program_log.debug("Return code of %s: %d", argv[0], proc.returncode)

return (proc.returncode, output_string)

Expand Down

0 comments on commit bb0da2c

Please sign in to comment.