Skip to content

Commit dca5440

Browse files
committed
Removing excessive logging from LiveTakeOverTest as it was causing builds to fail.
Signed-off-by: James Sutton <james.sutton@uk.ibm.com>
1 parent 039a3d2 commit dca5440

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • org.eclipse.paho.client.mqttv3.test/src/test/java/org/eclipse/paho/client/mqttv3/test

org.eclipse.paho.client.mqttv3.test/src/test/java/org/eclipse/paho/client/mqttv3/test/LiveTakeOverTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ void repeatedlyPub() {
257257
}
258258
byte[] payload = ("Message payload " + getClass().getName() + ".publish" + (i++)).getBytes();
259259
MqttTopic mqttTopic = mqttClient.getTopic(FirstSubTopicString);
260-
log.info("Publishing to..." + FirstSubTopicString);
260+
log.fine("Publishing to..." + FirstSubTopicString);
261261
mqttTopic.publish(payload, 1, false);
262262

263263
}
@@ -267,6 +267,7 @@ void repeatedlyPub() {
267267
// Its likely the publish rate is too high i.e. inflight window is full
268268
}
269269
}
270+
log.info("Sent at least " + i + " messages.");
270271
}
271272

272273
public void run() {

0 commit comments

Comments
 (0)