diff options
Diffstat (limited to 'cmd/rr')
-rw-r--r-- | cmd/rr/cmd/root.go | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/cmd/rr/cmd/root.go b/cmd/rr/cmd/root.go index 2e170307..1222177a 100644 --- a/cmd/rr/cmd/root.go +++ b/cmd/rr/cmd/root.go @@ -109,11 +109,13 @@ func init() { } // global watcher config - wcv, _ := Container.Get(watcher.ID) - if wcv, ok := wcv.(*watcher.Service); ok { - wcv.AddListener(func(event int, ctx interface{}) { - util.LogEvent(Logger, event, ctx) - }) + if Verbose { + wcv, _ := Container.Get(watcher.ID) + if wcv, ok := wcv.(*watcher.Service); ok { + wcv.AddListener(func(event int, ctx interface{}) { + util.LogEvent(Logger, event, ctx) + }) + } } }) } |