From 8a8cf8bf325747fa898e0d6e4f8ecc8a1ccd7844 Mon Sep 17 00:00:00 2001 From: Philipp Fehre Date: Tue, 7 Mar 2017 22:28:48 +0000 Subject: [PATCH] more readable output for simple status --- go/statuschart/statuschart.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/statuschart/statuschart.go b/go/statuschart/statuschart.go index 275a3893..1ce990a9 100644 --- a/go/statuschart/statuschart.go +++ b/go/statuschart/statuschart.go @@ -71,7 +71,7 @@ func startLineOutput(tree *processtree.ProcessTree, done, quit chan bool) { for name, slave := range tree.SlavesByName { state, found := states[name] if !found || (state != slave.State()) { - fmt.Println("node: " + name + " status: " + slave.HumanReadableState()) + fmt.Println("environment: " + name + " status: " + slave.HumanReadableState()) states[name] = slave.State() } }