fix(chalice): fixed wrong default logging level (#2589)
This commit is contained in:
parent
b63962b51a
commit
2ffec26d02
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ from decouple import config
|
||||||
from . import smtp
|
from . import smtp
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
logging.basicConfig(level=config("LOGLEVEL", default=logging.info))
|
logging.basicConfig(level=config("LOGLEVEL", default=logging.INFO))
|
||||||
|
|
||||||
if smtp.has_smtp():
|
if smtp.has_smtp():
|
||||||
logger.info("valid SMTP configuration found")
|
logger.info("valid SMTP configuration found")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue