Packages

Set of wrapper functions for the built-in Logger functions `info`, `debug`, `warn`, `error`. Because the output of the functions is the same as the input, they can be inserted in a sequence of functions, that are linked with the pipe ( |> ) operator. It works the same as Elm's Debug.log.

Current section

Files

Jump to
plogger README.md
Raw

README.md

# Plogger
Piping logger: logger functions that can inserted in a
piping sequence.
[Read the docs](http://hexdocs.pm/plogger/)
## Installation
Add `plogger` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:plogger, "~> 0.1.0"}]
end
```