Debugf produces a formatted log with debug level.
(format string, args ...interface{})
| 86 | |
| 87 | // Debugf produces a formatted log with debug level. |
| 88 | func (e *EchoLogger) Debugf(format string, args ...interface{}) { |
| 89 | e.logger.Debug().Msgf(format, args...) |
| 90 | } |
| 91 | |
| 92 | // Debugj produces a json log with debug level. |
| 93 | func (e *EchoLogger) Debugj(j echologger.JSON) { |