diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-07-17 13:24:37 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2009-07-17 13:26:46 +0200 |
commit | 820fc48f249012c673eb38f63dd8b5ee039627d0 (patch) | |
tree | df616a5c70021173949d0606133c113ded9cdf20 /libudev/libudev-util-private.c | |
parent | 9528405c4ac1defb8dc48f2095d971c978de5bb1 (diff) |
udevd: add timestamp to --debug output
Diffstat (limited to 'libudev/libudev-util-private.c')
-rw-r--r-- | libudev/libudev-util-private.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libudev/libudev-util-private.c b/libudev/libudev-util-private.c index 5f5f4c1d89..f7daa9460b 100644 --- a/libudev/libudev-util-private.c +++ b/libudev/libudev-util-private.c @@ -249,6 +249,8 @@ int util_run_program(struct udev *udev, const char *command, char **envp, int i; int err = 0; + info(udev, "'%s' started\n", command); + /* build argv from command */ util_strscpy(arg, sizeof(arg), command); i = 0; @@ -273,7 +275,6 @@ int util_run_program(struct udev *udev, const char *command, char **envp, argv[0] = arg; argv[1] = NULL; } - info(udev, "'%s'\n", command); /* prepare pipes from child to parent */ if (result != NULL || udev_get_log_priority(udev) >= LOG_INFO) { |