Popularity
1.9
Declining
Activity
0.0
Stable
9
2
2

Monthly Downloads: 38
Programming language: Elixir
License: MIT License
Tags: Logging    

rogger alternatives and similar packages

Based on the "Logging" category.
Alternatively, view rogger alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of rogger or a related project?

Add another 'Logging' Package

README

Rogger

Hex Version

Simple Elixir logger which publishes messages in RabbitMQ

Usage

Add Rogger as a dependency in your mix.exs file.

def deps do
  [{:rogger, "~> 0.0.3"}]
end

Include :rogger in your application list:

def application do
  [applications: [:rogger]]
end

Add configuration related to your RabbitMQ instance:

config :rogger,
    host: "localhost",
    username: "guest",
    password: "guest"

Start Rogger process using Rogger.start_link([]) anywhere in your application or register it as a supervised process.

Then, run mix deps.get to fetch and compile Rogger.

Publish your logs :

Rogger.info "Some info message"

Rogger.warn "Some warning message"

Rogger.error "Some error message"