Skip to content

Commit

Permalink
fix: default LOGLEVEL DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinmarnold committed Aug 24, 2021
1 parent 15dd69d commit 66f06e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatewayconfig/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import os

LOGLEVEL = os.environ.get("LOGLEVEL", "INFO")
LOGLEVEL = os.environ.get("LOGLEVEL", "DEBUG")
# create logger
logger = logging.getLogger('gatewayconfig')
logger.setLevel(LOGLEVEL)
Expand Down

0 comments on commit 66f06e7

Please sign in to comment.