We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d75e9 commit 7889bd2Copy full SHA for 7889bd2
src/java.base/share/classes/sun/security/jca/ProvidersFilter.java
@@ -671,6 +671,12 @@ public String toString() {
671
static {
672
Filter tmpFilter = null;
673
String fStr = SecurityProperties.getOverridableProperty(FILTER_PROP);
674
+ if (debug != null) {
675
+ debug.println("Filter property value read at this point:");
676
+ for (StackTraceElement ste : new Exception().getStackTrace()) {
677
+ debug.println(" ".repeat(4) + ste);
678
+ }
679
680
if (fStr != null && !fStr.isEmpty()) {
681
tmpFilter = new Filter(fStr);
682
}
0 commit comments