Level is a settable identifier for the minimum level a log entry must have.
| 27 | |
| 28 | // Level is a settable identifier for the minimum level a log entry must have. |
| 29 | type Level struct { |
| 30 | s string |
| 31 | Option level.Option |
| 32 | } |
| 33 | |
| 34 | // RegisterFlags adds the log level flag to the provided flagset. |
| 35 | func (l *Level) RegisterFlags(f *flag.FlagSet) { |
nothing calls this directly
no outgoing calls
no test coverage detected