From 7ad16abcc3957b5be61b2d317648054ad22cdd71 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Wed, 8 Jan 2020 23:33:20 +0100 Subject: [PATCH] Moving log to error level --- conf/.env | 2 +- conf/prod.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/.env b/conf/.env index 592e830..3c79767 100644 --- a/conf/.env +++ b/conf/.env @@ -11,7 +11,7 @@ GRAPHQL_API_FULL_PATH="" # APP MIX_ENV=prod -MOBILIZON_LOGLEVEL="info" +MOBILIZON_LOGLEVEL="error" MOBILIZON_SECRET="__SECRET__" # Database diff --git a/conf/prod.exs b/conf/prod.exs index 59a2308..cdf0632 100644 --- a/conf/prod.exs +++ b/conf/prod.exs @@ -45,7 +45,7 @@ config :mobilizon, MobilizonWeb.Email.Mailer, no_mx_lookups: false # Do not print debug messages in production -#config :logger, level: System.get_env("MOBILIZON_LOGLEVEL") |> String.to_atom() || :info +config :logger, level: System.get_env("MOBILIZON_LOGLEVEL") |> String.to_atom() || :info config :mobilizon, Mobilizon.Service.Geospatial, service: Mobilizon.Service.Geospatial.Nominatim