swapped default log library

This commit is contained in:
Erik Winter 2021-03-31 13:36:33 +02:00
parent a1f5551d76
commit 248d0aa45e
1 changed files with 1 additions and 1 deletions

View File

@ -23,5 +23,5 @@ type Logger interface {
}
func New(out io.Writer) Logger {
return NewLogrusLogger(out)
return NewGoKitIOLogger(out)
}