chiark / gitweb /
manager: downgrade a few log msgs regarding conflicting but fixable jobs
authorLennart Poettering <lennart@poettering.net>
Fri, 6 Aug 2010 00:58:46 +0000 (02:58 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 6 Aug 2010 00:58:46 +0000 (02:58 +0200)
fixme
src/manager.c

diff --git a/fixme b/fixme
index f459f82996c59a6ef4afcb158539613b5c30ff92..4601c7202f85fb07c6c371f3c438713176294352 100644 (file)
--- a/fixme
+++ b/fixme
 
 * if a service fails too often, make the service enter maintainence mode, and the socket, too.
 
-* keine meldung by wants vs. conflicts
-
 * send cgroup msg directly
 
-* fix graphical vs getty@tty1 output
+* don't show file not found msgs for irrelevant units
 
 External:
 
index cc12d6bf220ea7ca408c21ba002519f037723a75..9b6cbc94e062087be122b8866e2454fb8b6dd2aa 100644 (file)
@@ -746,7 +746,7 @@ static int delete_one_unmergeable_job(Manager *m, Job *j) {
                                 return -ENOEXEC;
 
                         /* Ok, we can drop one, so let's do so. */
-                        log_notice("Trying to fix job merging by deleting job %s/%s", d->unit->meta.id, job_type_to_string(d->type));
+                        log_debug("Fixing conflicting jobs by deleting job %s/%s", d->unit->meta.id, job_type_to_string(d->type));
                         transaction_delete_job(m, d, true);
                         return 0;
                 }
@@ -1309,7 +1309,7 @@ void manager_transaction_unlink_job(Manager *m, Job *j, bool delete_dependencies
                 job_dependency_free(j->object_list);
 
                 if (other && delete_dependencies) {
-                        log_info("Deleting job %s/%s as dependency of job %s/%s",
+                        log_debug("Deleting job %s/%s as dependency of job %s/%s",
                                   other->unit->meta.id, job_type_to_string(other->type),
                                   j->unit->meta.id, job_type_to_string(j->type));
                         transaction_delete_job(m, other, delete_dependencies);