This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new 3c5b95c NO-JIRA Simple Logging Change on Test
3c5b95c is described below
commit 3c5b95c47c464bab067192ae53fd559838611765
Author: Clebert Suconic <[email protected]>
AuthorDate: Tue Mar 16 11:59:00 2021 -0400
NO-JIRA Simple Logging Change on Test
---
.../tests/integration/journal/NIOJournalCompactTest.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/NIOJournalCompactTest.java
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/NIOJournalCompactTest.java
index 40879c7..dee22fb 100644
---
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/NIOJournalCompactTest.java
+++
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/NIOJournalCompactTest.java
@@ -844,7 +844,7 @@ public class NIOJournalCompactTest extends
JournalImplTestBase {
journal.testCompact();
journal.testCompact();
journal.testCompact();
- logger.info("going to commit");
+ logger.debug("going to commit");
commit(tx);
}
@@ -1737,14 +1737,14 @@ public class NIOJournalCompactTest extends
JournalImplTestBase {
survivingMsgs.add(message.getMessageID());
- logger.info("Going to store " + message);
+ logger.debug("Going to store " + message);
// This one will stay here forever
storage.storeMessage(message);
- logger.info("message storeed " + message);
+ logger.debug("message stored " + message);
- logger.info("Going to commit " + tx);
+ logger.debug("Going to commit " + tx);
storage.commit(tx);
- logger.info("Committed " + tx);
+ logger.debug("Committed " + tx);
ctx.executeOnCompletion(new IOCallback() {
@Override