summaryrefslogtreecommitdiff
path: root/cgroup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-24 00:22:37 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-24 00:22:37 +0200
commit858a9b0a99db40ef22676808c0e19e024467f90c (patch)
tree5d80e5422dfb2cf210fca00ff87aac0a44e11011 /cgroup.c
parentb05a4429e0d7bc67a892e51df9ef8f752d76eadd (diff)
cgroup: mention signal name when killing cgroups
Diffstat (limited to 'cgroup.c')
-rw-r--r--cgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgroup.c b/cgroup.c
index 83c5d4028d..410eaf7e80 100644
--- a/cgroup.c
+++ b/cgroup.c
@@ -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;