From 6cbdf3c6eb1e95fcbbe59e29c0f96d4589d56c95 Mon Sep 17 00:00:00 2001 From: Justin Pettit <47164813+jmpettit@users.noreply.github.com> Date: Sun, 24 Mar 2024 12:59:04 -0500 Subject: [PATCH] test --- nornir_nautobot/plugins/tasks/dispatcher/default.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nornir_nautobot/plugins/tasks/dispatcher/default.py b/nornir_nautobot/plugins/tasks/dispatcher/default.py index ba307e0..d157c71 100644 --- a/nornir_nautobot/plugins/tasks/dispatcher/default.py +++ b/nornir_nautobot/plugins/tasks/dispatcher/default.py @@ -165,6 +165,8 @@ def generate_config( Returns: Result: Nornir Result object. """ + logger.debug(f"Task vars: {vars(task)}") + logger.debug(f"Task dir: {dir(task)}") logger.debug(f"Task name: {task.name}") logger.debug(f"Task host: {task.host}") logger.debug(f"Task host data: {task.host.data}")