removed the log info

This commit is contained in:
Raf Ponsaerts
2023-02-14 11:22:13 +01:00
parent c2845e95aa
commit a8a886b242

View File

@@ -812,7 +812,6 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
Iterator<RequestItem> requestItems = requestItemService.findByItem(context, item);
while (requestItems.hasNext()) {
RequestItem requestItem = requestItems.next();
log.info("Remove Request Item: " + requestItem.getID());
requestItemService.delete(context, requestItem);
}
}