(s string, i ...interface{})
| 41 | } |
| 42 | |
| 43 | func (logger *zerologLogger) Printf(s string, i ...interface{}) { |
| 44 | logger.decorateEvent(logger.zerolog.Info()).Msg(fmt.Sprintf(s, i...)) |
| 45 | } |
| 46 | |
| 47 | // WithString creates a new structured zerolog logger instance with a key value pair |
| 48 | func (logger *zerologLogger) WithString(key string, value string) Logger { |
nothing calls this directly
no test coverage detected