fix(chalice): fixed wrong default logging level (#2589)

(cherry picked from commit 2ffec26d02)
This commit is contained in:
Kraiem Taha Yassine 2024-09-16 16:11:12 +02:00 committed by Taha Yassine Kraiem
parent 7f17b0f328
commit 5333862b94

View file

@ -5,7 +5,7 @@ from decouple import config
from . import smtp
logger = logging.getLogger(__name__)
logging.basicConfig(level=config("LOGLEVEL", default=logging.info))
logging.basicConfig(level=config("LOGLEVEL", default=logging.INFO))
if smtp.has_smtp():
logger.info("valid SMTP configuration found")