udev: downgrade "has devpath" and "filled with db file" messages

Udev debug messages have to be significantly overhauled... For now
just downgrade those two. They are responsible for approximately 25%
of debug output during boot and are rather useless.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2015-03-14 22:22:49 -04:00
parent d2a623823f
commit cdd45c1ffb

View File

@@ -642,7 +642,7 @@ int udev_device_read_db(struct udev_device *udev_device)
}
fclose(f);
log_debug("device %p filled with db file data", udev_device);
log_trace("device %p filled with db file data", udev_device);
return 0;
}
@@ -804,7 +804,7 @@ _public_ struct udev_device *udev_device_new_from_syspath(struct udev *udev, con
return NULL;
udev_device_set_syspath(udev_device, path);
log_debug("device %p has devpath '%s'", udev_device, udev_device_get_devpath(udev_device));
log_trace("device %p has devpath '%s'", udev_device, udev_device_get_devpath(udev_device));
return udev_device;
}