Info takes a message and a set of key/value pairs and logs with level INFO. The key of the tuple must be a string.
(msg string, keyVals ...interface{})
| 36 | // Info takes a message and a set of key/value pairs and logs with level INFO. |
| 37 | // The key of the tuple must be a string. |
| 38 | func (l zeroLogWrapper) Info(msg string, keyVals ...interface{}) { |
| 39 | l.Logger.Info().Fields(keyVals).Msg(msg) |
| 40 | } |
| 41 | |
| 42 | // Warn takes a message and a set of key/value pairs and logs with level INFO. |
| 43 | // The key of the tuple must be a string. |
no outgoing calls
no test coverage detected