Packages

The component that lets a nde forward log messages to another node in the Bunyan distributed and pluggable logging system

Current section

Files

Jump to
bunyan_writer_remote lib remote application.ex
Raw

lib/remote/application.ex

defmodule Bunyan.Writer.Remote.Application do
use Application
def start(_type, _args) do
children = [
{ Bunyan.Writer.Remote, [] },
]
opts = [strategy: :one_for_one, name: Bunyan.Writer.Remote.Supervisor]
Supervisor.start_link(children, opts)
end
end