Skip to content

Commit

Permalink
correct message
Browse files Browse the repository at this point in the history
  • Loading branch information
peterebden committed Nov 21, 2018
1 parent 2ff50de commit 4c3cafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func (l *stderrLogger) Write(msg []byte) (int, error) {
if msg := strings.TrimSpace(string(l.buffer)); strings.HasPrefix(msg, "WARNING") {
log.Warning("Warning from remote worker: %s", msg)
} else {
log.Error("Error from remote worker: %s")
log.Error("Error from remote worker: %s", msg)
}
}
l.History = append(l.History, l.buffer...)
Expand Down

0 comments on commit 4c3cafe

Please sign in to comment.