summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-07-05 16:11:37 -0700
committerWolfy-J <[email protected]>2018-07-05 16:11:37 -0700
commitc3845f435959c3ccf545783ae35953cbcad83608 (patch)
tree3723e19e7b721d59bd3b31e5336f23a8ea31e598 /cmd
parente989f316ec0680a75735840e6f6c669bddcf2146 (diff)
no color?
Diffstat (limited to 'cmd')
-rw-r--r--cmd/rr/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go
index 03bef9bd..f7101962 100644
--- a/cmd/rr/main.go
+++ b/cmd/rr/main.go
@@ -36,6 +36,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
+ "github.com/fatih/color"
)
var debugMode bool
@@ -43,6 +44,7 @@ var debugMode bool
func main() {
// forcing text based logging
rr.Logger.Formatter = &logrus.TextFormatter{ForceColors: true}
+ color.NoColor = true
// provides ability to make local connection to services
rr.Container.Register(rpc.ID, &rpc.Service{})