diff --git a/tests/topotests/all_protocol_startup/test_all_protocol_startup.py b/tests/topotests/all_protocol_startup/test_all_protocol_startup.py index 551cecf00bd9..043e051c130e 100644 --- a/tests/topotests/all_protocol_startup/test_all_protocol_startup.py +++ b/tests/topotests/all_protocol_startup/test_all_protocol_startup.py @@ -20,6 +20,7 @@ import pytest import glob from time import sleep +from lib.topolog import logger pytestmark = [ pytest.mark.babeld, @@ -1800,6 +1801,11 @@ def _test_interface_description(): "r1 failed `show interface description vrf all` test\n{}\n".format(diff) ) + logger.info("Expected") + logger.info(expected) + logger.info("Actual") + logger.info(output) + logger.info("FINI") return diff test_func = functools.partial(_test_interface_description)