fix vm abortf log message
This commit is contained in:
parent
70d8378404
commit
f8a1fb2321
@ -312,7 +312,7 @@ func (rt *Runtime) Context() context.Context {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (rt *Runtime) Abortf(code exitcode.ExitCode, msg string, args ...interface{}) {
|
func (rt *Runtime) Abortf(code exitcode.ExitCode, msg string, args ...interface{}) {
|
||||||
log.Warnf("Abortf: ", fmt.Sprintf(msg, args...))
|
log.Warnf("Abortf: " + fmt.Sprintf(msg, args...))
|
||||||
panic(aerrors.NewfSkip(2, code, msg, args...))
|
panic(aerrors.NewfSkip(2, code, msg, args...))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user