aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-03-08 23:35:21 +0100
committerHarald Musum <musum@yahooinc.com>2023-03-08 23:35:21 +0100
commit4633243e974a33dee0bb1d75b1bfdf506ec26b39 (patch)
treea6615a2c83cabc1b39b0af448c3fa57ecd98fe95 /container-core/src
parent3aedb80196984cfd8cf8c9c62c7fa004af517e0e (diff)
Log at lower level when installing bundles
Diffstat (limited to 'container-core/src')
-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,