forked from LBRYCommunity/lbry-sdk
set lbryum to log at warning level
lbryum is very chatty at the info level. As a rough estimate a bit over half of our logs in loggly are a result of lbrum. The better, long-term, solution would be to modify lbryum to move more logs to the debug level.
This commit is contained in:
parent
72078f4af3
commit
9ca80a7cf7
1 changed files with 1 additions and 0 deletions
|
@ -90,6 +90,7 @@ def disable_third_party_loggers():
|
|||
logging.getLogger('requests').setLevel(logging.WARNING)
|
||||
logging.getLogger('urllib3').setLevel(logging.WARNING)
|
||||
logging.getLogger('BitcoinRPC').setLevel(logging.INFO)
|
||||
logging.getLogger('lbryum').setLevel(logging.WARNING)
|
||||
|
||||
|
||||
@_log_decorator
|
||||
|
|
Loading…
Reference in a new issue