Adds some logging to investigate failing builds.

fix-message-formatting
Damian Minkov 11 years ago
parent ce9568da97
commit 482e0131b2

@ -93,18 +93,18 @@ public void testContactListRetrieving()
= (MockContactGroup)
MclSlickFixture.mockPresOpSet.getServerStoredContactListRoot();
logger.debug("============== Predefined contact List ==============");
logger.info("============== Predefined contact List ==============");
logger.debug("rootGroup="+expectedRoot.getGroupName()
logger.info("rootGroup="+expectedRoot.getGroupName()
+" rootGroup.childContacts="+expectedRoot.countContacts()
+ "rootGroup.childGroups="+expectedRoot.countSubgroups()
+ " Printing rootGroupContents=\n"+expectedRoot.toString());
MetaContactGroup actualRoot = fixture.metaClService.getRoot();
logger.debug("================ Meta Contact List =================");
logger.info("================ Meta Contact List =================");
logger.debug("rootGroup="+actualRoot.getGroupName()
logger.info("rootGroup="+actualRoot.getGroupName()
+" rootGroup.childContacts="+actualRoot.countChildContacts()
+ " rootGroup.childGroups="+actualRoot.countSubgroups()
+ " Printing rootGroupContents=\n"+actualRoot.toString());

Loading…
Cancel
Save