Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)

69761: Merged V4.2-BUG-FIX (4.2.3) to HEAD-BUG-FIX (4.3/Cloud)
      69649: Merged DEV to V4.2-BUG-FIX
         69604: MNT-11378: Intermittent test failures: ProcessWorkflowApiTest and TaskWorkflowApiTest
          - Add logging to find out cause of failing on bamboo.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@70442 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2014-05-16 17:43:48 +00:00
parent 962295dc5a
commit c89bee1ff4
4 changed files with 17 additions and 8 deletions

View File

@@ -76,10 +76,15 @@ public abstract class AbstractTestApi
protected void log(String msg)
{
if(logger.isDebugEnabled())
{
logger.debug(msg);
}
log(msg, null);
}
protected void log(String msg, Throwable t)
{
if(logger.isDebugEnabled())
{
logger.debug(msg, t);
}
}
protected Paging getPaging(Integer skipCount, Integer maxItems)