Do not compile bundles without sources
authorMathieu Baudier <mbaudier@argeo.org>
Thu, 14 Sep 2023 04:49:31 +0000 (06:49 +0200)
committerMathieu Baudier <mbaudier@argeo.org>
Thu, 14 Sep 2023 04:49:31 +0000 (06:49 +0200)
src/org/argeo/build/Make.java

index af624060d66eb9d95d1f26cd518e44442584843d..ca5fc8e09e5434bef3db05857de9674a23287fae 100644 (file)
@@ -241,7 +241,7 @@ public class Make {
                        }
                        Path bundleSrc = bundlePath.resolve("src");
                        if (!Files.exists(bundleSrc)) {
-                               logger.log(TRACE, bundleSrc + " does not exist, skipping it, as this is not a Java bundle");
+                               logger.log(WARNING, bundleSrc + " does not exist, skipping it, as this is not a Java bundle");
                                continue bundles;
                        }
                        sb.append(bundleSrc);