diff options
| author | kaniini <nenolod@gmail.com> | 2019-01-07 22:25:02 +0000 |
|---|---|---|
| committer | kaniini <nenolod@gmail.com> | 2019-01-07 22:25:02 +0000 |
| commit | 4e5b1560479df7dd553a2132186f9701e1d56871 (patch) | |
| tree | f3e9f6c54ddeaf9ddb72c5fc13567d68a9808c19 /mix.exs | |
| parent | 3065fa4dfd6831912ea612fd660e80e838f57ccb (diff) | |
| parent | c9b99d4486be83f3161c889558290cb9be758007 (diff) | |
| download | pleroma-4e5b1560479df7dd553a2132186f9701e1d56871.tar.gz pleroma-4e5b1560479df7dd553a2132186f9701e1d56871.zip | |
Merge branch 'features/syslog_logger' into 'develop'
Add logging to syslog
See merge request pleroma/pleroma!622
Diffstat (limited to 'mix.exs')
| -rw-r--r-- | mix.exs | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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 |
