Go Playground Log Versions Save

:green_book: Simple, configurable and scalable Structured Logging for Go.

v8.0.0-rc4

2 years ago

v8.0.0-rc3

2 years ago

v8.0.0-rc.2

2 years ago

v8.0.0-rc2

2 years ago

v8.0.0-rc1

2 years ago

v7.0.2

4 years ago

What was fixed?

  • Fixed Go Modules versioning + imports
  • Updated deps to their Go Modules counterparts

v7.0.1

5 years ago

What was fixed?

Corrected terminal detection not compatible with windows.

v7.0.0

5 years ago

What's new?

NOTE: breaking change as now relying on go-playground/pkg/runtime for stack information previously within go-playground/errors and updated to the latest version of the errors package.

  • Added default logger. If you register your own logger, of any kind, the default logger is removed and so is backward compatible. It is only registered when attached to a terminal.
  • Added Close methods to handlers to allow resource cleanup & automatic removal of the logger now that RemoveHandler and AddHandler can be made on the fly.
  • Updated to use go-playground/pkg/runtime.StackLevel(...) previously found int go-playground/errors

v6.4.0

5 years ago

What's new?

  • Added the ability to add an remove Handlers and Handler Levels at runtime with the following functions:
    • RemoveHandler(Handler)
    • RemoveHandlerLevels(Handler, level)
  • Tuned performance of the error parsing a bit
  • Updated to use the newest go-playground/errors
  • Fixed some syslog tests
  • Updated to using Go Modules

v6.3.0

5 years ago

What was added?

The ability to enable/disable the email handler; see PR #26 for details; thanks @Chiiruno for the PR