Files
2018-08-03 15:16:35 -04:00

67 lines
1.4 KiB
Go

package log
import (
"github.com/gomods/athens/pkg/errors"
"github.com/sirupsen/logrus"
)
// Entry is an abstraction to the
// Logger and the logrus.Entry
// so that *Logger always creates
// an Entry copy which ensures no
// Fields are being overwritten.
type Entry interface {
// Basic Logging Operation
Debugf(format string, args ...interface{})
Infof(format string, args ...interface{})
Warnf(format string, args ...interface{})
Errorf(format string, args ...interface{})
// Attach contextual information to the logging entry
WithFields(fields map[string]interface{}) Entry
// SystemErr is a method that disects the error
// and logs the appropriate level and fields for it.
SystemErr(err error)
}
type entry struct {
*logrus.Entry
}
func (e *entry) WithFields(fields map[string]interface{}) Entry {
ent := e.Entry.WithFields(fields)
return &entry{ent}
}
func (e *entry) SystemErr(err error) {
athensErr, ok := err.(errors.Error)
if !ok {
e.Error(err)
return
}
ent := e.WithFields(errFields(athensErr))
switch errors.Severity(err) {
case logrus.WarnLevel:
ent.Warnf("%v", err)
case logrus.InfoLevel:
ent.Infof("%v", err)
case logrus.DebugLevel:
ent.Debugf("%v", err)
default:
ent.Errorf("%v", err)
}
}
func errFields(err errors.Error) logrus.Fields {
f := logrus.Fields{}
f["operation"] = err.Op
f["kind"] = errors.KindText(err)
f["module"] = err.Module
f["version"] = err.Version
f["ops"] = errors.Ops(err)
return f
}