NETVIRT-1068: Upstreaming fixes 2
[netvirt.git] / fibmanager / impl / src / main / java / org / opendaylight / netvirt / fibmanager / BaseVrfEntryHandler.java
index cb5c3034ab59904fcaeb47df2700405462d7a141..938e0ededaa6e3837ebbe721eb4a1874ff5f1f86 100644 (file)
@@ -129,7 +129,8 @@ public class BaseVrfEntryHandler implements AutoCloseable {
 
     protected void deleteLocalAdjacency(final BigInteger dpId, final long vpnId, final String ipAddress,
                               final String ipPrefixAddress) {
-        LOG.trace("deleteLocalAdjacency called with dpid {}, vpnId{}, ipAddress {}", dpId, vpnId, ipAddress);
+        LOG.trace("deleteLocalAdjacency called with dpid {}, vpnId{}, primaryIpAddress {} currIpPrefix {}",
+                dpId, vpnId, ipAddress, ipPrefixAddress);
         try {
             nextHopManager.removeLocalNextHop(dpId, vpnId, ipAddress, ipPrefixAddress);
         } catch (NullPointerException e) {