Skip to content

Commit

Permalink
fix: changing the quiet mode logic, it was irking me
Browse files Browse the repository at this point in the history
  • Loading branch information
rizkybiz committed Jun 29, 2021
1 parent 2d4f847 commit 0b01b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func genConfig() config {
flag.IntVar(&c.agents, "agents", 10, "max number of agents to run concurrently")
flag.Float64Var(&c.sampleRate, "sample-rate", 0, "sampling rate")
flag.BoolVar(&c.version, "version", false, "show version information")
flag.BoolVar(&c.quiet, "quiet", true, "run gen-statsd in quiet mode")
flag.BoolVar(&c.quiet, "quiet", false, "run gen-statsd in quiet mode")
flag.Parse()

return c
Expand Down

0 comments on commit 0b01b21

Please sign in to comment.