Release 2.12.0
Features
Bug Fixes
Improvements
Structured Logging
In addition, we switched to using structured logging. As a result, all log messages produced by Wakapi now either have the following text format (dev
mode)
time=2022-11-08T15:28:26.000-05:00 level=INFO msg=hello count=3
or are JSON objects (prod
mode) like this:
{"time":"2022-11-08T15:28:26.000000000-05:00","level":"INFO","msg":"hello","count":3}
For some people, this might be a breaking change if they parse the current (now obsolete) log format for further processing such as monitoring or altering.
Also, Wakapi now bases on Go 1.23.