NewLoggerV2WithVerbosity creates a loggerV2 with the provided writers and verbosity level.
(infoW, warningW, errorW io.Writer, v int)
| 52 | // NewLoggerV2WithVerbosity creates a loggerV2 with the provided writers and |
| 53 | // verbosity level. |
| 54 | func NewLoggerV2WithVerbosity(infoW, warningW, errorW io.Writer, v int) LoggerV2 { |
| 55 | return internal.NewLoggerV2(infoW, warningW, errorW, internal.LoggerV2Config{Verbosity: v}) |
| 56 | } |
| 57 | |
| 58 | // newLoggerV2 creates a loggerV2 to be used as default logger. |
| 59 | // All logs are written to stderr. |
nothing calls this directly
no test coverage detected