Skip to content

Commit

Permalink
Merge pull request #226 from dannykopping/dannykopping/go-kit
Browse files Browse the repository at this point in the history
Migrate from go-kit/kit/log to go-kit/log
  • Loading branch information
bboreham authored Oct 15, 2021
2 parents 035033b + abc38d0 commit ebe5bdc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/aws/aws-sdk-go v1.27.0
github.com/davecgh/go-spew v1.1.1
github.com/felixge/httpsnoop v1.0.1
github.com/go-kit/kit v0.10.0
github.com/go-kit/log v0.1.0
github.com/gogo/googleapis v1.1.0
github.com/gogo/protobuf v1.3.0
github.com/gogo/status v1.0.3
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2
github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
github.com/go-kit/kit v0.10.0 h1:dXFJfIHVvUcpSgDOV+Ne6t7jXri8Tfv2uOLHUZ2XNuo=
github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o=
github.com/go-kit/log v0.1.0 h1:DGJh0Sm43HbOeYDNnVZFl8BvcYVvjD5bqYJvp0REbwQ=
github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=
github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
github.com/go-logfmt/logfmt v0.5.0 h1:TrB8swr/68K7m9CcGut2g3UOihhbcbiMAYiuTXdEih4=
Expand Down
4 changes: 2 additions & 2 deletions logging/gokit.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/level"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
)

// NewGoKitFormat creates a new Interface backed by a GoKit logger
Expand Down
2 changes: 1 addition & 1 deletion logging/level.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package logging
import (
"flag"

"github.com/go-kit/kit/log/level"
"github.com/go-kit/log/level"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
Expand Down

0 comments on commit ebe5bdc

Please sign in to comment.