From 5f23d5b149513d98bb90df8cb912b6f567bed89f Mon Sep 17 00:00:00 2001 From: Michal Schmidt Date: Mon, 14 May 2012 12:23:23 +0200 Subject: job: change red [ABORT] status to yellow [DEPEND] The red "[ABORT]" for a dependency failure is too scary. It suggests a crash. And it suggests a problem with the unit itself. Change it to a yellow "[DEPEND]" message. The color communicates the level of seriousness better. --- src/core/job.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/job.c') diff --git a/src/core/job.c b/src/core/job.c index 90091c298f..202eed198e 100644 --- a/src/core/job.c +++ b/src/core/job.c @@ -567,7 +567,7 @@ static void job_print_status_message(Unit *u, JobType t, JobResult result) { break; case JOB_DEPENDENCY: - unit_status_printf(u, ANSI_HIGHLIGHT_RED_ON " ABORT" ANSI_HIGHLIGHT_OFF, "Dependency failed. Aborted start of %s.", unit_description(u)); + unit_status_printf(u, ANSI_HIGHLIGHT_YELLOW_ON "DEPEND" ANSI_HIGHLIGHT_OFF, "Dependency failed. Aborted start of %s.", unit_description(u)); break; case JOB_TIMEOUT: -- cgit v1.2.3-54-g00ecf