libudev: default log_priority to INFO

This brings it in sync with the default config file.
This commit is contained in:
Tom Gundersen
2013-10-30 15:09:01 +01:00
parent f61942250a
commit 2004d23a0f

View File

@@ -125,7 +125,7 @@ _public_ struct udev *udev_new(void)
return NULL;
udev->refcount = 1;
udev->log_fn = log_stderr;
udev->log_priority = LOG_ERR;
udev->log_priority = LOG_INFO;
udev_list_init(udev, &udev->properties_list, true);
f = fopen("/etc/udev/udev.conf", "re");