Install ex_syslogger

This commit is contained in:
Haelwenn (lanodan) Monnier 2019-01-02 22:57:37 +01:00
commit 5bcea0deca
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE
2 changed files with 9 additions and 2 deletions

View file

@ -32,7 +32,11 @@ defmodule Pleroma.Mixfile do
#
# Type `mix help compile.app` for more information.
def application do
[mod: {Pleroma.Application, []}, extra_applications: [:logger, :runtime_tools, :comeonin]]
[
mod: {Pleroma.Application, []},
extra_applications: [:logger, :runtime_tools, :comeonin],
included_applications: [:ex_syslogger]
]
end
# Specifies which paths to compile per environment.
@ -76,7 +80,8 @@ defmodule Pleroma.Mixfile do
{:swoosh, "~> 0.20"},
{:gen_smtp, "~> 0.13"},
{:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
{:floki, "~> 0.20.0"}
{:floki, "~> 0.20.0"},
{:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"}
]
end