Rename LogrusLogger interface to FieldLogger
This commit is contained in:
@@ -108,10 +108,8 @@ type StdLogger interface {
|
||||
Panicln(...interface{})
|
||||
}
|
||||
|
||||
// Logrus logger interface generalizes Entry and Logger types, so you can take any of these
|
||||
type LogrusLogger interface {
|
||||
// we can return LogrusLogger here, but this will require many changes and will
|
||||
// possible break backward compatiblity
|
||||
// The FieldLogger interface generalizes the Entry and Logger types
|
||||
type FieldLogger interface {
|
||||
WithField(key string, value interface{}) *Entry
|
||||
WithFields(fields Fields) *Entry
|
||||
WithError(err error) *Entry
|
||||
|
||||
+1
-1
@@ -346,7 +346,7 @@ func TestLoggingRace(t *testing.T) {
|
||||
// Compile test
|
||||
func TestLogrusInterface(t *testing.T) {
|
||||
var buffer bytes.Buffer
|
||||
fn := func(l LogrusLogger) {
|
||||
fn := func(l FieldLogger) {
|
||||
b := l.WithField("key", "value")
|
||||
b.Debug("Test")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user