Skip to content
Merged
Show file tree
Hide file tree
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 @@ -227,7 +227,7 @@ public void updateItemDatesMetadata(Context context, Item item) throws SQLExcept
itemService.getMetadata(item, "local", "approximateDate", "issued", Item.ANY, false);

if (CollectionUtils.isEmpty(approximatedDates) || StringUtils.isBlank(approximatedDates.get(0).getValue())) {
log.warn("Cannot update item dates metadata because the approximate date is empty.");
log.debug("Cannot update item dates metadata because the approximate date is empty.");
return;
}

Expand Down
4 changes: 2 additions & 2 deletions dspace-api/src/main/java/org/dspace/core/Context.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ protected void init() {
"Check previous entries in the dspace.log to find why the db failed to initialize.");
} else {
if (isTransactionAlive()) {
log.warn("Initializing a context while an active transaction exists. Context with hash: {}.",
getHash());
log.debug("Initializing a context while an active transaction exists. Context with hash: {}.",
getHash());
}
}
}
Expand Down
Loading