diff --git a/app/views/delayed_jobs/index.html.erb b/app/views/delayed_jobs/index.html.erb
index a3be6de31..e69f42f5d 100644
--- a/app/views/delayed_jobs/index.html.erb
+++ b/app/views/delayed_jobs/index.html.erb
@@ -26,7 +26,10 @@
<%= raw print_handler(job) %> |
<% end %>
<%= job.attempts %> |
- <%= job.last_error %> |
+
+ <%= job.last_error.split(/\n/)[0] %>
+ <%= job.last_error.split(/\n/)[1..-1].grep(/releases/).join("\n") %>
+ |
<%= time_ago_in_words_tagged(job.failed_at) if job.failed_at %> |
<%= time_ago_in_words_tagged(job.run_at) %> |
|