(format string, a ...interface{})
| 64 | } |
| 65 | |
| 66 | func (l *DefaultLogger) Debug(format string, a ...interface{}) { |
| 67 | l.Log(log.LOG_DEBUG, format, a...) |
| 68 | } |
| 69 | |
| 70 | func (l *DefaultLogger) Info(format string, a ...interface{}) { |
| 71 | l.Log(log.LOG_INFO, format, a...) |