Signed-off-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> --- src/node_device/node_device_udev.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/node_device/node_device_udev.c b/src/node_device/node_device_udev.c index 65f312d8f4..b1b1886c54 100644 --- a/src/node_device/node_device_udev.c +++ b/src/node_device/node_device_udev.c @@ -141,8 +141,9 @@ udevGetDeviceProperty(struct udev_device *udev_device, ret = udev_device_get_property_value(udev_device, property_key); - VIR_DEBUG("Found property key '%s' value '%s' for device with sysname '%s'", - property_key, NULLSTR(ret), udev_device_get_sysname(udev_device)); + VIR_DEBUG("Found property key '%s' value '%s' for device with sysname '%s' errno='%s'", + property_key, NULLSTR(ret), udev_device_get_sysname(udev_device), + ret ? "" : g_strerror(errno)); return ret; } @@ -1609,7 +1610,7 @@ udevHandleOneDevice(struct udev_device *device) { const char *action = udev_device_get_action(device); - VIR_DEBUG("udev action: '%s'", action); + VIR_DEBUG("udev action: '%s': %s", action, udev_device_get_syspath(device)); if (STREQ(action, "add") || STREQ(action, "change")) return udevAddOneDevice(device); -- 2.28.0