Browse Source

Roll 3.3.0

pull/390/head 3.3.0
Mark Allen 8 years ago
parent
commit
5adfa56a76
2 changed files with 23 additions and 3 deletions
  1. +22
    -2
      README.md
  2. +1
    -1
      src/lager.app.src

+ 22
- 2
README.md View File

@ -5,7 +5,7 @@ to provide a more traditional way to perform logging in an erlang application
that plays nicely with traditional UNIX logging tools like logrotate and that plays nicely with traditional UNIX logging tools like logrotate and
syslog. syslog.
[Travis-CI](http://travis-ci.org/basho/lager) :: ![Travis-CI](https://secure.travis-ci.org/basho/lager.png)
[Travis-CI](http://travis-ci.org/erlang-lager/lager) :: ![Travis-CI](https://secure.travis-ci.org/erlang-lager/lager.png)
Features Features
-------- --------
@ -655,7 +655,8 @@ erlc -pa lager/ebin +'{parse_transform, lager_transform}' +'{lager_truncation_si
Suppress applications and supervisors start/stop logs Suppress applications and supervisors start/stop logs
----------------------------------------------------- -----------------------------------------------------
If you don't want to see supervisors and applications start/stop logs in debug level of your application, you can use these configs to turn it off:
If you don't want to see supervisors and applications start/stop logs in debug
level of your application, you can use these configs to turn it off:
```erlang ```erlang
{lager, [{suppress_application_start_stop, true}, {lager, [{suppress_application_start_stop, true},
@ -664,6 +665,25 @@ If you don't want to see supervisors and applications start/stop logs in debug l
3.x Changelog 3.x Changelog
------------- -------------
3.3.0 - 16 February 2017
* Docs: Fix documentation to make 'it' unambiguous when discussing asychronous
operation. (#387)
* Test: Fix test flappiness due to insufficient sanitation between test runs (#384, #385)
* Feature: Allow metadata only logging. (#380)
* Feature: Add an upper case severity formatter (#372)
* Feature: Add support for suppressing start/stop messages from supervisors (#368)
* Bugfix: Fix ranch crash messages (#366)
* Test: Update Travis config for 18.3 and 19.0 (#365)
3.2.4 - 11 October 2016
* Test: Fix dialyzer warnings.
3.2.3 - 29 September 2016
* Dependency: Update to goldrush 0.19
3.2.2 - 22 September 2016 3.2.2 - 22 September 2016
* Bugfix: Backwards-compatibility fix for `{crash_log, undefined}` (#371) * Bugfix: Backwards-compatibility fix for `{crash_log, undefined}` (#371)

+ 1
- 1
src/lager.app.src View File

@ -3,7 +3,7 @@
{application, lager, {application, lager,
[ [
{description, "Erlang logging framework"}, {description, "Erlang logging framework"},
{vsn, "3.2.2"},
{vsn, "3.3.0"},
{modules, []}, {modules, []},
{applications, [ {applications, [
kernel, kernel,

Loading…
Cancel
Save