(format string, args ...interface{})
| 191 | } |
| 192 | |
| 193 | func (p *DNSProxy) Warning(format string, args ...interface{}) { |
| 194 | p.Sess.Events.Log(log.WARNING, p.tag+format, args...) |
| 195 | } |
| 196 | |
| 197 | func (p *DNSProxy) Error(format string, args ...interface{}) { |
| 198 | p.Sess.Events.Log(log.ERROR, p.tag+format, args...) |
no test coverage detected