]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: downgrade warning about duplicate device names
authorLennart Poettering <lennart@poettering.net>
Thu, 23 Apr 2015 11:50:01 +0000 (13:50 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 23 Apr 2015 11:50:01 +0000 (13:50 +0200)
http://lists.freedesktop.org/archives/systemd-devel/2015-April/031094.html

src/core/device.c

index dca2a82256a5c7da18b31ab6339b011453dcf996..43c4c671dd008605e6475820b7d532043f2516f6 100644 (file)
@@ -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;
         }