diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-03-16T09·52+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-03-16T09·52+0100 |
commit | 0ec7f47b00659cf043eb7fbe72385a08f7e9f8e2 (patch) | |
tree | 820dd15bf3c739616b177e7d8279997622e74822 /src/libutil | |
parent | 43f158bb0885c2eb9180ef7ab24034b1b9353e8b (diff) |
Remove "killing process <pid>" messages
They convey no useful information.
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/util.cc | 5 | ||||
-rw-r--r-- | src/libutil/util.hh | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index d2d32782d027..99a91c8cc64a 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -678,12 +678,11 @@ Pid::operator pid_t() } -int Pid::kill(bool quiet) +int Pid::kill() { assert(pid != -1); - if (!quiet) - printError(format("killing process %1%") % pid); + debug(format("killing process %1%") % pid); /* Send the requested signal to the child. If it has its own process group, send the signal to every process in the child diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 4e3a011b349c..f94c0ff1c5ee 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -203,7 +203,7 @@ public: ~Pid(); void operator =(pid_t pid); operator pid_t(); - int kill(bool quiet = false); + int kill(); int wait(); void setSeparatePG(bool separatePG); |