(format string, args ...interface{})
| 109 | } |
| 110 | |
| 111 | func (p *HTTPProxy) Debug(format string, args ...interface{}) { |
| 112 | p.Sess.Events.Log(log.DEBUG, p.tag+format, args...) |
| 113 | } |
| 114 | |
| 115 | func (p *HTTPProxy) Info(format string, args ...interface{}) { |
| 116 | p.Sess.Events.Log(log.INFO, p.tag+format, args...) |
no test coverage detected