Skip to content
Snippets Groups Projects
Commit b55d26e7 authored by felmer's avatar felmer
Browse files

SSDM-5278: Show ids in the log of reindexed entities in order to improve ui-test

SVN: 38488
parent f20644e3
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ import org.hibernate.Session; ...@@ -25,6 +25,7 @@ import org.hibernate.Session;
import org.hibernate.SessionFactory; import org.hibernate.SessionFactory;
import org.springframework.orm.hibernate4.support.HibernateDaoSupport; import org.springframework.orm.hibernate4.support.HibernateDaoSupport;
import ch.systemsx.cisd.common.collection.CollectionUtils;
import ch.systemsx.cisd.common.collection.ExtendedLinkedBlockingQueue; import ch.systemsx.cisd.common.collection.ExtendedLinkedBlockingQueue;
import ch.systemsx.cisd.common.collection.IExtendedBlockingQueue; import ch.systemsx.cisd.common.collection.IExtendedBlockingQueue;
import ch.systemsx.cisd.common.io.PersistentExtendedBlockingQueueFactory; import ch.systemsx.cisd.common.io.PersistentExtendedBlockingQueueFactory;
...@@ -204,7 +205,8 @@ public final class FullTextIndexUpdater extends HibernateDaoSupport implements ...@@ -204,7 +205,8 @@ public final class FullTextIndexUpdater extends HibernateDaoSupport implements
{ {
operationLog.info(operation.getOperationKind() + " of " operationLog.info(operation.getOperationKind() + " of "
+ operation.getIds().size() + " " + operation.getClassName() + operation.getIds().size() + " " + operation.getClassName()
+ "s took " + stopWatch); + "s " + CollectionUtils.abbreviate(operation.getIds(), 20)
+ " took " + stopWatch);
} }
} }
updaterQueue.take(); updaterQueue.take();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment