Skip to content

Commit bf0c597

Browse files
committed
remove even more logspam
1 parent 89c8b91 commit bf0c597

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/com/falsepattern/lib/internal/impl/dependencies/DependencyLoaderImpl.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,8 @@ public static CompletableFuture<Void> loadLibrariesAsync(Library... libraries) {
236236

237237
private static boolean scanForDepSpecs(URL source, List<URL> output) {
238238
if (!source.getProtocol().equals("file")) {
239-
LOG.warn("Skipping non-file source: {}", source);
240239
return false;
241240
}
242-
LOG.debug("Scanning {} for dependencies", source);
243241
val fileName = source.getFile();
244242
boolean found = false;
245243
if (fileName.endsWith(".jar")) {
@@ -300,10 +298,8 @@ private static Stream<URL> grabSourceCandidatesFromFolder(File folder) {
300298
} else {
301299
return Arrays.stream(files).map(file -> {
302300
try {
303-
LOG.trace("Adding {} to dependency source list", file);
304301
return file.toURI().toURL();
305302
} catch (MalformedURLException e) {
306-
LOG.error("Failed to add mod file {} to dependency source list: {}", file.getName(), e);
307303
return null;
308304
}
309305
}).filter(Objects::nonNull);

0 commit comments

Comments
 (0)