Bump odlparent to 6.0.0
[openflowplugin.git] / applications / forwardingrules-manager / src / main / java / org / opendaylight / openflowplugin / applications / frm / impl / BundleGroupForwarder.java
index 12d68f6b3c39d7b405d1e7a683c04f61bb0dc7ac..1c32fa06621b6fa7c2721973dc3a5fcee0398d33 100644 (file)
@@ -155,14 +155,14 @@ public class BundleGroupForwarder implements BundleMessagesCommiter<Group> {
                 forwardingRulesManager.getDevicesGroupRegistry().storeGroup(nodeId, groupId);
                 LOG.debug("Group add with id {} finished without error for node {}", groupId, nodeId);
             } else {
-                LOG.debug("Group add with id {} failed for node {} with error {}", groupId, nodeId,
+                LOG.error("Group add with id {} failed for node {} with error: {}", groupId, nodeId,
                         result.getErrors().toString());
             }
         }
 
         @Override
         public void onFailure(Throwable throwable) {
-            LOG.error("Service call for adding group {} failed for node with error {}", groupId, nodeId, throwable);
+            LOG.error("Service call for adding group {} failed for node {} with error ", groupId, nodeId, throwable);
         }
     }
 
@@ -181,7 +181,7 @@ public class BundleGroupForwarder implements BundleMessagesCommiter<Group> {
                 forwardingRulesManager.getDevicesGroupRegistry().storeGroup(nodeId, groupId);
                 LOG.debug("Group update with id {} finished without error for node {}", groupId, nodeId);
             } else {
-                LOG.debug("Group update with id {} failed for node {} with error {}", groupId, nodeId,
+                LOG.error("Group update with id {} failed for node {} with error: {}", groupId, nodeId,
                         result.getErrors().toString());
             }
         }
@@ -207,14 +207,14 @@ public class BundleGroupForwarder implements BundleMessagesCommiter<Group> {
                 LOG.debug("Group remove with id {} finished without error for node {}", groupId, nodeId);
                 forwardingRulesManager.getDevicesGroupRegistry().removeGroup(nodeId, groupId);
             } else {
-                LOG.debug("Group remove with id {} failed for node {} with error {}", groupId, nodeId,
+                LOG.error("Group remove with id {} failed for node {} with error {}", groupId, nodeId,
                         result.getErrors().toString());
             }
         }
 
         @Override
         public void onFailure(Throwable throwable) {
-            LOG.error("Service call for removing group {} failed for node with error {}", groupId, nodeId, throwable);
+            LOG.error("Service call for removing group {} failed for node {} with error", groupId, nodeId, throwable);
         }
     }