Skip to content

Commit

Permalink
Enable log message on child task completion.
Browse files Browse the repository at this point in the history
  • Loading branch information
yo8192 committed Jan 1, 2025
1 parent 2481c1d commit 25eed4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database.c
Original file line number Diff line number Diff line change
Expand Up @@ -565,12 +565,12 @@ wait_chld(void)
if (pid == e->e_ctrl_pid) {
if (e->e_line == NULL) {
/* the corresponding file has been removed from memory */
debug("Job finished: pid %d", pid);
debug("Child exited: pid %d", pid);
}
else {

line = e->e_line;
/* debug("Job finished: %s", line->cl_shell); */
debug("Child exited (pid %d): %s", pid, line->cl_shell);
line->cl_numexe -= 1;
line->cl_file->cf_running -= 1;

Expand Down

0 comments on commit 25eed4b

Please sign in to comment.