From: Colin Guthrie Date: Wed, 5 Nov 2014 15:29:41 +0000 (+0000) Subject: udev hwdb: Change error message regarding missing hwdb.bin back to debug. X-Git-Tag: v218~541 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=8232e39e7cf32071e11b3b04839e6c98fbc81d0f udev hwdb: Change error message regarding missing hwdb.bin back to debug. When used in an initramfs, it's expected that the hwdb.bin file is not present (it makes for a very large initramfs otherwise). While it's nice to tell the user about this, as it's not strictly speaking an error we really shouldn't be so forceful in our reporting. --- diff --git a/src/libudev/libudev-hwdb.c b/src/libudev/libudev-hwdb.c index a1cfc0bd5..0716072d9 100644 --- a/src/libudev/libudev-hwdb.c +++ b/src/libudev/libudev-hwdb.c @@ -296,7 +296,7 @@ _public_ struct udev_hwdb *udev_hwdb_new(struct udev *udev) { } if (!hwdb->f) { - udev_err(udev, "hwdb.bin does not exist, please run udevadm hwdb --update"); + udev_dbg(udev, "hwdb.bin does not exist, please run udevadm hwdb --update"); udev_hwdb_unref(hwdb); return NULL; }