forked from golang/glog
-
Notifications
You must be signed in to change notification settings - Fork 219
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: kubernetes/klog
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.90.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: kubernetes/klog
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.100.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 7 commits
- 11 files changed
- 3 contributors
Commits on Feb 16, 2023
-
expose logBridge via NewStandardLog()
Various libraries, including stdlib, accept *log.Logger to support optional logging. Let's expose logBridge to facilitate working with these libraries. stdlib examples: * [http.Server.ErrorLog] * [httputil.ReverseProxy.ErrorLog] [http.Server.ErrorLog]: https://cs.opensource.google/go/go/+/refs/tags/go1.20.1:src/net/http/server.go;l=2679-2683;drc=ea4631cc0cf301c824bd665a7980c13289ab5c9d [httputil.ReverseProxy.ErrorLog]: https://cs.opensource.google/go/go/+/refs/tags/go1.20.1:src/net/http/httputil/reverseproxy.go;l=173-176;drc=458241f981e0a8e1d9e0b2f6ae53be62f00001d2
Configuration menu - View commit details
-
Copy full SHA for 4de3d37 - Browse repository at this point
Copy the full SHA 4de3d37View commit details
Commits on Mar 30, 2023
-
Merge pull request #369 from mikedanese/stdlog
expose logBridge via NewStandardLog()
Configuration menu - View commit details
-
Copy full SHA for 2fdc76f - Browse repository at this point
Copy the full SHA 2fdc76fView commit details
Commits on Apr 12, 2023
-
The wrapper function solves two problems: - Types which inherit a String implementation from some embedded type and then don't overwrite it log just the embedded type as string. Example: KubeletConfig. - Types which have a generated String implementation and no MarshalLog get always logged as string, also in JSON. Example: all of the Kubernetes API types. Ideally, types should get fixed to handle both cases. klog.Format is the fallback for cases where that is not possible or not desirable: it implements String as an indented JSON dump and MarshalLog as value dump through reflection.
Configuration menu - View commit details
-
Copy full SHA for deffe14 - Browse repository at this point
Copy the full SHA deffe14View commit details
Commits on Apr 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 77b73d5 - Browse repository at this point
Copy the full SHA 77b73d5View commit details
Commits on Apr 26, 2023
-
test: add more test cases for map, slice, struct
Those are types for which the Sprintf("%+v") catchall code is used.
Configuration menu - View commit details
-
Copy full SHA for 6bb2990 - Browse repository at this point
Copy the full SHA 6bb2990View commit details
Commits on Apr 27, 2023
-
formatting: replace Sprintf("%+v") with JSON
The output of Sprintf("%+v") is neither readable nor parseable. JSON encoding is better in both regards. There are some downsides: - Unexported fields don't get encoded anymore. However, the same happens with other backends (in particular, zapr), so one could also argue that making the text format behave like those others is good because developers notice early that they custom String and MarshalLog methods if they want to log such fields. - The result KObjs (a slice) now gets encoded as array of structs. KObjs already got deprecated a year ago. KObjSlice should be used instead.
Configuration menu - View commit details
-
Copy full SHA for d731661 - Browse repository at this point
Copy the full SHA d731661View commit details
Commits on Apr 28, 2023
-
Merge pull request #375 from pohly/json-fallback
JSON as fallback encoding
Configuration menu - View commit details
-
Copy full SHA for 6ded808 - Browse repository at this point
Copy the full SHA 6ded808View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v2.90.1...v2.100.1