Rename LogrusLogger interface to FieldLogger

This commit is contained in:
Simon Eskildsen
2016-03-17 14:07:00 +00:00
parent bb78923f27
commit 897f3dddf1
2 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -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")
}