Skip to content
Open
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 @@ -89,7 +89,9 @@ private static Provider createProvider() {
return Conscrypt.newProvider();
} catch (SecurityException | LinkageError t) {
LOG.log(
Level.WARNING, "Conscrypt native libraries not available. Falling back to JDK TLS.", t);
Level.FINE,
"Conscrypt native library unavailable. Falling back to default JDK TLS.",
t);
return null;
}
}
Expand Down Expand Up @@ -124,7 +126,7 @@ public static NetHttpTransport.Builder configureConscryptSecurityProvider(
// intercepts runtime socket configuration errors (e.g. unsupported groups or
// closed socket) without swallowing JVM errors like OutOfMemoryError.
LOG.log(
Level.WARNING,
Level.FINE,
"Failed to set PQC named groups on Conscrypt socket. Falling back to Conscrypt"
+ " default TLS groups.",
e);
Expand Down
Loading