diff options
author | kaniini <nenolod@gmail.com> | 2019-06-27 21:30:54 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-06-27 21:30:54 +0000 |
commit | ad249f6f5f6d3f53bd0da77b3e02f83823ea8e8b (patch) | |
tree | 20c4ea83e404ffbf43de7e254c022bad36033eff | |
parent | 0369a5db16c33e9fc9dafffaae1e3109d92b7468 (diff) | |
parent | e64c758cea858823ff9e04a87defe1d476737236 (diff) | |
download | pleroma-ad249f6f5f6d3f53bd0da77b3e02f83823ea8e8b.tar.gz |
Merge branch 'fix/syslog-tag' into 'develop'
lowercase syslog tag
See merge request pleroma/pleroma!1344
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | config/config.exs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index be0b74a16..447fa1700 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -68,6 +68,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - MRF: Support for filtering out likely spam messages by rejecting posts from new users that contain links. - Configuration: `ignore_hosts` option - Configuration: `ignore_tld` option +- Configuration: default syslog tag "Pleroma" is now lowercased to "pleroma" ### Changed - **Breaking:** bind to 127.0.0.1 instead of 0.0.0.0 by default diff --git a/config/config.exs b/config/config.exs index d381a8dc2..e337f00aa 100644 --- a/config/config.exs +++ b/config/config.exs @@ -169,7 +169,7 @@ config :logger, :console, config :logger, :ex_syslogger, level: :debug, - ident: "Pleroma", + ident: "pleroma", format: "$metadata[$level] $message", metadata: [:request_id] |