From cc0c2870a18fb74a56410eca2d1870bddc945397 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Thu, 11 Apr 2019 08:36:06 +0000 Subject: Add output.xml with only INFO logging leve - Useful for post-processing. Change-Id: I6f71087f8c6f6d66fd86207d5df9abd10e94f855 Signed-off-by: Peter Mikus --- resources/libraries/python/VppCounters.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'resources/libraries/python/VppCounters.py') diff --git a/resources/libraries/python/VppCounters.py b/resources/libraries/python/VppCounters.py index ff4ce29b3f..b65b58c89b 100644 --- a/resources/libraries/python/VppCounters.py +++ b/resources/libraries/python/VppCounters.py @@ -75,6 +75,7 @@ class VppCounters(object): """ vat = VatExecutor() vat.execute_script("show_runtime.vat", node, json_out=False) + logger.info(vat.get_script_stdout()) vat.script_should_have_passed() @staticmethod @@ -97,6 +98,7 @@ class VppCounters(object): """ vat = VatExecutor() vat.execute_script("show_runtime_verbose.vat", node, json_out=False) + logger.info(vat.get_script_stdout()) vat.script_should_have_passed() @staticmethod -- cgit 1.2.3-korg