diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/main.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go index 4d66177a..2a16b195 100644 --- a/cmd/rr/main.go +++ b/cmd/rr/main.go @@ -23,6 +23,8 @@ package main import ( + "github.com/sirupsen/logrus" + rr "github.com/spiral/roadrunner/cmd/rr/cmd" // services (plugins) @@ -40,5 +42,6 @@ func main() { rr.Container.Register(static.ID, &static.Service{}) // you can register additional commands using cmd.CLI + rr.Logger.Formatter = &logrus.TextFormatter{ForceColors: true} rr.Execute() } |