(format string, args ...interface{})
| 117 | } |
| 118 | |
| 119 | func (p *HTTPProxy) Warning(format string, args ...interface{}) { |
| 120 | p.Sess.Events.Log(log.WARNING, p.tag+format, args...) |
| 121 | } |
| 122 | |
| 123 | func (p *HTTPProxy) Error(format string, args ...interface{}) { |
| 124 | p.Sess.Events.Log(log.ERROR, p.tag+format, args...) |
no test coverage detected