Skip to content
Snippets Groups Projects
Commit 71f0f2c4 authored by Kanzhe Jiang's avatar Kanzhe Jiang
Browse files

lower log level to info

parent 06600b40
No related branches found
No related tags found
No related merge requests found
......@@ -274,8 +274,8 @@ public class FlowReconcileManager
// Get the maximum number of flows that can be reconciled.
int reconcileCapacity = getCurrentCapacity();
if (logger.isInfoEnabled()) {
logger.info("Reconcile capacity {} flows", reconcileCapacity);
if (logger.isTraceEnabled()) {
logger.trace("Reconcile capacity {} flows", reconcileCapacity);
}
while (!flowQueue.isEmpty() && reconcileCapacity > 0) {
OFMatchReconcile ofmRc = flowQueue.poll();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment