(format string, args ...interface{})
| 80 | } |
| 81 | |
| 82 | func (c *myCustomContext) HTML(format string, args ...interface{}) (int, error) { |
| 83 | c.Application().Logger().Info("HTML was called from custom Context") |
| 84 | |
| 85 | return c.Context.HTML(format, args...) |
| 86 | } |