diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2017-01-22 11:45:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-22 11:45:37 -0500 |
commit | ff7593d63ebe628b87b76974c365b9e0707be19f (patch) | |
tree | 0dffb92bdf3567fd3e85a58cbf0d40e7ecc77656 /activesupport | |
parent | b934f89fc3bac907e5bf49bff2b24e0d9cc41213 (diff) | |
parent | d1c546ff2a539b6d7321cfa5a3e4db9577b0cb94 (diff) | |
download | rails-ff7593d63ebe628b87b76974c365b9e0707be19f.tar.gz rails-ff7593d63ebe628b87b76974c365b9e0707be19f.tar.bz2 rails-ff7593d63ebe628b87b76974c365b9e0707be19f.zip |
Merge pull request #27766 from kenta-s/add-module-name-to-backtrace-cleaner-sample-code
Add module name to BacktraceCleaner usage example [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/backtrace_cleaner.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/backtrace_cleaner.rb b/activesupport/lib/active_support/backtrace_cleaner.rb index 169a58ecd1..e47c90597f 100644 --- a/activesupport/lib/active_support/backtrace_cleaner.rb +++ b/activesupport/lib/active_support/backtrace_cleaner.rb @@ -12,7 +12,7 @@ module ActiveSupport # is to exclude the output of a noisy library from the backtrace, so that you # can focus on the rest. # - # bc = BacktraceCleaner.new + # bc = ActiveSupport::BacktraceCleaner.new # bc.add_filter { |line| line.gsub(Rails.root.to_s, '') } # strip the Rails.root prefix # bc.add_silencer { |line| line =~ /puma|rubygems/ } # skip any lines from puma or rubygems # bc.clean(exception.backtrace) # perform the cleanup |