From 9ce462721a02e38c15e4cdeff7dfc98eeb56224a Mon Sep 17 00:00:00 2001 From: Scott James Remnant Date: Mon, 23 Feb 2009 17:46:00 +0000 Subject: [PATCH] Put a log message in a more sensible place. --- udev/udev-watch.c | 1 + udev/udevd.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/udev/udev-watch.c b/udev/udev-watch.c index 2d672e211..8d6cef6ac 100644 --- a/udev/udev-watch.c +++ b/udev/udev-watch.c @@ -145,6 +145,7 @@ void udev_watch_begin(struct udev *udev, struct udev_device *dev) if (inotify_fd < 0 || major(udev_device_get_devnum(dev)) == 0) return; + info(udev, "adding watch on '%s'\n", udev_device_get_devnode(dev)); wd = inotify_add_watch(inotify_fd, udev_device_get_devnode(dev), IN_CLOSE_WRITE); if (wd < 0) { err(udev, "inotify_add_watch(%d, %s, %o) failed: %m\n", diff --git a/udev/udevd.c b/udev/udevd.c index 5fb6d5f73..c764b33b0 100644 --- a/udev/udevd.c +++ b/udev/udevd.c @@ -232,7 +232,6 @@ static void event_fork(struct udev_event *event) /* apply/restore inotify watch */ if (err == 0 && event->inotify_watch && strcmp(udev_device_get_action(event->dev), "remove") != 0) - info(event->udev, "device will be watched for changes\n"); udev_watch_begin(event->udev, event->dev); info(event->udev, "seq %llu exit with %i\n", udev_device_get_seqnum(event->dev), err); -- 2.30.2