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/config.exs | |
parent | ba6afdb44de43e4057e7c8972195402097d43dc6 (diff) | |
download | pleroma-c389ea0f42bf01bbc463e9e237162aab3dabf7a7.tar.gz pleroma-c389ea0f42bf01bbc463e9e237162aab3dabf7a7.zip |
Fix compatibility with Loggers in Elixir 1.15+
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index a40ed28af..b0507918b 100644 --- a/config/config.exs +++ b/config/config.exs @@ -132,6 +132,8 @@ config :pleroma, Pleroma.Web.Endpoint, ] # Configures Elixir's Logger +config :logger, backends: [:console] + config :logger, :console, level: :debug, format: "\n$time $metadata[$level] $message\n", |