Skip to content

Commit

Permalink
Fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
andrenth committed Jan 22, 2013
1 parent 94bcca7 commit 0b9d901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/release.ml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ let handle_process master_fd reexec proc =
let log fmt = ksprintf (fun s -> Lwt_log.notice_f "process %s" s) fmt in
let pid = proc#pid in
lwt () = add_slave_connection pid master_fd in
lwt () = log "creating child process %d" pid in
lwt () = log "%d created" pid in
lwt () = match_lwt proc#status with
| Lwt_unix.WEXITED 0 -> log "%d exited normally" pid
| Lwt_unix.WEXITED s -> log "%d exited with status %s" pid (signame s)
Expand Down

0 comments on commit 0b9d901

Please sign in to comment.