Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
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.
22 lines
444 B
22 lines
444 B
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...) |
|
}
|
|
|