forked from golang/glog
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #415 from pohly/deduplication
de-duplication of key/value pairs
- Loading branch information
Showing
20 changed files
with
358 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
module k8s.io/klog/examples | ||
|
||
go 1.13 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.0 | ||
|
||
require ( | ||
github.com/go-logr/logr v1.4.1 | ||
github.com/go-logr/zapr v1.2.3 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
go.uber.org/goleak v1.1.12 | ||
go.uber.org/zap v1.19.0 | ||
golang.org/x/tools v0.1.5 | ||
golang.org/x/tools v0.27.0 | ||
k8s.io/klog/v2 v2.30.0 | ||
) | ||
|
||
require ( | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/mod v0.22.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
) | ||
|
||
replace k8s.io/klog/v2 => ../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module k8s.io/klog/v2 | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
require github.com/go-logr/logr v1.4.1 |
Oops, something went wrong.