Skip to content

Commit

Permalink
more readable output for simple status
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowcoder committed Mar 7, 2017
1 parent f198455 commit 8a8cf8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/statuschart/statuschart.go
Expand Up @@ -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()
}
}
Expand Down

0 comments on commit 8a8cf8b

Please sign in to comment.