Added a log for debugging

This commit is contained in:
Francesco Mangiacrapa 2022-07-28 10:50:39 +02:00
parent 730ababb45
commit 4db3124f5a
1 changed files with 9 additions and 0 deletions

View File

@ -199,6 +199,15 @@ public class ContentModeratorPaginatedView {
*/
private void setNewPageResult(SearchedData result) {
GWT.log("setNewPageResult: " + result);
if(!GWT.isProdMode()) {
if(result.getData()!=null) {
for (CatalogueDataset dataset : result.getData()) {
GWT.log("dataset: " + dataset.getStatus());
}
}
}
serverStartIndex = result.getServerEndIndex();
SelectionModel<? super CatalogueDataset> sm = getCellTable().getSelectionModel();