Skip to content

Commit

Permalink
added a kitlog level log adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
akhenakh authored and jackc committed Jan 27, 2021
1 parent aa8604b commit 9b59dd0
Show file tree
Hide file tree
Showing 3 changed files with 343 additions and 102 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ go 1.12

require (
github.com/cockroachdb/apd v1.1.0
github.com/go-kit/kit v0.10.0
github.com/gofrs/uuid v3.2.0+incompatible
github.com/jackc/pgconn v1.8.0
github.com/jackc/pgio v1.0.0
github.com/jackc/pgproto3/v2 v2.0.6
github.com/jackc/pgtype v1.6.2
github.com/jackc/puddle v1.1.3
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/rs/zerolog v1.15.0
github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.5.1
go.uber.org/zap v1.10.0
go.uber.org/zap v1.13.0
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec
)
Loading

2 comments on commit 9b59dd0

@oyvindsk
Copy link

@oyvindsk oyvindsk commented on 9b59dd0 Mar 29, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh no, please don't pull inn all of go-kit :'(

Believe this is what doubled my dependencies in the latest version:

$ go mod graph | wc
   1057    2114   90821
$ 
$ go get github.com/jackc/pgx/[email protected] 
go get: downgraded github.com/jackc/pgx/v4 v4.11.0 => v4.10.1
$ go mod tidy
$ go mod graph | wc
    405     810   36466
$ go mod graph | grep consu
$ 

@oyvindsk
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, I see someone beat me to it: #977

Please sign in to comment.