Skip to content

Commit 9006136

Browse files
committed
More debugging
1 parent ae20898 commit 9006136

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/ironic-understack/ironic_understack/port_bios_name_hook.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ def __call__(self, task, inventory, plugin_data):
2929
for baremetal_port in ironic_ports_for_node(task.context, task.node.id):
3030
mac = baremetal_port.address.upper()
3131
name = interface_names.get(mac)
32-
LOG.info("Port %(mac)s bios_name=%(name)s", {"mac": mac, "name": name})
32+
LOG.debug("Port %(mac)s bios_name=%(name)s", {"mac": mac, "name": name})
3333
if name:
3434
baremetal_port.extra["bios_name"] = name
3535
else:
3636
baremetal_port.extra.pop("bios_name", None)
3737
baremetal_port.save()
38+
LOG.debug("Port updated to %s", baremetal_port)

0 commit comments

Comments
 (0)