diff options
Diffstat (limited to 'cmd/dgrep')
| -rw-r--r-- | cmd/dgrep/main.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/dgrep/main.go b/cmd/dgrep/main.go index 276dff4..4da1bb3 100644 --- a/cmd/dgrep/main.go +++ b/cmd/dgrep/main.go @@ -53,7 +53,10 @@ func main() { } ctx := context.TODO() - logger.Start(ctx, logger.Modes{Debug: debugEnable || config.Common.DebugEnable}) + logger.Start(ctx, logger.Modes{ + Debug: debugEnable || config.Common.DebugEnable, + Quiet: args.Quiet, + }) if grep != "" { args.RegexStr = grep |
