Rollback - ADDED INFO logs for tempest issue DEBUG 45/56345/2
authorcgowdru <chetan.arakere@altencalsoftlabs.com>
Tue, 2 May 2017 05:29:26 +0000 (10:59 +0530)
committerSam Hague <shague@redhat.com>
Wed, 3 May 2017 00:55:11 +0000 (00:55 +0000)
Change-Id: Ic695dd7bd011313e3f615c1c2f70bd7b7d212771
Signed-off-by: cgowdru <chetan.arakere@altencalsoftlabs.com>
vpnservice/vpnmanager/vpnmanager-impl/src/main/java/org/opendaylight/netvirt/vpnmanager/ArpNotificationHandler.java
vpnservice/vpnmanager/vpnmanager-impl/src/main/java/org/opendaylight/netvirt/vpnmanager/arp/responder/ArpResponderUtil.java

index 517cd628224692f223493b7254b31ba4a517ea00..2309a533d4891700473e656bce93566c2d1d25e3 100644 (file)
@@ -87,13 +87,13 @@ public class ArpNotificationHandler implements OdlArputilListener {
         BigInteger metadata = notification.getMetadata();
         boolean isGarp = srcIP.equals(targetIP);
         if (!isGarp) {
-            LOG.info("ArpNotification Non-Gratuitous Request Received from "
+            LOG.trace("ArpNotification Non-Gratuitous Request Received from "
                       + "interface {} and IP {} having MAC {} target destination {}, ignoring..",
                     srcInterface, srcIP.getIpv4Address().getValue(),srcMac.getValue(),
                     targetIP.getIpv4Address().getValue());
             return;
         }
-        LOG.info("ArpNotification Gratuitous Request Received from "
+        LOG.trace("ArpNotification Gratuitous Request Received from "
                   + "interface {} and IP {} having MAC {} target destination {}, learning MAC",
                   srcInterface, srcIP.getIpv4Address().getValue(),srcMac.getValue(),
                   targetIP.getIpv4Address().getValue());
index 30556bf678f99bc7382996acde1485e4c3b2ffe8..155a704b8f90e76564cb92f7e8723a45cd6d14a7 100644 (file)
@@ -290,12 +290,10 @@ public class ArpResponderUtil {
             final String flowId, final String flowName,
             final int priority, final BigInteger cookie,
             List<MatchInfo> matches, List<Instruction> instructions) {
-        LOG.info("ARP: installFlow called for : {}" , flowName);
         final Flow flowEntity = MDSALUtil.buildFlowNew(
                 NwConstants.ARP_RESPONDER_TABLE, flowId, priority, flowName, 0,
                 0, cookie, matches, instructions);
         mdSalManager.addFlowToTx(dpnId, flowEntity, writeInvTxn);
-        LOG.info("ARP: Successfully installed flow for : {}" , flowName);
     }
 
     /**