Fix typos in log message 72/74372/1
authorSridhar Gaddam <sgaddam@redhat.com>
Tue, 24 Jul 2018 07:13:34 +0000 (12:43 +0530)
committerSridhar Gaddam <sgaddam@redhat.com>
Tue, 24 Jul 2018 08:12:18 +0000 (08:12 +0000)
Change-Id: Id0c49a11e3ebee3fd2f857bf2ddaa78fe4fd9566
Signed-off-by: Sridhar Gaddam <sgaddam@redhat.com>
natservice/impl/src/main/java/org/opendaylight/netvirt/natservice/internal/NatUtil.java

index 996c87ad1f587900891893c07dcd62214cc2c81e..7690c0c7aed7fdd2aa26437f038435e4eefa0809 100644 (file)
@@ -1334,10 +1334,10 @@ public final class NatUtil {
             if (dpIdResult.isSuccessful()) {
                 nodeId = dpIdResult.getResult().getDpid();
             } else {
-                LOG.debug("removeFromDpnRoutersMap : Could not retrieve DPN Id for interface {}", ifName);
+                LOG.debug("getDpnForInterface : Could not retrieve DPN Id for interface {}", ifName);
             }
         } catch (NullPointerException | InterruptedException | ExecutionException e) {
-            LOG.error("removeFromDpnRoutersMap : Exception when getting dpn for interface {}", ifName, e);
+            LOG.error("getDpnForInterface : Exception when getting dpn for interface {}", ifName, e);
         }
         return nodeId;
     }