From: kay.sievers@vrfy.org Date: Thu, 11 Nov 2004 03:05:20 +0000 (-0800) Subject: [PATCH] reduce syslog noise of udevsend if multiple instances try to start udevd X-Git-Tag: 043~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=c072fd0112b3cb93dd65537f59db74692f69664c;ds=sidebyside [PATCH] reduce syslog noise of udevsend if multiple instances try to start udevd --- diff --git a/udevsend.c b/udevsend.c index b564d6453..c0c72b9c1 100644 --- a/udevsend.c +++ b/udevsend.c @@ -190,13 +190,13 @@ int main(int argc, char* argv[]) } if (!started_daemon) { - info("starting udevd daemon"); + dbg("try to start udevd daemon"); retval = start_daemon(); if (retval) { info("error starting daemon"); goto fallback; } - dbg("daemon started"); + info("udevd daemon started"); started_daemon = 1; } else { dbg("retry to connect %d", SEND_WAIT_MAX_SECONDS * SEND_WAIT_LOOP_PER_SECOND - loop);