summaryrefslogtreecommitdiff
path: root/kazoo/testing/harness.py
diff options
context:
space:
mode:
Diffstat (limited to 'kazoo/testing/harness.py')
-rw-r--r--kazoo/testing/harness.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/kazoo/testing/harness.py b/kazoo/testing/harness.py
index 880b1d9..d92a3fc 100644
--- a/kazoo/testing/harness.py
+++ b/kazoo/testing/harness.py
@@ -167,6 +167,9 @@ class KazooTestHarness(unittest.TestCase):
def cluster(self):
return get_global_cluster()
+ def log(self, level, msg, *args, **kwargs):
+ log.log(level, msg, *args, **kwargs)
+
@property
def servers(self):
return ",".join([s.address for s in self.cluster])