Skip to content

Commit

Permalink
⭐(bug) default logger level should be info
Browse files Browse the repository at this point in the history
fix #361
  • Loading branch information
shidenggui committed Jun 1, 2020
1 parent 8dcddcf commit 7833946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easytrader/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging

logger = logging.getLogger("easytrader")
logger.setLevel(logging.DEBUG)
logger.setLevel(logging.INFO)
logger.propagate = False

fmt = logging.Formatter(
Expand Down

0 comments on commit 7833946

Please sign in to comment.