diff --git a/plugin.go b/plugin.go index 446d8c3..90261ce 100644 --- a/plugin.go +++ b/plugin.go @@ -96,9 +96,9 @@ func (p Plugin) Exec() error { case isTimeout = <-doneChan: stillGoing = false case outline := <-stdoutChan: - p.log(host, "outputs:", outline) + p.log(host, "out:", outline) case errline := <-stderrChan: - p.log(host, "errors:", errline) + p.log(host, "err:", errline) case err = <-errChan: } }