KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
plogger
★ 8
Open GitHub ↗
Piping Logger
Download README (.md)
Explore Similar Repositories
roko-basilisk
:
Roko's Basilisk attempt to save myself
CPTelegram
:
Telegram Bot Control Panel (php)
atom-modular-snippets
:
:atom: A modular solution to snippets in @Atom.
asmtool
:
No description available.
KeywordDrivenAutoTest
:
used selenium webdriver,Java,Juit.keyword driven framework to test web ui
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
plogger
?
Download (.md)
# Plogger Piping logger: logger functions that can inserted in a piping sequence. It is inspired by the logging functions in Elm: what you pass in, comes out. This makes it easy to log intermediate results in a sequence of function calls. ```elixir params |> Plogger.debug("Start") |> some_function() |> Plogger.debug("Step 1") |> other_function() |> Plogger.debug("Step 2") ``` The Plogger lines can be added and removed without any further changes. ## Installation Add `plogger` to your list of dependencies in `mix.exs`: ```elixir def deps do [{:plogger, "~> 0.1.0"}] end ```