FuncUtils.verify_tablestats: log table stats after processing all tables
diff --git a/tests/FuncUtils.py b/tests/FuncUtils.py
index 6ff2045..20f06f3 100644
--- a/tests/FuncUtils.py
+++ b/tests/FuncUtils.py
@@ -650,14 +650,13 @@
active = 0
for item in response.stats:
-
lookedup += item.lookup_count
matched += item.matched_count
active += item.active_count
- logging.info("Packets Looked up " + str(lookedup) + " packets")
- logging.info("Packets matched " + str(matched) + "packets")
- logging.info("Active flow entries" + str(active) + "flows")
+ logging.info("Packets Looked up: %d", lookedup)
+ logging.info("Packets matched: %d", matched)
+ logging.info("Active flow entries: %d", active)
if (expect_lookup == None or expect_lookup == lookedup) and \
(expect_match == None or expect_match == matched) and \