We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1813207 + 4af3707 commit 74d6bd6Copy full SHA for 74d6bd6
lib/spring/application.rb
@@ -320,6 +320,7 @@ def shush_backtraces
320
if $!
321
lib = File.expand_path("..", __FILE__)
322
$!.backtrace.reject! { |line| line.start_with?(lib) } unless $!.backtrace.frozen?
323
+ $!.backtrace_locations.reject! { |line| line.path&.start_with?(lib) } unless $!.backtrace_locations.frozen?
324
end
325
326
@@ -331,6 +332,7 @@ def shush_backtraces
331
332
333
334
335
336
337
338
0 commit comments