Skip to content

Commit 91aec73

Browse files
committed
fix(netapp_configure_net): logging for SVM
1 parent 498f1f1 commit 91aec73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/understack-workflows/understack_workflows/main/netapp_configure_net.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,9 @@ def format_and_display_output(
410410
# Log detailed interface information at debug level
411411
for i, vm in enumerate(structured_data):
412412
logger.debug(
413-
"SVM/Virtual machine %d has {len(vm.interfaces)} interface(s):",
413+
"SVM/Virtual machine %d has %d interface(s):",
414414
i + 1,
415+
len(vm.interfaces),
415416
)
416417
for interface in vm.interfaces:
417418
logger.debug(

0 commit comments

Comments
 (0)