Skip to content

Commit cc20532

Browse files
authored
Switch from github.com/go-kit/kit to github.com/go-kit/log interfaces (#427)
1 parent f6fb287 commit cc20532

File tree

5 files changed

+12
-308
lines changed

5 files changed

+12
-308
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ myServer := grpc.NewServer(
6161
* [`tags`](interceptors/tags) - a library that adds a `Tag` map to context, with data populated from request body
6262
* [`zap`](providers/zap) - integration of [zap](https://github.com/uber-go/zap) logging library into gRPC handlers.
6363
* [`logrus`](providers/logrus) - integration of [logrus](https://github.com/sirupsen/logrus) logging library into gRPC handlers.
64-
* [`kit`](providers/kit) - integration of [go-kit](https://github.com/go-kit/kit/tree/master/log) logging library into gRPC handlers.
64+
* [`kit`](providers/kit) - integration of [go-kit/log](https://github.com/go-kit/log) logging library into gRPC handlers.
6565
* [`zerolog`](providers/zerolog) - integration of [zerolog](https://github.com/rs/zerolog) logging Library into gRPC handlers.
6666

6767
#### Monitoring

providers/kit/examples_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/go-kit/kit/log"
7+
"github.com/go-kit/log"
88
"github.com/grpc-ecosystem/go-grpc-middleware/providers/kit/v2"
99
"google.golang.org/grpc"
1010

providers/kit/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/grpc-ecosystem/go-grpc-middleware/providers/kit/v2
33
go 1.14
44

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

0 commit comments

Comments
 (0)