downgrade a few log msgs

This commit is contained in:
Lennart Poettering 2010-05-14 02:50:32 +02:00
parent 4697132b91
commit 30de7d8520
2 changed files with 7 additions and 7 deletions

View file

@ -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;
}

2
unit.c
View file

@ -713,7 +713,7 @@ fail:
u->meta.load_state = UNIT_FAILED;
unit_add_to_dbus_queue(u);
log_error("Failed to load configuration for %s: %s", u->meta.id, strerror(-r));
log_debug("Failed to load configuration for %s: %s", u->meta.id, strerror(-r));
return r;
}