We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5baad2f commit 508a11dCopy full SHA for 508a11d
process/process.go
@@ -452,7 +452,7 @@ func (p *Process) run(finishCb func()) {
452
453
if err != nil {
454
if atomic.LoadInt32(p.retryTimes) >= p.getStartRetries() {
455
- p.failToStartProgram(fmt.Sprintf("fail to start program with error:", err), finishCbWrapper)
+ p.failToStartProgram(fmt.Sprintf("fail to start program with error:%v", err), finishCbWrapper)
456
break
457
} else {
458
log.WithFields(log.Fields{"program": p.GetName()}).Info("fail to start program with error:", err)
0 commit comments