From: Kay Sievers Date: Mon, 21 May 2007 05:02:04 +0000 (+0200) Subject: udevtest: print message before log output X-Git-Tag: 174~1938 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=86fd6b4f61cefe402d81d61db7d8cb1f79d5ba71;hp=9e23328e5357589f7a2edfff933513aa72df112e udevtest: print message before log output --- diff --git a/udevtest.c b/udevtest.c index 9868c9bcd..91749a4ee 100644 --- a/udevtest.c +++ b/udevtest.c @@ -149,6 +149,11 @@ int main(int argc, char *argv[], char *envp[]) goto exit; } + printf("This program is for debugging only, it does not run any program,\n" + "specified by a RUN key. It may show incorrect results, because\n" + "some values may be different, or not available at a simulation run.\n" + "\n"); + sysfs_init(); udev_rules_init(&rules, 0); @@ -184,11 +189,6 @@ int main(int argc, char *argv[], char *envp[]) setenv("ACTION", udev->action, 1); import_uevent_var(udev->dev->devpath); - printf("This program is for debugging only, it does not run any program,\n" - "specified by a RUN key. It may show incorrect results, because\n" - "some values may be different, or not available at a simulation run.\n" - "\n"); - info("looking at device '%s' from subsystem '%s'", udev->dev->devpath, udev->dev->subsystem); retval = udev_device_event(&rules, udev); if (retval == 0 && !udev->ignore_device && udev_run) {