diff --git a/nornir_nautobot/plugins/tasks/dispatcher/default.py b/nornir_nautobot/plugins/tasks/dispatcher/default.py index e6b32d3..c99c26d 100644 --- a/nornir_nautobot/plugins/tasks/dispatcher/default.py +++ b/nornir_nautobot/plugins/tasks/dispatcher/default.py @@ -415,6 +415,10 @@ def merge_config( f"result: {push_result[0].result}, changed: {push_result.changed}", extra={"object": obj}, ) + + if push_result.diff: + logger.info(f"```\nDiff: {push_result.diff}\n```", extra={"object": obj}) + logger.info("Config merge ended", extra={"object": obj}) return Result( host=task.host,