From a03c59ab4e58e6ef341c3da7bec403caf99fe9f7 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Mon, 24 Jul 2017 13:03:42 -0400 Subject: [PATCH] Log an extra blank line to get space after each skip To improve readability of logging. Change-Id: Ib5b7a9d3a8cacfb7b36a2cc2715430e0f11e281d Signed-off-by: Paul Belanger --- zuul/ansible/callback/zuul_stream.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zuul/ansible/callback/zuul_stream.py b/zuul/ansible/callback/zuul_stream.py index c4b1311872..9dd724d34f 100644 --- a/zuul/ansible/callback/zuul_stream.py +++ b/zuul/ansible/callback/zuul_stream.py @@ -293,6 +293,8 @@ class CallbackModule(default.CallbackModule): if reason: # No reason means it's an item, which we'll log differently self._log_message(result, status='skipping', msg=reason) + # Log an extra blank line to get space after each skip + self._log("") def v2_runner_item_on_skipped(self, result): reason = result._result.get('skip_reason')