Make loglevel env an atom
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
c1222763f1
commit
f87b042c72
|
@ -41,7 +41,7 @@ config :mobilizon, Mobilizon.Mailer,
|
||||||
no_mx_lookups: false
|
no_mx_lookups: false
|
||||||
|
|
||||||
# Do not print debug messages in production
|
# Do not print debug messages in production
|
||||||
config :logger, level: System.get_env("MOBILIZON_LOGLEVEL") || :info
|
config :logger, level: System.get_env("MOBILIZON_LOGLEVEL") |> String.to_atom || :info
|
||||||
|
|
||||||
# ## SSL Support
|
# ## SSL Support
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue