[systemd-commits] src/udev
Tom Gundersen
tomegun at kemper.freedesktop.org
Thu Aug 8 16:40:28 PDT 2013
src/udev/udevd.c | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 689a97f52383110bf0da049e8f6294993f4020dd
Author: Tom Gundersen <teg at jklm.no>
Date: Thu Aug 8 21:44:02 2013 +0200
udevd: respect the log-level set in /etc/udev/udev.conf
A regression introduced when we moved to systemd's logging is that the only
way to adjust the log-level of the udev daemon is via the env var, kernel
commandline or the commandline.
This reintroduces support for specifying this in the configuration file.
diff --git a/src/udev/udevd.c b/src/udev/udevd.c
index 45ec3d6..7c6c5d6 100644
--- a/src/udev/udevd.c
+++ b/src/udev/udevd.c
@@ -923,7 +923,10 @@ int main(int argc, char *argv[])
log_set_target(LOG_TARGET_AUTO);
log_parse_environment();
log_open();
+
udev_set_log_fn(udev, udev_main_log);
+ log_set_max_level(udev_get_log_priority(udev));
+
log_debug("version %s\n", VERSION);
label_init("/dev");
More information about the systemd-commits
mailing list