Skip to content

Commit 4fe1bbd

Browse files
author
lamai93
committed
More information.
1 parent 3f7225a commit 4fe1bbd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

service/runner_process.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,14 @@ func (p *process) Wait() {
172172
l = l.Str("signal", ws.Signal().String())
173173
}
174174

175+
if ws.Continued() {
176+
l = l.Bool("continued", true)
177+
}
178+
179+
if ws.CoreDump() {
180+
l = l.Bool("core-dump", true)
181+
}
182+
175183
l.Int("trap-cause", ws.TrapCause()).Msgf("Wait on %d returned", proc.Pid)
176184
} else {
177185
p.log.Info().Int("exitcode", ps.ExitCode()).Msgf("Wait on %d returned", proc.Pid)

0 commit comments

Comments
 (0)