Skip to content

Commit

Permalink
Switch from github.com/go-kit/kit to github.com/go-kit/log interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
liggitt committed Jun 16, 2021
1 parent f6fb287 commit f619f01
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 308 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ myServer := grpc.NewServer(
* [`tags`](interceptors/tags) - a library that adds a `Tag` map to context, with data populated from request body
* [`zap`](providers/zap) - integration of [zap](https://github.com/uber-go/zap) logging library into gRPC handlers.
* [`logrus`](providers/logrus) - integration of [logrus](https://github.com/sirupsen/logrus) logging library into gRPC handlers.
* [`kit`](providers/kit) - integration of [go-kit](https://github.com/go-kit/kit/tree/master/log) logging library into gRPC handlers.
* [`kit`](providers/kit) - integration of [go-kit/log](https://github.com/go-kit/log) logging library into gRPC handlers.
* [`zerolog`](providers/zerolog) - integration of [zerolog](https://github.com/rs/zerolog) logging Library into gRPC handlers.

#### Monitoring
Expand Down
2 changes: 1 addition & 1 deletion providers/kit/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/go-kit/kit/log"
"github.com/go-kit/log"
"github.com/grpc-ecosystem/go-grpc-middleware/providers/kit/v2"
"google.golang.org/grpc"

Expand Down
2 changes: 1 addition & 1 deletion providers/kit/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/grpc-ecosystem/go-grpc-middleware/providers/kit/v2
go 1.14

require (
github.com/go-kit/kit v0.10.0
github.com/go-kit/log v0.1.0
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.2.0.20201002093600-73cf2ae9d891
google.golang.org/grpc v1.30.0
)

0 comments on commit f619f01

Please sign in to comment.