init the request logging with [DBUG].
(format string, args ...interface{})
| 131 | |
| 132 | // init the request logging with [DBUG]. |
| 133 | func (e *Engine) initDebugf(format string, args ...interface{}) { |
| 134 | if e.logger == nil { |
| 135 | return |
| 136 | } |
| 137 | |
| 138 | e.logger.Debugf(format, args...) |
| 139 | } |
| 140 | |
| 141 | var skipDBUGSpace = strings.Repeat(" ", 7) |
| 142 |