Merge pull request #2229 from filecoin-project/fix/vm-abort-log-msg
fix vm abortf log message
This commit is contained in:
commit
bda43a4627
@ -312,7 +312,7 @@ func (rt *Runtime) Context() context.Context {
|
||||
}
|
||||
|
||||
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...))
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user