Flowdock
method

identity

Importance_0
v3.2.13 - Show latest stable - 0 notes - Class: ActiveRecord::LogSubscriber
identity(event) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/log_subscriber.rb, line 53
    def identity(event)
      return unless logger.debug?

      name = color(event.payload[:name], odd? ? CYAN : MAGENTA, true)
      line = odd? ? color(event.payload[:line], nil, true) : event.payload[:line]

      debug "  #{name}  #{line}"
    end
Register or log in to add new notes.