util: add print_msg() method to DaemonThread

it is used by at synchornizer.py, line 173
This commit is contained in:
Roman Zeyde 2015-06-13 16:57:32 +03:00
parent c324d21107
commit 90076b0b79
1 changed files with 4 additions and 1 deletions

View File

@ -47,6 +47,9 @@ class DaemonThread(threading.Thread):
def print_error(self, *msg): def print_error(self, *msg):
print_error("[%s]" % self.__class__.__name__, *msg) print_error("[%s]" % self.__class__.__name__, *msg)
def print_msg(self, *msg):
print_msg("[%s]" % self.__class__.__name__, *msg)
is_verbose = False is_verbose = False