We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab6c51 commit ac8382fCopy full SHA for ac8382f
generic_config_updater/generic_updater.py
@@ -77,8 +77,10 @@ def apply(self, patch):
77
self.logger.log_notice(f" * {change}")
78
79
# Apply changes in order
80
- self.logger.log_notice("Applying changes in order.")
+ self.logger.log_notice(f"Applying {changes_len} change{'s' if changes_len != 1 else ''} " \
81
+ f"in order{':' if changes_len > 0 else '.'}")
82
for change in changes:
83
+ self.logger.log_notice(f" * {change}")
84
self.changeapplier.apply(change)
85
86
# Validate config updated successfully
0 commit comments