X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6403b8728d3120d6cb22583b3963d2a030e88aa3..5257d99306e915cc9bb5a65eca81f8517e6e222d:/apps/workbench/app/views/pipeline_instances/_show_log.html.erb diff --git a/apps/workbench/app/views/pipeline_instances/_show_log.html.erb b/apps/workbench/app/views/pipeline_instances/_show_log.html.erb index 2fdb45bdb6..2a71aefc49 100644 --- a/apps/workbench/app/views/pipeline_instances/_show_log.html.erb +++ b/apps/workbench/app/views/pipeline_instances/_show_log.html.erb @@ -1,6 +1,9 @@ -<% log_history = stderr_log_history([@object.uuid] + pipeline_jobs(@object).collect{|x|x[:job].andand[:uuid]}.compact) %> -
- <% log_history.each do |entry| %> - <%=entry%>
- <% end %> -
+<% log_uuids = [@object.uuid] + pipeline_jobs(@object).collect{|x|x[:job].andand[:uuid]}.compact %> +<% log_history = stderr_log_history(log_uuids) %> +
<%= log_history.join("\n") %>
+
+ >