mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-13 21:13:19 +00:00
Remove noisy/duplicative debug logging about identifiers (clutters our test environment logs)
This commit is contained in:
@@ -95,20 +95,6 @@ public abstract class DSpaceObjectServiceImpl<T extends DSpaceObject> implements
|
||||
}
|
||||
}
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
StringBuilder dbgMsg = new StringBuilder();
|
||||
for (String id : identifiers) {
|
||||
if (dbgMsg.capacity() == 0) {
|
||||
dbgMsg.append("This DSO's Identifiers are: ");
|
||||
} else {
|
||||
dbgMsg.append(", ");
|
||||
}
|
||||
dbgMsg.append(id);
|
||||
}
|
||||
dbgMsg.append(".");
|
||||
log.debug(dbgMsg.toString());
|
||||
}
|
||||
|
||||
return identifiers;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user