1
0

android: enable full logging if DEBUG build

This commit is contained in:
SomberNight
2020-06-19 01:52:21 +02:00
parent fcbc1c9a45
commit 625f985f22
2 changed files with 9 additions and 4 deletions

View File

@@ -307,8 +307,10 @@ if __name__ == '__main__':
# config is an object passed to the various constructors (wallet, interface, gui)
if is_android:
from jnius import autoclass
build_config = autoclass("org.electrum.electrum.BuildConfig")
config_options = {
'verbosity': '',
'verbosity': '*' if build_config.DEBUG else '',
'cmd': 'gui',
'gui': 'kivy',
}