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

lowercase syslog tag

See merge request pleroma/pleroma!1344
This commit is contained in:
kaniini 2019-06-27 21:30:54 +00:00
commit ad249f6f5f
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -169,7 +169,7 @@
config :logger, :ex_syslogger,
level: :debug,
ident: "Pleroma",
ident: "pleroma",
format: "$metadata[$level] $message",
metadata: [:request_id]