summaryrefslogtreecommitdiff
path: root/src/core/job.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-08-24 22:43:33 +0200
committerLennart Poettering <lennart@poettering.net>2012-09-03 18:59:04 -0700
commit81270860a5b8c6794f0c7bac8becfdd0c41a9385 (patch)
tree33d6c9acf4c6b1f6881c777309f02aec7ea33625 /src/core/job.c
parent877d54e9b09e093c2102f519a84e2a52637ae035 (diff)
journal: suppress structured messages if they'd go to the console
Diffstat (limited to 'src/core/job.c')
-rw-r--r--src/core/job.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/job.c b/src/core/job.c
index 9614642f5..706910b69 100644
--- a/src/core/job.c
+++ b/src/core/job.c
@@ -687,6 +687,12 @@ static void job_log_status_message(Unit *u, JobType t, JobResult result) {
assert(t >= 0);
assert(t < _JOB_TYPE_MAX);
+ /* Skip this if it goes to the console. since we already print
+ * to the console anyway... */
+
+ if (log_on_console())
+ return;
+
format = job_get_status_message_format_try_harder(u, t, result);
if (!format)
return;