VoidLogger is a logger that does nothing. Used to disable logging and thus speed up the library.
| 22 | // VoidLogger is a logger that does nothing. |
| 23 | // Used to disable logging and thus speed up the library. |
| 24 | type VoidLogger struct{} |
| 25 | |
| 26 | func (v *VoidLogger) Printf(_ context.Context, _ string, _ ...interface{}) { |
| 27 | // do nothing |
nothing calls this directly
no outgoing calls
no test coverage detected