Fix for bug #357- Set log levels on all log statements to appropriate level
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / SwitchFeaturesUtil.java
index a9d0cf3a66e05ca21dcd36860e8964ab85b1e209..1286252b6c57f81f986b50139b2bc6c4253f9a1a 100644 (file)
@@ -48,7 +48,7 @@ public class SwitchFeaturesUtil {
     public SwitchFeatures buildSwitchFeatures(GetFeaturesOutput features) {
 
         if(swFeaturesBuilders.containsKey(features.getVersion()) == true) {
-            LOG.info("map contains version {}", features.getVersion());
+            LOG.debug("map contains version {}", features.getVersion());
             try {
                 return swFeaturesBuilders.get(features.getVersion()).build(features);
             } catch (NullPointerException e) {