Methods
- L
- N
- O
- R
- S
Constants
IGNORE_PAYLOAD_NAMES | = | ["SCHEMA", "EXPLAIN"] |
Class Public methods
new()
Link
reset_runtime()
Link
runtime()
Link
runtime=(value)
Link
Instance Public methods
logger()
Link
odd?()
Link
render_bind(column, value)
Link
# File activerecord/lib/active_record/log_subscriber.rb, line 23 def render_bind(column, value) if column if column.binary? # This specifically deals with the PG adapter that casts bytea columns into a Hash. value = value[:value] if value.is_a?(Hash) value = value ? "<#{value.bytesize} bytes of binary data>" : "<NULL binary data>" end [column.name, value] else [nil, value] end end
sql(event)
Link
# File activerecord/lib/active_record/log_subscriber.rb, line 37 def sql(event) self.class.runtime += event.duration return unless logger.debug? payload = event.payload return if IGNORE_PAYLOAD_NAMES.include?(payload[:name]) name = "#{payload[:name]} (#{event.duration.round(1)}ms)" sql = payload[:sql] binds = nil unless (payload[:binds] || []).empty? binds = " " + payload[:binds].map { |col,v| render_bind(col, v) }.inspect end if odd? name = color(name, CYAN, true) sql = color(sql, nil, true) else name = color(name, MAGENTA, true) end debug " #{name} #{sql}#{binds}" end