Module: Timber::Integrations::ActionDispatch::DebugExceptions::InstanceMethods
- Defined in:
- lib/timber-rails/action_dispatch/debug_exceptions.rb
Overview
Patch for disabling logging
Class Method Summary collapse
Class Method Details
.included(klass) ⇒ Object
15 16 17 18 19 20 21 22 |
# File 'lib/timber-rails/action_dispatch/debug_exceptions.rb', line 15 def self.included(klass) klass.class_eval do private def logger(*args) nil end end end |