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.
kratos/log/std.go

46 lines
769 B

4 years ago
package log
import (
"bytes"
"fmt"
"io"
4 years ago
"log"
"sync"
)
var _ Logger = (*stdLogger)(nil)
type stdLogger struct {
log *log.Logger
pool *sync.Pool
}
// NewStdLogger new a std logger with options.
func NewStdLogger(w io.Writer) Logger {
4 years ago
return &stdLogger{
log: log.New(w, "", log.LstdFlags),
4 years ago
pool: &sync.Pool{
New: func() interface{} {
return new(bytes.Buffer)
},
},
}
}
// Print print the kv pairs log.
func (l *stdLogger) Print(pairs ...interface{}) {
if len(pairs) == 0 {
4 years ago
return
}
if len(pairs)%2 != 0 {
pairs = append(pairs, "")
4 years ago
}
buf := l.pool.Get().(*bytes.Buffer)
for i := 0; i < len(pairs); i += 2 {
fmt.Fprintf(buf, "%s=%v ", pairs[i], Value(pairs[i+1]))
4 years ago
}
l.log.Output(4, buf.String())
4 years ago
buf.Reset()
l.pool.Put(buf)
4 years ago
}