diff --git a/ironic_python_agent/extensions/image.py b/ironic_python_agent/extensions/image.py index 76f9d931f..67497170f 100644 --- a/ironic_python_agent/extensions/image.py +++ b/ironic_python_agent/extensions/image.py @@ -175,7 +175,7 @@ def _is_bootloader_loaded(dev): LOG.debug('Skipping boot sector check as the system is in UEFI ' 'boot mode.') return False - + LOG.debug('Starting check for pre-intalled BIOS boot-loader.') try: # Looking for things marked "bootable" in the partition table stdout, stderr = utils.execute('parted', dev, '-s', '-m', diff --git a/ironic_python_agent/hardware.py b/ironic_python_agent/hardware.py index 48104f389..04570c599 100644 --- a/ironic_python_agent/hardware.py +++ b/ironic_python_agent/hardware.py @@ -212,6 +212,7 @@ def md_restart(raid_device): :raises: CommandExecutionError in case the restart fails. """ try: + LOG.debug('Restarting software RAID device %s', raid_device) component_devices = _get_component_devices(raid_device) utils.execute('mdadm', '--stop', raid_device) utils.execute('mdadm', '--assemble', raid_device,