Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ public CollectionRest addCollectionLogo(HttpServletRequest request) throws SQLEx
collectionService.addLogo(context, collection, newLogo);
collectionService.update(context, collection);
bitstreamService.update(context, newLogo);
log.error("Logo with id: + " + newLogo.getID() + " was successfully added to collection " +
"with id: " + collection.getID());
log.info("Logo with id: {} was successfully added to collection with id: {}",
newLogo.getID(), collection.getID());

CollectionRest collectionRest = converter.toRest(collection, utils.obtainProjection());
context.commit();
Expand Down