Browse Source
logging: self.print_error should not print without -v flag
3.2.x
SomberNight
7 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/util.py
|
|
@ -171,7 +171,7 @@ class PrintError(object): |
|
|
|
|
|
|
|
def print_error(self, *msg): |
|
|
|
if self.verbosity_filter in verbosity or verbosity == '*': |
|
|
|
print_stderr("[%s]" % self.diagnostic_name(), *msg) |
|
|
|
print_error("[%s]" % self.diagnostic_name(), *msg) |
|
|
|
|
|
|
|
def print_stderr(self, *msg): |
|
|
|
print_stderr("[%s]" % self.diagnostic_name(), *msg) |
|
|
|