diff options
author | Mark Felder <feld@feld.me> | 2023-11-28 19:10:28 +0000 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2023-12-20 16:23:57 -0500 |
commit | cd3abe0b4c4cc02b69713f1882c58e82b1631710 (patch) | |
tree | 08e76eeb805a7359881fc1700751411b516b2f39 /config/description.exs | |
parent | cbdd134174d0e7a769245af9d3dbf3a2779f8da6 (diff) | |
download | pleroma-cd3abe0b4c4cc02b69713f1882c58e82b1631710.tar.gz pleroma-cd3abe0b4c4cc02b69713f1882c58e82b1631710.zip |
Fix more Logger warn -> warning
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 27e7f7e9b..626d826f4 100644 --- a/config/description.exs +++ b/config/description.exs @@ -1202,7 +1202,7 @@ config :pleroma, :config_description, [ key: :level, type: {:dropdown, :atom}, description: "Log level", - suggestions: [:debug, :info, :warn, :error] + suggestions: [:debug, :info, :warning, :error] }, %{ key: :ident, @@ -1235,7 +1235,7 @@ config :pleroma, :config_description, [ key: :level, type: {:dropdown, :atom}, description: "Log level", - suggestions: [:debug, :info, :warn, :error] + suggestions: [:debug, :info, :warning, :error] }, %{ key: :format, @@ -1937,7 +1937,7 @@ config :pleroma, :config_description, [ key: :log, type: {:dropdown, :atom}, description: "Logs verbose mode", - suggestions: [false, :error, :warn, :info, :debug] + suggestions: [false, :error, :warning, :info, :debug] }, %{ key: :queues, |