Method: Timber::Events::ControllerCall#message
- Defined in:
- lib/timber/events/controller_call.rb
#message ⇒ Object
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/timber/events/controller_call.rb', line 35 def = "Processing by #{controller}##{action}" if !.nil? << " as #{format}" end if !params.nil? && params.length > 0 << "\n Parameters: #{params.inspect}" end end |