Reduce severity

This commit is contained in:
George Kalampokis 2021-06-25 19:29:51 +03:00
parent d1df83f689
commit 03b7699973
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ public class DataManagementPlanManager {
items = apiContext.getOperationsContext().getDatabaseRepository().getDmpDao().asQueryable().where((builder, root) -> root.get("id").in(finalDmps.stream().map(Dmp::getId).collect(Collectors.toList()))); items = apiContext.getOperationsContext().getDatabaseRepository().getDmpDao().asQueryable().where((builder, root) -> root.get("id").in(finalDmps.stream().map(Dmp::getId).collect(Collectors.toList())));
} }
} catch (Exception ex) { } catch (Exception ex) {
logger.error(ex.getMessage(), ex); logger.warn(ex.getMessage(), ex);
items = null; items = null;
} }
} }