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