(log string, lvl l4g.Level, message string)
| 134 | } |
| 135 | |
| 136 | func (l *Logger) Log(log string, lvl l4g.Level, message string) { |
| 137 | l.queue <- m{log: log, lvl: lvl, message: message} |
| 138 | return |
| 139 | } |
| 140 | |
| 141 | func (l *Logger) Debug(log string, message string) { |
| 142 | l.Log(log, l4g.DEBUG, message) |