Merge pull request #127 from lbryio/disable-more-noisy-loggers

reduce logging to sub fire hazard levels
This commit is contained in:
Jack Robison 2016-08-21 00:07:19 -04:00 committed by GitHub
commit 02142e352b

View file

@ -77,6 +77,9 @@ def disable_third_party_loggers():
def disable_noisy_loggers():
logging.getLogger('lbrynet.dht').setLevel(logging.INFO)
logging.getLogger('lbrynet.core.client.ConnectionManager').setLevel(logging.INFO)
logging.getLogger('lbrynet.core.client.BlobRequester').setLevel(logging.INFO)
logging.getLogger('lbrynet.core.client.ClientProtocol').setLevel(logging.INFO)
@_log_decorator