From c80a6025fd469bf237b26b71bc9a61187bddbb22 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Fri, 2 Apr 2010 22:57:52 +0000 Subject: [PATCH] INT-1062 --- .../integration/context/IntegrationObjectSupport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.springframework.integration/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java b/org.springframework.integration/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java index 541a0a52bc..e49ab53c02 100644 --- a/org.springframework.integration/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java +++ b/org.springframework.integration/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java @@ -129,8 +129,8 @@ public abstract class IntegrationObjectSupport implements ComponentMetadataProvi protected final ConversionService getConversionService() { if (this.conversionService == null && this.beanFactory != null) { this.conversionService = IntegrationContextUtils.getConversionService(this.beanFactory); - if (this.conversionService == null && logger.isWarnEnabled()) { - logger.warn("Unable to attempt conversion of Message payload types. Component '" + + if (this.conversionService == null && logger.isDebugEnabled()) { + logger.debug("Unable to attempt conversion of Message payload types. Component '" + this.getBeanName() + "' has no explicit ConversionService reference, " + "and there is no 'integrationConversionService' bean within the context."); }