We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00be397 commit b8d901fCopy full SHA for b8d901f
proc_parent.go
@@ -393,11 +393,11 @@ func (mp *parent) fork() error {
393
//proxy exit code out to parent
394
code := 0
395
if err != nil {
396
- mp.warnf("prog returned error: %s", err)
+ mp.debugf("prog returned error: %s", err)
397
code = 1
398
if exiterr, ok := err.(*exec.ExitError); ok {
399
if len(exiterr.Stderr) > 0 {
400
- mp.warnf("prog stderr: %s", string(exiterr.Stderr))
+ mp.debugf("prog stderr: %s", string(exiterr.Stderr))
401
}
402
if status, ok := exiterr.Sys().(syscall.WaitStatus); ok {
403
code = status.ExitStatus()
0 commit comments