SEARCH-2409 Add debug logs in Tracker state creation (#928)

This commit is contained in:
Alex Mukha
2020-09-08 09:30:11 +01:00
committed by Alex Mukha
parent e99337e198
commit 7d34b99aea
@@ -1435,6 +1435,8 @@ public class SolrInformationServer implements InformationServer
long timeBeforeWhichThereCanBeNoChangeSetHolesInIndex = state.getLastIndexedChangeSetCommitTime() - holeRetention;
state.setLastGoodChangeSetCommitTimeInIndex(timeBeforeWhichThereCanBeNoChangeSetHolesInIndex > 0 ? timeBeforeWhichThereCanBeNoChangeSetHolesInIndex : 0);
LOGGER.debug("The tracker initial state was created: " + state);
return state;
}
}