logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: ad249f6f5f6d3f53bd0da77b3e02f83823ea8e8b
parent: 0369a5db16c33e9fc9dafffaae1e3109d92b7468
Author: kaniini <nenolod@gmail.com>
Date:   Thu, 27 Jun 2019 21:30:54 +0000

Merge branch 'fix/syslog-tag' into 'develop'

lowercase syslog tag

See merge request pleroma/pleroma!1344

Diffstat:

MCHANGELOG.md1+
Mconfig/config.exs2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git 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 @@ -169,7 +169,7 @@ config :logger, :console, config :logger, :ex_syslogger, level: :debug, - ident: "Pleroma", + ident: "pleroma", format: "$metadata[$level] $message", metadata: [:request_id]