Browse Source
run_electrum: (android) restore behaviour of only logging in DEBUG builds
patch-4
SomberNight
3 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
run_electrum
|
|
@ -327,7 +327,7 @@ def main(): |
|
|
|
from jnius import autoclass |
|
|
|
build_config = autoclass("org.electrum.electrum.BuildConfig") |
|
|
|
config_options = { |
|
|
|
'verbosity': '*', #if build_config.DEBUG else '', |
|
|
|
'verbosity': '*' if build_config.DEBUG else '', |
|
|
|
'cmd': 'gui', |
|
|
|
'gui': android_gui, |
|
|
|
'single_password':True, |
|
|
|