summaryrefslogtreecommitdiff
path: root/zuul/reporter/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'zuul/reporter/__init__.py')
-rw-r--r--zuul/reporter/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/zuul/reporter/__init__.py b/zuul/reporter/__init__.py
index 49181a77f..ecf88553a 100644
--- a/zuul/reporter/__init__.py
+++ b/zuul/reporter/__init__.py
@@ -64,6 +64,10 @@ class BaseReporter(object, metaclass=abc.ABCMeta):
a reporter taking free-form text."""
ret = self._getFormatter()(item, with_jobs)
+ if item.current_build_set.debug_messages:
+ debug = '\n '.join(item.current_build_set.debug_messages)
+ ret += '\nDebug information:\n ' + debug + '\n'
+
if item.pipeline.footer_message:
ret += '\n' + item.pipeline.footer_message