mirror of https://github.com/apache/kafka.git
removed stray println
This commit is contained in:
parent
b15b24f177
commit
e6a41f1c9a
|
@ -136,10 +136,7 @@ public class VerifiableProducer {
|
|||
try {
|
||||
Namespace res;
|
||||
res = parser.parseArgs(args);
|
||||
System.out.println(res);
|
||||
System.out.println(res.getString("brokerList"));
|
||||
|
||||
|
||||
|
||||
int maxMessages = res.getInt("maxMessages");
|
||||
String topic = res.getString("topic");
|
||||
int throughput = res.getInt("throughput");
|
||||
|
|
|
@ -38,7 +38,7 @@ class VerifiableProducer(BackgroundThreadService):
|
|||
|
||||
def _worker(self, idx, node):
|
||||
cmd = self.start_cmd
|
||||
self.logger.debug("Verbose producer %d command: %s" % (idx, cmd))
|
||||
self.logger.debug("VerifiableProducer %d command: %s" % (idx, cmd))
|
||||
|
||||
for line in node.account.ssh_capture(cmd):
|
||||
line = line.strip()
|
||||
|
|
Loading…
Reference in New Issue