re-activate FindBugs
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / sal / SalMeterServiceImpl.java
index 6c7cd2aae1315ed4ebabc727298b723242613d37..2ba1d62f03c1c64b02723af8e36263ef17d3cad8 100755 (executable)
@@ -89,7 +89,7 @@ public class SalMeterServiceImpl implements SalMeterService {
 
             @Override
             public void onFailure(Throwable throwable) {
-                LOG.warn("Service call for adding meter={} failed, reason: {}", input.getMeterId(), throwable);
+                LOG.warn("Service call for adding meter={} failed", input.getMeterId(), throwable);
             }
         }, MoreExecutors.directExecutor());
         return resultFuture;
@@ -120,7 +120,7 @@ public class SalMeterServiceImpl implements SalMeterService {
 
             @Override
             public void onFailure(Throwable throwable) {
-                LOG.warn("Service call for updating meter={} failed, reason: {}",
+                LOG.warn("Service call for updating meter={} failed",
                         input.getOriginalMeter().getMeterId(), throwable);
             }
         }, MoreExecutors.directExecutor());
@@ -150,7 +150,7 @@ public class SalMeterServiceImpl implements SalMeterService {
 
             @Override
             public void onFailure(Throwable throwable) {
-                LOG.warn("Service call for removing meter={} failed, reason: {}", input.getMeterId(), throwable);
+                LOG.warn("Service call for removing meter={} failed", input.getMeterId(), throwable);
             }
         }, MoreExecutors.directExecutor());
         return resultFuture;