diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-01-21 16:43:22 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-01-21 15:44:55 +0000 |
commit | 5085be3c18a5ee96f10ed14f7b48eb9a958b65dc (patch) | |
tree | 2576d740d6df94a2da682ab0abd653a291e117dc | |
parent | 1d3fee4e257e1fcca0a2df81fb044e02d7a401d0 (diff) |
Report: Compare NICs tables
- Change logging level from warning to debug.
Change-Id: I644bdf3a5d13a45a7835c8181ca95d63ff762233
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit 4c2c9a6d24ee27fc27427ba3b3c8f1c320c91cca)
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 41dfb9429d..e8f1c2e817 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -486,8 +486,8 @@ def table_nics_comparison(table, input_data): elif table["compare"]["nic"] in tst_data["tags"]: tbl_dict[tst_name_mod]["cmp-data"].append(result) except (TypeError, KeyError) as err: - logging.warning("No data for {0}".format(tst_name)) - logging.warning(repr(err)) + logging.debug("No data for {0}".format(tst_name)) + logging.debug(repr(err)) # No data in output.xml for this test tbl_lst = list() |