Method: Timber::Events::ControllerCall#message
- Defined in:
- lib/timber/events/controller_call.rb
#message ⇒ Object
28 29 30 31 32 33 34 35 36 37 |
# File 'lib/timber/events/controller_call.rb', line 28 def = "Processing by #{controller}##{action}" if !.nil? << " as #{format}" end if !params.nil? && params.length > 0 << "\n Parameters: #{params.inspect}" end end |