Infof produces a formatted log with info level.
(format string, args ...interface{})
| 101 | |
| 102 | // Infof produces a formatted log with info level. |
| 103 | func (e *EchoLogger) Infof(format string, args ...interface{}) { |
| 104 | e.logger.Info().Msgf(format, args...) |
| 105 | } |
| 106 | |
| 107 | // Infoj produces a json log with info level. |
| 108 | func (e *EchoLogger) Infoj(j echologger.JSON) { |