Fix logging issues in qosservice 68/69268/3
authorTom Pantelis <tompantelis@gmail.com>
Thu, 8 Mar 2018 14:03:48 +0000 (09:03 -0500)
committerStephen Kitt <skitt@redhat.com>
Thu, 8 Mar 2018 15:20:35 +0000 (15:20 +0000)
Change-Id: Ifbd19817d7bcff940d521f74d8014f3129b9f1bf
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
qosservice/impl/src/main/java/org/opendaylight/netvirt/qosservice/QosNeutronUtils.java

index 1273ebeca599899ea00347e11c8c0e640b950ef0..93d56f9c4a6119a50f7bc7185ccb750b75521630 100644 (file)
@@ -479,7 +479,7 @@ public class QosNeutronUtils {
                         .child(TerminationPoint.class, new TerminationPointKey(tp.getKey())), tpBuilder.build());
             }
         } catch (Exception e) {
-            LOG.error("Failure while setting BwLimitRule{} to port{} exception {}", bwLimit, port, e);
+            LOG.error("Failure while setting BwLimitRule {} to port {}", bwLimit, port, e);
         }
 
     }
@@ -566,7 +566,7 @@ public class QosNeutronUtils {
                 LOG.error("Could not retrieve DPN Id for interface {}", ifName);
             }
         } catch (NullPointerException | InterruptedException | ExecutionException e) {
-            LOG.error("Exception when getting dpn for interface {} exception {}", ifName,  e);
+            LOG.error("Exception when getting dpn for interface {}", ifName,  e);
         }
         return nodeId;
     }