Skip to content

Commit

Permalink
Changed the default logging to INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek Singh committed Feb 3, 2020
1 parent 57cdd5d commit 36a9854
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sqlite_rx/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


PARENT_DIR = os.path.dirname(__file__)
logging.config.dictConfig(get_default_logger_settings(level="DEBUG"))
logging.config.dictConfig(get_default_logger_settings(level="INFO"))

LOG = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion sqlite_rx/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


PARENT_DIR = os.path.dirname(__file__)
logging.config.dictConfig(get_default_logger_settings(level="DEBUG"))
logging.config.dictConfig(get_default_logger_settings(level="INFO"))

LOG = logging.getLogger(__name__)

Expand Down

0 comments on commit 36a9854

Please sign in to comment.