| 64 | } |
| 65 | |
| 66 | type filterLogger struct { |
| 67 | logger internal.Logging |
| 68 | blacklist bool |
| 69 | substr []string |
| 70 | } |
| 71 | |
| 72 | func (l *filterLogger) Printf(ctx context.Context, format string, v ...interface{}) { |
| 73 | msg := fmt.Sprintf(format, v...) |
nothing calls this directly
no outgoing calls
no test coverage detected