mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
23 lines
444 B
Go
23 lines
444 B
Go
|
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...)
|
||
|
}
|