Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public static void finer(String msg, Object... params) {
}

public static void finest(String msg, Object... params) {
SSLLogger.log(Level.ALL, msg, params);
SSLLogger.log(Level.TRACE, msg, params);
}

private static void log(Level level, String msg, Object... params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* @test
* @bug 8350582
* @bug 8350582 8340312
* @library /test/lib /javax/net/ssl/templates
* @summary Correct the parsing of the ssl value in javax.net.debug
* @run junit DebugPropertyValuesTest
Expand Down Expand Up @@ -80,6 +80,8 @@ public class DebugPropertyValuesTest extends SSLSocketTemplate {
debugMessages.put("java.security.debug",
List.of("properties\\[.*\\|main\\|.*" + DATE_REGEX + ".*\\]:",
"certpath\\[.*\\|main\\|.*" + DATE_REGEX + ".*\\]:"));
// "ALL" shouldn't be seen as a valid Level
debugMessages.put("javax.net.debug.logger.ALL", List.of("ALL:"));
debugMessages.put("javax.net.debug.logger",
List.of("FINE: adding as trusted certificates",
"FINE: WRITE: TLSv1.3 application_data"));
Expand Down