(format string, a ...interface{})
| 25 | } |
| 26 | |
| 27 | func (l syslogLogger) Debugf(format string, a ...interface{}) { |
| 28 | _ = l.syslog.Debug(fmt.Sprintf(format, a...)) |
| 29 | } |
| 30 | |
| 31 | func (l syslogLogger) Info(v ...interface{}) { |
| 32 | // Use notice instead of info as many systems filter < notice level |