| 10 | ) |
| 11 | |
| 12 | type LoggerFlags struct { |
| 13 | Debug bool |
| 14 | } |
| 15 | |
| 16 | func (f *LoggerFlags) Set(cmd *cobra.Command, flagsFactory cmdcore.FlagsFactory) { |
| 17 | cmd.PersistentFlags().BoolVar(&f.Debug, "debug", false, "Include debug output") |
nothing calls this directly
no outgoing calls
no test coverage detected