tlogging: self.print_error should not print without -v flag - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 8e69174374aee87d73cd2f8005fbbe87c93eee9c DIR parent eaf72aa9515bb3c09f68a483645dbeb96932616f HTML Author: SomberNight <somber.night@protonmail.com> Date: Sun, 29 Jul 2018 04:29:19 +0200 logging: self.print_error should not print without -v flag Diffstat: M electrum/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/util.py b/electrum/util.py t@@ -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)