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 <[email protected]>
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);