Skip to content

Commit 20453a0

Browse files
committed
Set log level for test to warn
1 parent 0e5ae55 commit 20453a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/com/rabbitmq/client/test/ssl/HostnameVerification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public static void initCrypto() throws Exception {
8989
assertNotNull(p12Path);
9090
String p12Passwd = System.getProperty("test-client-cert.password");
9191
assertNotNull(p12Passwd);
92-
System.out.println(p12Passwd);
92+
9393
KeyStore ks = KeyStore.getInstance("PKCS12");
9494
char[] p12Password = p12Passwd.toCharArray();
9595
ks.load(new FileInputStream(p12Path), p12Password);

src/test/resources/logback-test.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</encoder>
66
</appender>
77

8-
<root level="info">
8+
<root level="warn">
99
<appender-ref ref="STDOUT" />
1010
</root>
1111
</configuration>

0 commit comments

Comments
 (0)