Skip to content

Commit

Permalink
Merge pull request #394 from sabaini/no-default-debug
Browse files Browse the repository at this point in the history
Don't set debug log by default
  • Loading branch information
sabaini authored Jul 26, 2024
2 parents 69853e8 + 157ab9a commit 14efe72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion microceph/cmd/microcephd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func main() {

app.PersistentFlags().BoolVarP(&daemonCmd.global.flagHelp, "help", "h", false, "Print help")
app.PersistentFlags().BoolVar(&daemonCmd.global.flagVersion, "version", false, "Print version number")
app.PersistentFlags().BoolVarP(&daemonCmd.global.flagLogDebug, "debug", "d", true, "Show all debug messages")
app.PersistentFlags().BoolVarP(&daemonCmd.global.flagLogDebug, "debug", "d", false, "Show all debug messages")
app.PersistentFlags().BoolVarP(&daemonCmd.global.flagLogVerbose, "verbose", "v", false, "Show all information messages")

app.PersistentFlags().StringVar(&daemonCmd.flagStateDir, "state-dir", "", "Path to store state information"+"``")
Expand Down

0 comments on commit 14efe72

Please sign in to comment.