summaryrefslogtreecommitdiff
path: root/python/qpid/brokertest.py
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2010-08-03 18:52:26 +0000
committerAlan Conway <aconway@apache.org>2010-08-03 18:52:26 +0000
commita6bf87f9361b450b7502002652ad14d3a07654ba (patch)
treed98f830aec75d9d0de4641ae94ec9ea7cb52fbc6 /python/qpid/brokertest.py
parent9e7d3b38762eeb806941ae3fe0e8bdc70561fbe3 (diff)
downloadqpid-python-a6bf87f9361b450b7502002652ad14d3a07654ba.tar.gz
Remove prefix in broker logs for brokertest.py.
Prefix is redundant and makes it more difficult to compare logs with diff. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@982003 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/brokertest.py')
-rw-r--r--python/qpid/brokertest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/brokertest.py b/python/qpid/brokertest.py
index 1fc16162ba..a241c8b528 100644
--- a/python/qpid/brokertest.py
+++ b/python/qpid/brokertest.py
@@ -286,7 +286,7 @@ class Broker(Popen):
self.name = "broker%d" % Broker._broker_count
Broker._broker_count += 1
self.find_log()
- cmd += ["--log-to-file", self.log, "--log-prefix", self.name]
+ cmd += ["--log-to-file", self.log]
cmd += ["--log-to-stderr=no"]
if log_level != None:
cmd += ["--log-enable=%s" % log_level]