diff options
author | Wolfy-J <[email protected]> | 2018-07-05 16:11:37 -0700 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-07-05 16:11:37 -0700 |
commit | c3845f435959c3ccf545783ae35953cbcad83608 (patch) | |
tree | 3723e19e7b721d59bd3b31e5336f23a8ea31e598 /cmd/rr/main.go | |
parent | e989f316ec0680a75735840e6f6c669bddcf2146 (diff) |
no color?
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r-- | cmd/rr/main.go | 2 |
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{}) |