You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.1 KiB
Go
95 lines
2.1 KiB
Go
package logx
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/zeromicro/go-zero/core/timex"
|
|
)
|
|
|
|
const durationCallerDepth = 3
|
|
|
|
type durationLogger logEntry
|
|
|
|
// WithDuration returns a Logger which logs the given duration.
|
|
func WithDuration(d time.Duration) Logger {
|
|
return &durationLogger{
|
|
Duration: timex.ReprOfDuration(d),
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Error(v ...interface{}) {
|
|
if shallLog(ErrorLevel) {
|
|
l.write(errorLog, levelError, formatWithCaller(fmt.Sprint(v...), durationCallerDepth))
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Errorf(format string, v ...interface{}) {
|
|
if shallLog(ErrorLevel) {
|
|
l.write(errorLog, levelError, formatWithCaller(fmt.Sprintf(format, v...), durationCallerDepth))
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Errorv(v interface{}) {
|
|
if shallLog(ErrorLevel) {
|
|
l.write(errorLog, levelError, v)
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Info(v ...interface{}) {
|
|
if shallLog(InfoLevel) {
|
|
l.write(infoLog, levelInfo, fmt.Sprint(v...))
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Infof(format string, v ...interface{}) {
|
|
if shallLog(InfoLevel) {
|
|
l.write(infoLog, levelInfo, fmt.Sprintf(format, v...))
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Infov(v interface{}) {
|
|
if shallLog(InfoLevel) {
|
|
l.write(infoLog, levelInfo, v)
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Slow(v ...interface{}) {
|
|
if shallLog(ErrorLevel) {
|
|
l.write(slowLog, levelSlow, fmt.Sprint(v...))
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Slowf(format string, v ...interface{}) {
|
|
if shallLog(ErrorLevel) {
|
|
l.write(slowLog, levelSlow, fmt.Sprintf(format, v...))
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) Slowv(v interface{}) {
|
|
if shallLog(ErrorLevel) {
|
|
l.write(slowLog, levelSlow, v)
|
|
}
|
|
}
|
|
|
|
func (l *durationLogger) WithDuration(duration time.Duration) Logger {
|
|
l.Duration = timex.ReprOfDuration(duration)
|
|
return l
|
|
}
|
|
|
|
func (l *durationLogger) write(writer io.Writer, level string, val interface{}) {
|
|
switch atomic.LoadUint32(&encoding) {
|
|
case plainEncodingType:
|
|
writePlainAny(writer, level, val, l.Duration)
|
|
default:
|
|
outputJson(writer, &durationLogger{
|
|
Timestamp: getTimestamp(),
|
|
Level: level,
|
|
Content: val,
|
|
Duration: l.Duration,
|
|
})
|
|
}
|
|
}
|