Skip to content

Commit

Permalink
pass conf to get_loggly_handler
Browse files Browse the repository at this point in the history
  • Loading branch information
akinwale committed Feb 25, 2020
1 parent 4714059 commit bc03f5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/python/lbrynetservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def configure_logging(conf):
logging.getLogger('lbry').setLevel(logging.DEBUG if lbrynet_android_utils.isDebug() else logging.INFO)
logging.getLogger('torba').setLevel(logging.INFO)

loggly_handler = get_loggly_handler()
loggly_handler = get_loggly_handler(conf)
loggly_handler.setLevel(logging.ERROR)
logging.getLogger('lbry').addHandler(loggly_handler)

Expand Down

0 comments on commit bc03f5a

Please sign in to comment.