forked from LBRYCommunity/lbry-sdk
5f49827bd2
-make is_lagging more meaningful - it is set to true after 90 seconds with no progress, this is to stop slow but steady catchups from triggering it -prevent situation where repeated shutdowns before wallet catchup results in never receiving first run credits -fix settings to write new defaults that aren’t already in the configuration file -report log of startup sequence if upload_log set to true -redirect /view?name=lbry to the main UI page. This is to make the ui accessible from a lbry:// link on linux
8 lines
151 B
Python
8 lines
151 B
Python
import logging
|
|
|
|
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
|
|
|
|
|
version = (0, 2, 2)
|
|
__version__ = ".".join([str(x) for x in version])
|