Kataras Golog Versions Save

A high-performant Logging Foundation for Go Applications. X3 faster than the rest leveled loggers.

v0.1.1

3 years ago

Sa 15 August | v0.1.1

  • Logger.Child accepts an interface{} instead of string. This way you can register children for pointers without forcing to naming them. If the key is string, then it's used as prefix (like always did).

v0.1.0

3 years ago

Go get failed on 0.0.19 let's try this release instead.

v0.0.19

3 years ago

v0.0.18

3 years ago

v0.0.16

3 years ago

Sa 06 June 2020 | v0.0.16

  • New Fields map type that can be passed to Logf/Debugf/Infof/Warnf/Errorf/Fatalf functions and set the Log.Fields data field (which can be retrieved through a custom LogHandler).
  • Add Log.Stacktrace of new Frame type which holds the callers stack trace when Debug/Debugf.
  • Add json struct fields to the Log structure.
  • Update the customize-output example.

v0.0.15

4 years ago

Same as v0.0.14 (refreshed for modules caching), read the following link for changes: https://github.com/kataras/golog/blob/master/HISTORY.md#su-17-may-2020--v0014

v0.0.13

4 years ago

Update pio dependency, see release notes for v0.0.12 too.

v0.0.12

4 years ago

This release provides support for colorized log level per registered output. Log's level will be colorful for registered io.Writer(via AddOutput) that supports colors, even when the rest of the writers (e.g. files) don't.

Breaking changes on the Levels map. See the corresponding updated example for migration.

v0.0.10

4 years ago
  • Update pio dependency to version 0.0.2 as it contains a small but important bugfix for GUI apps.

v0.0.9

4 years ago
  • Set the Logger's NewLine on Clone method which golog makes use inside its Child("...") method.
  • Go module (v0.0.9).