Skip to content
Snippets Groups Projects
Commit e8bdb39d authored by tpylak's avatar tpylak
Browse files

SE-142 YeastX: fix debug message

SVN: 12699
parent 610b8441
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ public class EventDAO extends AbstractGenericEntityDAO<EventPE> implements IEven ...@@ -92,7 +92,7 @@ public class EventDAO extends AbstractGenericEntityDAO<EventPE> implements IEven
lastSeenDeletionEventIdOrNull == null ? "all" : "id > " lastSeenDeletionEventIdOrNull == null ? "all" : "id > "
+ lastSeenDeletionEventIdOrNull; + lastSeenDeletionEventIdOrNull;
operationLog.debug(String.format( operationLog.debug(String.format(
"%s(%d): data set deletion events(s) have been found.", MethodUtils "%s(%s): %d data set deletion events(s) have been found.", MethodUtils
.getCurrentMethod().getName(), lastDesc, list.size())); .getCurrentMethod().getName(), lastDesc, list.size()));
} }
ArrayList<DeletedDataSet> result = new ArrayList<DeletedDataSet>(); ArrayList<DeletedDataSet> result = new ArrayList<DeletedDataSet>();
......
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