Skip to content

Commit 508a11d

Browse files
author
stou
committed
fix compile error
1 parent 5baad2f commit 508a11d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

process/process.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ func (p *Process) run(finishCb func()) {
452452

453453
if err != nil {
454454
if atomic.LoadInt32(p.retryTimes) >= p.getStartRetries() {
455-
p.failToStartProgram(fmt.Sprintf("fail to start program with error:", err), finishCbWrapper)
455+
p.failToStartProgram(fmt.Sprintf("fail to start program with error:%v", err), finishCbWrapper)
456456
break
457457
} else {
458458
log.WithFields(log.Fields{"program": p.GetName()}).Info("fail to start program with error:", err)

0 commit comments

Comments
 (0)