HandlerName returns the current handler's name, helpful for debugging.
()
| 646 | |
| 647 | // HandlerName returns the current handler's name, helpful for debugging. |
| 648 | func (ctx *Context) HandlerName() string { |
| 649 | return HandlerName(ctx.handlers[ctx.currentHandlerIndex]) |
| 650 | } |
| 651 | |
| 652 | // HandlerFileLine returns the current running handler's function source file and line information. |
| 653 | // Useful mostly when debugging. |
no test coverage detected