Skip to content

Commit

Permalink
Merge pull request #6 from arista-eosplus/log-pyavd-version
Browse files Browse the repository at this point in the history
Log pyavd version
  • Loading branch information
dlobato authored Mar 14, 2024
2 parents 8eac203 + 814d249 commit 1ddf9cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyavd_cli/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
from ansible.plugins.loader import init_plugin_loader # type: ignore
from ansible.template import Templar # type: ignore
from ansible.vars.manager import VariableManager # type: ignore
from pyavd import ( # type: ignore
from pyavd import __version__ as pyavd_version # type: ignore
from pyavd import (
get_avd_facts,
get_device_config,
get_device_structured_config,
Expand Down Expand Up @@ -200,6 +201,7 @@ def main():
fabric_group_name = args.fabric_group_name
limit = args.limit

logger.debug("pyavd version: %s", pyavd_version)
logger.debug("inventory_path: %s", inventory_path)
logger.debug("intended_configs_path: %s", intended_configs_path)
logger.debug("structured_configs_path: %s", structured_configs_path)
Expand Down

0 comments on commit 1ddf9cf

Please sign in to comment.