chiark / gitweb /
libudev: default log_priority to INFO
authorTom Gundersen <teg@jklm.no>
Wed, 30 Oct 2013 14:09:01 +0000 (15:09 +0100)
committerTom Gundersen <teg@jklm.no>
Wed, 30 Oct 2013 14:36:04 +0000 (15:36 +0100)
This brings it in sync with the default config file.

src/libudev/libudev.c

index 208039a1b2e679971bcd004554bb0cc9ead3c420..bc73a5a08c42a1ce3747ea0251c746f0542927c3 100644 (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");