aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/backtrace_cleaner.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix BacktraceCleaner#noise for multiple silencers.Mark J. Titorenko2013-06-201-5/+1
| | | | | | | | | | | | | | The previous implementation of BacktraceSilencer#noise did not work correctly if more than one silencer was configured -- specifically, it would only return noise which was matched by all silencers. The new implementation is such that anything that has been matched by silencers is removed from the backtrace using Array#- (array difference), ie. we now return all elements within a backtrace that have been matched by any silencer (and are thus removed by #silence). Fixes #11030.
* minor doc changes to `ActiveSupport::BacktraceCleaner`.Yves Senn2013-06-121-5/+5
|
* Add documentation for BacktraceCleaner#remove_filters!Matthew Stopa2013-01-021-0/+3
|
* rename private method to avoid overridingFrancesco Rodriguez2012-10-061-2/+2
|
* use Rails backtrace in testsFrancesco Rodriguez2012-10-051-0/+1
|
* update AS docs [ci skip]Francesco Rodriguez2012-09-171-17/+27
|
* removing unnecessary 'examples' noise from activesupportFrancesco Rodriguez2012-05-131-6/+0
|
* Whitespaces :scissors:Rafael Mendonça França2012-01-061-7/+7
|
* move example code to be above reconfiguring discussion; add clarity about ↵Matt Jankowski2011-06-221-11/+16
| | | | silencers and filters; misc grammar changes - for backtrace cleaners
* Some style changessuchasurge2011-03-061-1/+1
|
* ActiveSupport::BacktraceCleaner#remove_filters! allows for completely ↵Doug Alcorn2010-04-101-1/+7
| | | | | | untouched backtrace [#4079 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Use backtrace cleaner for dev mode exception pageJoshua Peek2010-01-161-8/+24
|
* Added ActiveSupport::BacktraceCleaner and Rails::BacktraceCleaner for ↵David Heinemeier Hansson2008-11-221-0/+72
cutting down on backtrace noise (inspired by the Thoughtbot Quiet Backtrace plugin) [DHH]