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
- Host: GitHub
- URL: https://github.com/puzza007/lager_folsom
- Owner: puzza007
- Created: 2014-11-19T13:49:31.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-05-30T22:55:46.000Z (about 4 years ago)
- Last Synced: 2025-02-02T16:03:16.159Z (over 1 year ago)
- Language: Erlang
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lager_folsom
[](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}
]}
]}
]}
].
```