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 8e4d2e7 NO-JIRA Removing System.err. debug
8e4d2e7 is described below
commit 8e4d2e756db6cf94738b50215e5d1b969f93fdba
Author: Clebert Suconic <[email protected]>
AuthorDate: Sat May 2 16:38:42 2020 -0400
NO-JIRA Removing System.err. debug
---
.../org/apache/activemq/artemis/uri/ConnectionFactoryURITest.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/artemis-jms-client/src/test/java/org/apache/activemq/artemis/uri/ConnectionFactoryURITest.java
b/artemis-jms-client/src/test/java/org/apache/activemq/artemis/uri/ConnectionFactoryURITest.java
index e23971a..1cfccbd 100644
---
a/artemis-jms-client/src/test/java/org/apache/activemq/artemis/uri/ConnectionFactoryURITest.java
+++
b/artemis-jms-client/src/test/java/org/apache/activemq/artemis/uri/ConnectionFactoryURITest.java
@@ -50,11 +50,14 @@ import
org.apache.activemq.artemis.jms.client.ActiveMQXAQueueConnectionFactory;
import org.apache.activemq.artemis.jms.client.ActiveMQXATopicConnectionFactory;
import org.apache.activemq.artemis.utils.RandomUtil;
import org.apache.commons.beanutils.BeanUtilsBean;
+import org.jboss.logging.Logger;
import org.junit.Assert;
import org.junit.Test;
public class ConnectionFactoryURITest {
+ private static final Logger log =
Logger.getLogger(ConnectionFactoryURITest.class);
+
ConnectionFactoryParser parser = new ConnectionFactoryParser();
private static final String[] V6IPs = {"fe80::baf6:b1ff:fe12:daf7%eth0",
"2620:db8:1:2::1%em1"};
@@ -420,7 +423,7 @@ public class ConnectionFactoryURITest {
if (ignoreList.contains(descriptor.getName())) {
continue;
}
- System.err.println("name::" + descriptor.getName());
+ log.info("name::" + descriptor.getName());
if (descriptor.getWriteMethod() != null && descriptor.getReadMethod()
!= null) {
if (descriptor.getPropertyType() == String.class) {
String value = RandomUtil.randomString();