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 2022/08/21 17:23:37 UTC

[brooklyn-server] 01/07: misc better logging

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

commit 607ea5404e823e0f380cf2bbd82489130f0c9e59
Author: Alex Heneveld <al...@cloudsoft.io>
AuthorDate: Fri Aug 19 12:20:39 2022 +0100

    misc better logging
---
 .../main/java/org/apache/brooklyn/entity/group/GroupsChangePolicy.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/brooklyn/entity/group/GroupsChangePolicy.java b/core/src/main/java/org/apache/brooklyn/entity/group/GroupsChangePolicy.java
index 10412f08d8..d35f44911d 100644
--- a/core/src/main/java/org/apache/brooklyn/entity/group/GroupsChangePolicy.java
+++ b/core/src/main/java/org/apache/brooklyn/entity/group/GroupsChangePolicy.java
@@ -188,7 +188,7 @@ public class GroupsChangePolicy extends AbstractMembershipTrackingPolicy {
                             EntityInitializer initializer = entityInitializerMaybe.get();
                             initializer.apply((EntityInternal) member);
                         } else {
-                            LOG.debug("Unable to initialize {} due to {}", type, Maybe.getException(entityInitializerMaybe));
+                            LOG.debug("Unable to initialize {} due to {}", type, Maybe.getException(entityInitializerMaybe), Maybe.getException(entityInitializerMaybe));
                         }
                     } catch (Throwable e) {
                         throw Exceptions.propagate(e);