Skip to content

Commit e5fb633

Browse files
committed
Improve diagnostic log messages
1 parent f9cfd21 commit e5fb633

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/ironic-understack/ironic_understack/update_baremetal_port.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ def __call__(self, task, inventory, plugin_data):
8282

8383
def _set_local_link_connection(port: Any, node_uuid: str, local_link_connection: dict):
8484
try:
85-
LOG.debug("Updating port %s for node %s", port.address, node_uuid)
85+
LOG.debug("Updating port %s for node %s local_link_connection %s",
86+
port.id, node_uuid, local_link_connection)
8687
port.local_link_connection = local_link_connection
8788
port.save()
8889
except exception.IronicException as e:

0 commit comments

Comments
 (0)