Skip to content
Merged
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 @@ -24,6 +24,7 @@
*/
package com.oracle.svm.configure.trace;

import java.util.Set;
import java.util.regex.Pattern;

import com.oracle.svm.configure.filters.ConfigurationFilter;
Expand Down Expand Up @@ -266,7 +267,7 @@ public boolean shouldIgnoreJniLookup(LazyValue<String> queriedClass, LazyValue<S
}

public static boolean shouldIgnoreResourceLookup(LazyValue<String> resource) {
return resource.get().equals("META-INF/services/jdk.vm.ci.services.JVMCIServiceLocator");
return Set.of("META-INF/services/jdk.vm.ci.services.JVMCIServiceLocator", "META-INF/services/java.lang.System$LoggerFinder").contains(resource.get());
}

public boolean shouldIgnoreLoadClass(LazyValue<String> queriedClass, LazyValue<String> callerClass) {
Expand Down