An open API service indexing awesome lists of open source software.

https://github.com/puzza007/lager_folsom

Folsom spiral of lager log counts by level
https://github.com/puzza007/lager_folsom

Last synced: 3 months ago
JSON representation

Folsom spiral of lager log counts by level

Awesome Lists containing this project

README

          

# lager_folsom

[![Hex pm](http://img.shields.io/hexpm/v/lager_folsom.svg?style=flat)](https://hex.pm/packages/lager_folsom)

## Configuration

Add `lager_folsom` to your `rebar.config` deps:

``` erlang
{deps,
[
{lager_folsom, "1.0.0"},
...
]}.
```

And finally, configure `lager` app with something like this:

``` erlang
[
{lager,
[
{handlers,
[
{lager_folsom_backend,
[
{level, info}
]}
]}
]}
].
```