IsDebug reports whether the application runs with debug log level. It is a shortcut of Application.IsDebug().
()
| 6255 | // IsDebug reports whether the application runs with debug log level. |
| 6256 | // It is a shortcut of Application.IsDebug(). |
| 6257 | func (ctx *Context) IsDebug() bool { |
| 6258 | return ctx.app.IsDebug() |
| 6259 | } |
| 6260 | |
| 6261 | // SetErr is just a helper that sets an error value |
| 6262 | // as a context value, it does nothing more. |
no test coverage detected