mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user