We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc13adf commit 37c39b1Copy full SHA for 37c39b1
ironic_python_agent/hardware.py
@@ -204,7 +204,7 @@ def _get_component_devices(raid_device):
204
if md_uuid in line:
205
component_devices.append(bdev.name)
206
207
- LOG.info('Found component devices for %s:',
+ LOG.info('Found component devices for %s: %s',
208
raid_device, component_devices)
209
return component_devices
210
@@ -2079,7 +2079,7 @@ def _delete_config_pass(self, raid_devices):
2079
try:
2080
utils.execute('wipefs', '-af', holder_disk)
2081
except processutils.ProcessExecutionError as e:
2082
- LOG.warning('Failed to remove partitions on %s',
+ LOG.warning('Failed to remove partitions on %s: %s',
2083
holder_disk, e)
2084
2085
LOG.debug("Finished deleting Software RAID(s)")
0 commit comments