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.
23 lines
444 B
23 lines
444 B
5 years ago
|
package logger
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
type StandardLogger struct{}
|
||
|
|
||
|
func (StandardLogger) Printf(format string, args ...interface{}) {
|
||
|
if len(format) == 0 || format[len(format)-1] != '\n' {
|
||
|
format += "\n"
|
||
|
}
|
||
|
fmt.Fprintf(os.Stderr, format, args...)
|
||
|
}
|
||
|
|
||
|
func (StandardLogger) Debugf(format string, args ...interface{}) {
|
||
|
if len(format) == 0 || format[len(format)-1] != '\n' {
|
||
|
format += "\n"
|
||
|
}
|
||
|
fmt.Fprintf(os.Stderr, format, args...)
|
||
|
}
|