42 lines
816 B
Go
42 lines
816 B
Go
|
package logging
|
||
|
|
||
|
func (l *SystemDLogger) doDebug(d bool) {
|
||
|
l.EnableDebug = d
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) setPrefix(prefix string) {
|
||
|
l.Prefix = prefix
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Alert(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Crit(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Debug(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Emerg(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Err(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Info(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Notice(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (l *SystemDLogger) Warning(s string, v ...interface{}) (err error) {
|
||
|
return
|
||
|
}
|