Log an extra blank line to get space after each skip

To improve readability of logging.

Change-Id: Ib5b7a9d3a8cacfb7b36a2cc2715430e0f11e281d
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-07-24 13:03:42 -04:00 committed by Monty Taylor
parent ffb13e4651
commit a03c59ab4e
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 2 additions and 0 deletions

View File

@ -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')