Class: Raven::Processor::RemoveStacktrace
- Inherits:
-
Raven::Processor
- Object
- Raven::Processor
- Raven::Processor::RemoveStacktrace
- Defined in:
- lib/raven/processor/removestacktrace.rb
Constant Summary
Constants inherited from Raven::Processor
INT_MASK, REGEX_SPECIAL_CHARACTERS, STRING_MASK
Instance Method Summary collapse
Methods inherited from Raven::Processor
Constructor Details
This class inherits a constructor from Raven::Processor
Instance Method Details
#process(value) ⇒ Object
3 4 5 6 7 8 9 10 11 |
# File 'lib/raven/processor/removestacktrace.rb', line 3 def process(value) if value[:exception] value[:exception][:values].map do |single_exception| single_exception.delete(:stacktrace) if single_exception[:stacktrace] end end value end |