Merge pull request #934 from rootzoll/tui-extend-logging

Tui extend logging
This commit is contained in:
Christian Rotzoll
2019-12-25 21:59:57 +01:00
committed by GitHub
3 changed files with 9 additions and 2 deletions

View File

@@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.42.0] - 2019-12-25
### Added
- extend error logging
## [0.41.0] - 2019-11-15
### Added
- reduce default channel check interval to 40
@@ -24,7 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- almost all must-have features have been implemented
## [0.22.2] - 2019-10-27
### Added
- initial creation

View File

@@ -72,12 +72,15 @@ class AppWindow(QMainWindow):
# read config and info files
if not os.path.exists(lnd_cfg_abs_path):
log.error("file does not exist: {}".format(lnd_cfg_abs_path))
raise Exception("file does not exist: {}".format(lnd_cfg_abs_path))
if not os.path.exists(rb_cfg_abs_path):
log.error("file does not exist: {}".format(rb_cfg_abs_path))
raise Exception("file does not exist: {}".format(rb_cfg_abs_path))
if not os.path.exists(rb_info_abs_path):
log.error("file does not exist: {}".format(rb_info_abs_path))
raise Exception("file does not exist: {}".format(rb_info_abs_path))
self.lnd_cfg = LndConfig(lnd_cfg_abs_path)

View File

@@ -4,5 +4,5 @@
# 3) we can import it into your module module
"""
__version_info__ = ('0', '41', '0')
__version_info__ = ('0', '42', '0')
__version__ = '.'.join(__version_info__)