Skip to content

Releases: go-logr/stdr

v1.2.2

15 Dec 16:21
521af2a
Compare
Choose a tag to compare

Update to logr v1.2.2

v1.2.0

20 Oct 19:09
4c04662
Compare
Choose a tag to compare

Update to logr v1.2.0

v1.1.0

24 Aug 19:26
7e1a3a4
Compare
Choose a tag to compare

This is a minor release, but the minor version is updated to stay in sync with logr.

  • Depends on logr v1.1.0
  • Don't print empty spaces if prefix is empty
  • Do print a colon (':') if prefix is not empty. E.g. "prefix: args..."
  • Change some implementation details but user output should remain the same, except as noted above

v1.0.0

06 Jul 22:55
68222b7
Compare
Choose a tag to compare
Merge pull request #13 from thockin/go-mod

Nix 'autogenerated' check - not needed any more

v1.0.0-rc1

29 May 00:40
535c783
Compare
Choose a tag to compare
Merge pull request #11 from thockin/go-mod

Update stdr to logr 1.0.0-rc1

v0.4.0

26 Jan 22:11
66261bf
Compare
Choose a tag to compare
  • Support logr.WithCallDepth()

v0.3.0

02 Nov 16:57
2e39664
Compare
Choose a tag to compare

Adds Underlier interface with GetUnderlying() which callers can use if they know the implementation and need direct access.

Example:

if under, ok := log.(stdr.Underlier); ok {
    if stdLogger, ok := under.GetUnderlying().(*stdlog.Logger); ok {
        stdLogger.Printf("Hello")
    }
}

v0.2.0

11 Jun 22:39
12d3571
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
Merge pull request #2 from thockin/master

Get rid of InfoLogger, implement V() as additive

v0.1.0: Merge pull request #3 from thockin/copyright

28 Mar 23:47
4d96433
Compare
Choose a tag to compare