diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2023-07-02 22:46:20 +0200 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-06-12 15:18:47 -0400 |
commit | 8757c5e35aea813f0ea82e2f9e8075282207d91c (patch) | |
tree | f343e115adea0055f5a11dff27942ba973e2c2c3 /docs/configuration/cheatsheet.md | |
parent | cb91dab75f70ade96028c32e270a27352c41714e (diff) | |
download | pleroma-8757c5e35aea813f0ea82e2f9e8075282207d91c.tar.gz pleroma-8757c5e35aea813f0ea82e2f9e8075282207d91c.zip |
Logger.warn → Logger.warning
Note: Logger.warning got added in Elixir 1.11.0
Diffstat (limited to 'docs/configuration/cheatsheet.md')
-rw-r--r-- | docs/configuration/cheatsheet.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index bb6e5d279..9c5659988 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -853,7 +853,7 @@ config :logger, backends: [{ExSyslogger, :ex_syslogger}] config :logger, :ex_syslogger, - level: :warn + level: :warning ``` Another example, keeping console output and adding the pid to syslog output: @@ -862,7 +862,7 @@ config :logger, backends: [:console, {ExSyslogger, :ex_syslogger}] config :logger, :ex_syslogger, - level: :warn, + level: :warning, option: [:pid, :ndelay] ``` |