diff options
author | Damian Minkov <damencho@jitsi.org> | 2014-07-03 09:55:06 +0300 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2014-07-03 09:55:06 +0300 |
commit | 482e0131b217f337cf2b0ed73d193dc998c612b3 (patch) | |
tree | 38fd3cf588338821dc6873aa73f27528d79ea14d /test | |
parent | ce9568da977497a8cbcfb46d138a50aff8817f4c (diff) | |
download | jitsi-482e0131b217f337cf2b0ed73d193dc998c612b3.zip jitsi-482e0131b217f337cf2b0ed73d193dc998c612b3.tar.gz jitsi-482e0131b217f337cf2b0ed73d193dc998c612b3.tar.bz2 |
Adds some logging to investigate failing builds.
Diffstat (limited to 'test')
-rw-r--r-- | test/net/java/sip/communicator/slick/contactlist/TestMetaContactList.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/net/java/sip/communicator/slick/contactlist/TestMetaContactList.java b/test/net/java/sip/communicator/slick/contactlist/TestMetaContactList.java index 3c0d568..1a1d27e 100644 --- a/test/net/java/sip/communicator/slick/contactlist/TestMetaContactList.java +++ b/test/net/java/sip/communicator/slick/contactlist/TestMetaContactList.java @@ -93,18 +93,18 @@ public class TestMetaContactList = (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()); |