Skip to content

Commit 0d8612f

Browse files
committed
microceph/cmd/microcephd/main: turn --verbose and --debug logs off by default
They were turned on by default in f1e0421.
1 parent 88301c1 commit 0d8612f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

microceph/cmd/microcephd/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ func main() {
113113

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

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

0 commit comments

Comments
 (0)