We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4f2212 commit adb4717Copy full SHA for adb4717
src/main/java/com/ibm/eventstreams/connect/mqsource/MQSourceTask.java
@@ -119,7 +119,7 @@ public List<SourceRecord> poll() throws InterruptedException {
119
120
try {
121
if (!stopNow.get()) {
122
- log.info("Polling for records");
+ log.debug("Polling for records");
123
SourceRecord src;
124
do {
125
// For the first message in the batch, wait a while if no message
@@ -130,7 +130,7 @@ public List<SourceRecord> poll() throws InterruptedException {
130
}
131
} while (src != null && messageCount < batchSize && !stopNow.get());
132
} else {
133
- log.info("Stopping polling for records");
+ log.debug("Stopping polling for records");
134
135
} finally {
136
0 commit comments