diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2023-12-24 10:45:29 +0100 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-06-12 15:18:47 -0400 |
commit | c389ea0f42bf01bbc463e9e237162aab3dabf7a7 (patch) | |
tree | 7127d233e7506d21da64f1921655858c496cf94c /config/description.exs | |
parent | ba6afdb44de43e4057e7c8972195402097d43dc6 (diff) | |
download | pleroma-c389ea0f42bf01bbc463e9e237162aab3dabf7a7.tar.gz pleroma-c389ea0f42bf01bbc463e9e237162aab3dabf7a7.zip |
Fix compatibility with Loggers in Elixir 1.15+
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/description.exs b/config/description.exs index 12beec842..9780b35a7 100644 --- a/config/description.exs +++ b/config/description.exs @@ -1237,8 +1237,8 @@ config :pleroma, :config_description, [ key: :backends, type: [:atom, :tuple, :module], description: - "Where logs will be sent, :console - send logs to stdout, { ExSyslogger, :ex_syslogger } - to syslog, Quack.Logger - to Slack.", - suggestions: [:console, {ExSyslogger, :ex_syslogger}] + "Where logs will be sent, Logger.Backends.Console - send logs to stdout, { ExSyslogger, :ex_syslogger } - to syslog.", + suggestions: [Logger.Backends.Console, {ExSyslogger, :ex_syslogger}] } ] }, @@ -1278,7 +1278,7 @@ config :pleroma, :config_description, [ %{ group: :logger, type: :group, - key: :console, + key: Logger.Backends.Console, label: "Console Logger", description: "Console logger settings", children: [ |