Change extractor log level from warn to info 11/49011/1 2.0.0-ONAP beijing 2.0.0-ONAP v1.2.3
authorJim Hahn <jrh3@att.com>
Thu, 24 May 2018 19:05:44 +0000 (15:05 -0400)
committerJim Hahn <jrh3@att.com>
Thu, 24 May 2018 19:05:44 +0000 (15:05 -0400)
Change-Id: I26ae7c0c83b5e3c6b128af262bd334b09696590d
Issue-ID: POLICY-870
Signed-off-by: Jim Hahn <jrh3@att.com>
feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/extractor/ClassExtractors.java

index ccca77b..782511f 100644 (file)
@@ -255,7 +255,7 @@ public class ClassExtractors {
 
         @Override
         public Object extract(Object object) {
-            logger.warn("cannot extract {} from {}", type, object.getClass());
+            logger.info("cannot extract {} from {}", type, object.getClass());
             return null;
         }
     }