diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-14 20:14:39 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-14 23:03:21 -0400 |
commit | 7034e9db51d0b6f8e1dbbe9127393c6fbc06fe28 (patch) | |
tree | cb5a732ec181911be46e6bc81b619f42f731b5b5 | |
parent | d99ce93383028f08470b6d334bc1a31ca8d16b22 (diff) |
util: remove redundant debug message
mar 14 20:05:34 fedora22 systemd[4058]: /usr/lib/systemd/system-generators/kdump-dep-generator.sh will be executed.
mar 14 20:05:34 fedora22 systemd[4058]: Spawned /usr/lib/systemd/system-generators/kdump-dep-generator.sh as 4059.
The second line already says everything.
-rw-r--r-- | src/shared/util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 1994c7e05d..f1f7a5db66 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -4122,8 +4122,7 @@ static int do_execute(char **directories, usec_t timeout, char *argv[]) { if (null_or_empty_path(path)) { log_debug("%s is empty (a mask).", path); continue; - } else - log_debug("%s will be executed.", path); + } pid = fork(); if (pid < 0) { |