From f8ec3e129f8496e6d86e3fe9dc69a1567e1e2768 Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Thu, 27 Jun 2019 13:00:22 -0500 Subject: [PATCH 1/2] In my experience syslog tags are usually lowercase --- config/config.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, :ex_syslogger, level: :debug, - ident: "Pleroma", + ident: "pleroma", format: "$metadata[$level] $message", metadata: [:request_id] From e64c758cea858823ff9e04a87defe1d476737236 Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Thu, 27 Jun 2019 16:25:55 -0500 Subject: [PATCH 2/2] Add changelog entry for syslog tag change --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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