mirror of https://github.com/ginuerzh/gost
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
414 B
29 lines
414 B
package gost
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
func init() {
|
|
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
|
}
|
|
|
|
type LogLogger struct {
|
|
}
|
|
|
|
func (l *LogLogger) Log(v ...interface{}) {
|
|
log.Println(v...)
|
|
}
|
|
|
|
func (l *LogLogger) Logf(format string, v ...interface{}) {
|
|
log.Printf(format, v...)
|
|
}
|
|
|
|
type NopLogger struct {
|
|
}
|
|
|
|
func (l *NopLogger) Log(v ...interface{}) {
|
|
}
|
|
|
|
func (l *NopLogger) Logf(format string, v ...interface{}) {
|
|
}
|
|
|