提交 7830bb0d 编写于 作者: G Guillermo Iguaran

Merge pull request #17639 from gsamokovarov/faster-exception-wrapper-traces

Don't double check trace origin in ExceptionWrapper#traces
......@@ -65,8 +65,12 @@ def traces
full_trace.each_with_index do |trace, idx|
trace_with_id = { id: idx, trace: trace }
appplication_trace_with_ids << trace_with_id if application_trace.include?(trace)
framework_trace_with_ids << trace_with_id if framework_trace.include?(trace)
if application_trace.include?(trace)
appplication_trace_with_ids << trace_with_id
else
framework_trace_with_ids << trace_with_id
end
full_trace_with_ids << trace_with_id
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册