summaryrefslogtreecommitdiff
path: root/cgroup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-05-14 02:50:32 +0200
committerLennart Poettering <lennart@poettering.net>2010-05-14 02:50:32 +0200
commit30de7d8520d1dfaa8c46098f972f57961fc91923 (patch)
tree52d694a48d3f80a76725b290397cfc1ef2faafee /cgroup.c
parent4697132b91989da27b11af179c430305bb9db9ac (diff)
downgrade a few log msgs
Diffstat (limited to 'cgroup.c')
-rw-r--r--cgroup.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cgroup.c b/cgroup.c
index 70b56a3aad..301fc949da 100644
--- a/cgroup.c
+++ b/cgroup.c
@@ -456,22 +456,22 @@ int manager_setup_cgroup(Manager *m) {
}
}
- log_info("Using cgroup controller <%s>, hierarchy mounted at <%s>, using root group <%s>.",
- m->cgroup_controller,
- mp,
- m->cgroup_hierarchy);
+ log_debug("Using cgroup controller <%s>, hierarchy mounted at <%s>, using root group <%s>.",
+ m->cgroup_controller,
+ mp,
+ m->cgroup_hierarchy);
if ((r = install_release_agent(m, mp)) < 0)
log_warning("Failed to install release agent, ignoring: %s", strerror(-r));
else
- log_info("Installed release agent, or already installed.");
+ log_debug("Installed release agent, or already installed.");
free(mp);
if ((r = create_hierarchy_cgroup(m)) < 0)
log_error("Failed to create root cgroup hierarchy: %s", strerror(-r));
else
- log_info("Created root group.");
+ log_debug("Created root group.");
return r;
}