Skip to content
Permalink

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
Choose a base ref
...
head repository: kubernetes/klog
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.100.1
Choose a head ref
  • 7 commits
  • 11 files changed
  • 3 contributors

Commits on Feb 16, 2023

  1. 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
    mikedanese committed Feb 16, 2023
    Configuration menu
    Copy the full SHA
    4de3d37 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2023

  1. Merge pull request #369 from mikedanese/stdlog

    expose logBridge via NewStandardLog()
    k8s-ci-robot authored Mar 30, 2023
    Configuration menu
    Copy the full SHA
    2fdc76f View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2023

  1. add Format wrapper

    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.
    pohly committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    deffe14 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2023

  1. Merge pull request #374 from pohly/format

    add Format wrapper
    k8s-ci-robot authored Apr 24, 2023
    Configuration menu
    Copy the full SHA
    77b73d5 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. test: add more test cases for map, slice, struct

    Those are types for which the Sprintf("%+v") catchall code is used.
    pohly committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    6bb2990 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2023

  1. 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.
    pohly committed Apr 27, 2023
    Configuration menu
    Copy the full SHA
    d731661 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2023

  1. Merge pull request #375 from pohly/json-fallback

    JSON as fallback encoding
    k8s-ci-robot authored Apr 28, 2023
    Configuration menu
    Copy the full SHA
    6ded808 View commit details
    Browse the repository at this point in the history
Loading