(format string, args ...interface{})
| 183 | } |
| 184 | |
| 185 | func (p *DNSProxy) Debug(format string, args ...interface{}) { |
| 186 | p.Sess.Events.Log(log.DEBUG, p.tag+format, args...) |
| 187 | } |
| 188 | |
| 189 | func (p *DNSProxy) Info(format string, args ...interface{}) { |
| 190 | p.Sess.Events.Log(log.INFO, p.tag+format, args...) |
no test coverage detected