diff --git a/modules/system/assets/js/eventlogs/exception-beautifier.js b/modules/system/assets/js/eventlogs/exception-beautifier.js
index 49918bed1..2eff039e3 100644
--- a/modules/system/assets/js/eventlogs/exception-beautifier.js
+++ b/modules/system/assets/js/eventlogs/exception-beautifier.js
@@ -324,6 +324,10 @@
'
' +
'')
+ if (source.indexOf('Message-ID:') > 0) {
+ markup = '' + source.trim().replace(/\r\n|\r|\n/g, '
').replace(/ {2}/g, ' ') + '
'
+ }
+
tabs.find('#beautifier-tab-formatted').append(markup)
tabs.find('#beautifier-tab-raw').append('' + $.oc.escapeHtmlString(source.trim()).replace(/\r\n|\r|\n/g, '
').replace(/ {2}/g, ' ') + '
')
@@ -358,4 +362,4 @@
$('[data-plugin="exception-beautifier"]').exceptionBeautifier()
})
-}(window.jQuery)
\ No newline at end of file
+}(window.jQuery)