Class: ActiveRecord::LogSubscriber
- Inherits:
-
ActiveSupport::LogSubscriber
- Object
- ActiveSupport::Subscriber
- ActiveSupport::LogSubscriber
- ActiveRecord::LogSubscriber
- Defined in:
- activerecord/lib/active_record/log_subscriber.rb
Constant Summary collapse
- IGNORE_PAYLOAD_NAMES =
["SCHEMA", "EXPLAIN"]
Constants inherited from ActiveSupport::LogSubscriber
ActiveSupport::LogSubscriber::BLACK, ActiveSupport::LogSubscriber::BLUE, ActiveSupport::LogSubscriber::BOLD, ActiveSupport::LogSubscriber::CLEAR, ActiveSupport::LogSubscriber::CYAN, ActiveSupport::LogSubscriber::GREEN, ActiveSupport::LogSubscriber::MAGENTA, ActiveSupport::LogSubscriber::RED, ActiveSupport::LogSubscriber::WHITE, ActiveSupport::LogSubscriber::YELLOW
Instance Attribute Summary
Attributes inherited from ActiveSupport::Subscriber
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from ActiveSupport::LogSubscriber
#finish, flush_all!, log_subscribers, #start
Methods inherited from ActiveSupport::Subscriber
attach_to, #finish, #initialize, method_added, #start, subscribers
Constructor Details
This class inherits a constructor from ActiveSupport::Subscriber
Class Method Details
.reset_runtime ⇒ Object
15 16 17 18 |
# File 'activerecord/lib/active_record/log_subscriber.rb', line 15 def self.reset_runtime rt, self.runtime = runtime, 0 rt end |
.runtime ⇒ Object
11 12 13 |
# File 'activerecord/lib/active_record/log_subscriber.rb', line 11 def self.runtime ActiveRecord::RuntimeRegistry.sql_runtime ||= 0 end |
.runtime=(value) ⇒ Object
7 8 9 |
# File 'activerecord/lib/active_record/log_subscriber.rb', line 7 def self.runtime=(value) ActiveRecord::RuntimeRegistry.sql_runtime = value end |
Instance Method Details
#sql(event) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'activerecord/lib/active_record/log_subscriber.rb', line 20 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)" name = "CACHE #{name}" if payload[:cached] sql = payload[:sql] binds = nil unless (payload[:binds] || []).empty? casted_params = type_casted_binds(payload[:type_casted_binds]) binds = " " + payload[:binds].zip(casted_params).map { |attr, value| render_bind(attr, value) }.inspect end name = colorize_payload_name(name, payload[:name]) sql = color(sql, sql_color(sql), true) debug " #{name} #{sql}#{binds}" end |