From: Jamo Luhrsen Date: Wed, 9 Nov 2016 18:55:13 +0000 (-0800) Subject: lower log level when stats come before flow is written to deviceflowregistry X-Git-Tag: release/boron-sr2~5 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F83%2F48183%2F1;p=openflowplugin.git lower log level when stats come before flow is written to deviceflowregistry Change-Id: Ib24b9e97c86b2d1a24610204b61fcf9237871f0e Signed-off-by: Jamo Luhrsen --- diff --git a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/StatisticsGatheringUtils.java b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/StatisticsGatheringUtils.java index 0a2e522cec..06d496161c 100644 --- a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/StatisticsGatheringUtils.java +++ b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/StatisticsGatheringUtils.java @@ -295,7 +295,7 @@ public final class StatisticsGatheringUtils { final InstanceIdentifier flowIdent = fNodeIdent.child(Table.class, tableKey).child(Flow.class, flowKey); txFacade.writeToTransaction(LogicalDatastoreType.OPERATIONAL, flowIdent, flowBuilder.build()); } else { - LOG.warn("Skip write statistics. Flow hash: {} not present in DeviceFlowRegistry", flowRegistryKey.hashCode()); + LOG.debug("Skip write statistics. Flow hash: {} not present in DeviceFlowRegistry", flowRegistryKey.hashCode()); } } }