fix registerEndpoint in port delete for base Eps
[groupbasedpolicy.git] / neutron-mapper / src / main / java / org / opendaylight / groupbasedpolicy / neutron / mapper / EndpointRegistrator.java
index 0a95f3fc1aea7a9070d308a06bd41693279d212f..551a84357c4b93e3a74884a6fba1ca0684cd9e2f 100644 (file)
@@ -61,7 +61,7 @@ public class EndpointRegistrator {
         try {
             RpcResult<Void> rpcResult = baseEpService.registerEndpoint(regBaseEpInput).get();
             if (!rpcResult.isSuccessful()) {
-                LOG.warn("Illegal state - registerEndpoint was not successful. Input of RPC: {}", regBaseEpInput);
+                LOG.warn("Illegal state - register Base Endpoint was not successful. Input of RPC: {}", regBaseEpInput);
                 return false;
             }
             return true;
@@ -97,7 +97,7 @@ public class EndpointRegistrator {
         try {
             RpcResult<Void> rpcResult = epService.registerEndpoint(regEndpointInput).get();
             if (!rpcResult.isSuccessful()) {
-                LOG.warn("Illegal state - registerEndpoint was not successful. Input of RPC: {}", regEndpointInput);
+                LOG.warn("Illegal state - register Endpoint was not successful. Input of RPC: {}", regEndpointInput);
                 return false;
             }
             return true;