Skip to content

Releases: s-fleck/lgr

0.5.0

23 Jul 06:31

Choose a tag to compare

  • Added rawMsg property to LogEvents to store message without
    string interpolation (i.e. the original string that still contains
    the placeholders from either sprintf() or glue()) (#60)

  • Updated AppenderConsole to accept a connection argument. If called from a
    {knitr} rendering process, log messages are now output to stderr instead
    of stdout by default. This avoids polluting markdown documents (#62, thx @gadenbuie).

  • Replace NULL values and empty characters in logging by the string "<NULL>".
    Before, NULL values would have resulted in empty log messages. (#51)

  • Support transformers for LoggerGlue (see ?glue::glue) (#51)

  • Add excluded_fields to Layout for excluding fields from logging.

  • Add transform_event and transform_event_names to LayoutJson to make
    it more flexible. Exclude rawMsg by default for backwards compatibility.

v0.4.4

18 Nov 08:31

Choose a tag to compare

What's Changed

  • interpolate {msg} in default LayoutGlue spec by @mmuurr in #54

New Contributors

Full Changelog: v.0.4.1...v0.4.4

Seventh CRAN Release

22 Oct 10:57

Choose a tag to compare

v.0.4.1

drop testing on r 3.2

Sixth CRAN Release

27 Sep 12:06

Choose a tag to compare

Fixes notable performance regression when looking up parents of a logger

Fifth CRAN release

21 Aug 07:33

Choose a tag to compare

Adds AppenderSyslog for writing to the syslog on supported POSIX machines via rsyslog

Fourth CRAN release

15 Jun 03:56

Choose a tag to compare

General maintenance release, adds logger_tree() for a quick overview of all registered loggers.

Third CRAN release - AppenderFileRotating

06 Jun 06:02

Choose a tag to compare

v0.3.0

Third CRAN release

Second CRAN Release - Global Loggers

06 Jun 06:49

Choose a tag to compare

  • Loggers are now stored in a global namespace and accessed/created with get_logger() similar to python logging
  • Loggers gain a $config method that can load config objects and YAML files/strings

First CRAN release

30 Jan 20:49

Choose a tag to compare

Finalized basic API