diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-24 00:22:37 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-24 00:22:37 +0200 |
commit | 858a9b0a99db40ef22676808c0e19e024467f90c (patch) | |
tree | 5d80e5422dfb2cf210fca00ff87aac0a44e11011 /cgroup.c | |
parent | b05a4429e0d7bc67a892e51df9ef8f752d76eadd (diff) |
cgroup: mention signal name when killing cgroups
Diffstat (limited to 'cgroup.c')
-rw-r--r-- | cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -183,7 +183,7 @@ int cgroup_bonding_kill(CGroupBonding *b, int sig) { if (!(s = set_new(trivial_hash_func, trivial_compare_func))) return -ENOMEM; - log_debug("Killing processes from process group %s:%s", b->controller, b->path); + log_debug("Killing processes from process group %s:%s with %s", b->controller, b->path, strsignal(sig)); do { void *iterator; |