You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2021/08/09 10:53:23 UTC

[brooklyn-server] branch master updated: trace test messages for bundle uninstallation

This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git


The following commit(s) were added to refs/heads/master by this push:
     new 38e01f6  trace test messages for bundle uninstallation
38e01f6 is described below

commit 38e01f6b53b09071e7cfe91150f4fda96351f185
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Mon Aug 9 11:53:11 2021 +0100

    trace test messages for bundle uninstallation
---
 core/src/main/java/org/apache/brooklyn/core/mgmt/ha/OsgiManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/brooklyn/core/mgmt/ha/OsgiManager.java b/core/src/main/java/org/apache/brooklyn/core/mgmt/ha/OsgiManager.java
index 835ae44..79b8174 100644
--- a/core/src/main/java/org/apache/brooklyn/core/mgmt/ha/OsgiManager.java
+++ b/core/src/main/java/org/apache/brooklyn/core/mgmt/ha/OsgiManager.java
@@ -288,7 +288,7 @@ public class OsgiManager {
             for (Bundle b: framework.getBundleContext().getBundles()) {
                 if (!bundlesAtStartup.contains(b)) {
                     try {
-                        log.info("Uninstalling "+b+" from OSGi container in "+framework.getBundleContext().getProperty(Constants.FRAMEWORK_STORAGE));
+                        log.trace("Uninstalling "+b+" from OSGi container in "+framework.getBundleContext().getProperty(Constants.FRAMEWORK_STORAGE));
                         b.uninstall();
                     } catch (BundleException e) {
                         Exceptions.propagateIfFatal(e);