removed stray println

This commit is contained in:
Geoff Anderson 2015-06-15 18:51:58 -07:00
parent b15b24f177
commit e6a41f1c9a
2 changed files with 2 additions and 5 deletions

View File

@ -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");

View File

@ -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()