Debug produces a log with debug level.
(i ...interface{})
| 81 | |
| 82 | // Debug produces a log with debug level. |
| 83 | func (e *EchoLogger) Debug(i ...interface{}) { |
| 84 | e.logger.Debug().Msg(fmt.Sprint(i...)) |
| 85 | } |
| 86 | |
| 87 | // Debugf produces a formatted log with debug level. |
| 88 | func (e *EchoLogger) Debugf(format string, args ...interface{}) { |
no outgoing calls