From: Lennart Poettering Date: Thu, 23 Apr 2015 11:50:01 +0000 (+0200) Subject: core: downgrade warning about duplicate device names X-Git-Tag: v220~327 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5259bcf6a638d8d489db1ddefd55327aa15f3e51;p=thirdparty%2Fsystemd.git core: downgrade warning about duplicate device names http://lists.freedesktop.org/archives/systemd-devel/2015-April/031094.html --- diff --git a/src/core/device.c b/src/core/device.c index dca2a82256a..43c4c671dd0 100644 --- a/src/core/device.c +++ b/src/core/device.c @@ -282,7 +282,7 @@ static int device_setup_unit(Manager *m, struct udev_device *dev, const char *pa if (u && DEVICE(u)->sysfs && !path_equal(DEVICE(u)->sysfs, sysfs)) { - log_unit_error(u->id, "Device %s appeared twice with different sysfs paths %s and %s", e, DEVICE(u)->sysfs, sysfs); + log_unit_debug(u->id, "Device %s appeared twice with different sysfs paths %s and %s", e, DEVICE(u)->sysfs, sysfs); return -EEXIST; }