From 9806000cc325565c29217b35ee0b5ea037da5cd2 Mon Sep 17 00:00:00 2001 From: Aron Roberts Date: Fri, 14 Feb 2014 11:59:48 -0800 Subject: [PATCH] CSPACE-6262: Reduced a routinely-encountered log message from WARN to TRACE level. --- .../listener/AbstractUpdateObjectLocationValues.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/3rdparty/nuxeo/nuxeo-platform-listener/updateobjectlocationonmove/src/main/java/org/collectionspace/services/listener/AbstractUpdateObjectLocationValues.java b/3rdparty/nuxeo/nuxeo-platform-listener/updateobjectlocationonmove/src/main/java/org/collectionspace/services/listener/AbstractUpdateObjectLocationValues.java index f1a8e776d..859722621 100644 --- a/3rdparty/nuxeo/nuxeo-platform-listener/updateobjectlocationonmove/src/main/java/org/collectionspace/services/listener/AbstractUpdateObjectLocationValues.java +++ b/3rdparty/nuxeo/nuxeo-platform-listener/updateobjectlocationonmove/src/main/java/org/collectionspace/services/listener/AbstractUpdateObjectLocationValues.java @@ -152,8 +152,10 @@ public abstract class AbstractUpdateObjectLocationValues implements EventListene } if (collectionObjectCsids.isEmpty()) { - logger.warn("Could not obtain any CSIDs of related CollectionObject records."); - logger.warn(NO_FURTHER_PROCESSING_MESSAGE); + if (logger.isTraceEnabled()) { + logger.trace("Could not obtain any CSIDs of related CollectionObject records."); + logger.trace(NO_FURTHER_PROCESSING_MESSAGE); + } return; } else { if (logger.isTraceEnabled()) { -- 2.47.3