aboutsummaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
Diffstat (limited to 'container-core')
-rw-r--r--container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java b/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java
index a793b03b765..27fca37268e 100644
--- a/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java
+++ b/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java
@@ -97,7 +97,8 @@ public class ApplicationBundleLoader {
*/
private Set<Bundle> commitBundles() {
var bundlesToUninstall = new LinkedHashSet<>(obsoleteBundles.values());
- log.info("Bundles to be uninstalled from previous generation: " + bundlesToUninstall);
+ if (bundlesToUninstall.size() > 0)
+ log.info("Bundles to be uninstalled from previous generation: " + bundlesToUninstall);
bundlesFromNewGeneration = Map.of();
obsoleteBundles = Map.of();