Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 941 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 941 Bytes

EventLog

Rollbax

The rollbax dependency is used to report plug, uncatched and manual errors to the cloud service rollbar. Please update your config.exs accordingly:

# Disable rollbar reporting
config :rollbax,
  enabled: false

# Use environment variables to configure rollbax
# ROLLBAR_ACCESS_TOKEN string
# ROLLBAR_ENABLED "false" "true"
# ROLLBAR_ENV string
config :rollbax,
  config_callback: {EventLog.Rollbax, :config}

Installation

If available in Hex, the package can be installed by adding event_log to your list of dependencies in mix.exs:

def deps do
  [
    {:event_log, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/event_log.