aboutsummaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-03-09 10:01:24 +0100
committerGitHub <noreply@github.com>2023-03-09 10:01:24 +0100
commite18c46b449614f9d093387de54d9c077b3e9be4a (patch)
tree6bc3dd72267ae55c8b7e7eb272494a5e5cebf1ad /container-core
parent15645bbfa7411f5f7db4e43d87a395595de92835 (diff)
parent7fb43f5b5604962be6d9d8f2fc6f8109891660cd (diff)
Merge pull request #26368 from vespa-engine/hmusum/lower-log-level-6
Log at lower level when installing bundles
Diffstat (limited to 'container-core')
-rw-r--r--container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java4
1 files changed, 2 insertions, 2 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 d0054f703c5..66604966c8a 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
@@ -70,7 +70,7 @@ public class ApplicationBundleLoader {
bundlesFromNewGeneration = installBundles(newFileReferences);
BundleStarter.startBundles(activeBundles.values());
- log.info(installedBundlesMessage());
+ log.fine(installedBundlesMessage());
readyForNewBundles = false;
}
@@ -168,7 +168,7 @@ public class ApplicationBundleLoader {
for (FileReference reference : bundlesToInstall) {
try {
- log.info("Installing bundle with reference '" + reference.value() + "'");
+ log.fine("Installing bundle with reference '" + reference.value() + "'");
List<Bundle> bundles = bundleInstaller.installBundles(reference, osgi);
// If more than one bundle was installed, and the OSGi framework is the real Felix one,