Class: ActionView::LogSubscriber
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
ActiveSupport::LogSubscriber
|
Defined in: | actionview/lib/action_view/log_subscriber.rb |
Overview
Provides functionality so that ::Rails
can output logs from Action View.
Constant Summary
-
EMPTY =
# File 'actionview/lib/action_view/log_subscriber.rb', line 64""
-
VIEWS_PATTERN =
# File 'actionview/lib/action_view/log_subscriber.rb', line 10/^app\/views\//
::ActiveSupport::LogSubscriber
- Inherited
BLACK, BLUE, BOLD, CLEAR, CYAN, GREEN, MAGENTA, RED, WHITE, YELLOW
Class Attribute Summary
::ActiveSupport::LogSubscriber
- Inherited
Class Method Summary
- .new ⇒ LogSubscriber constructor
::ActiveSupport::LogSubscriber
- Inherited
.flush_all! | Flush all log_subscribers’ logger. |
.log_subscribers |
::ActiveSupport::Subscriber
- Inherited
.attach_to | Attach the subscriber to a namespace. |
.detach_from | Detach the subscriber from a namespace. |
.method_added | Adds event subscribers for all new methods added to the class. |
.new, .subscribers, .add_event_subscriber, .remove_event_subscriber |
Instance Attribute Summary
::ActiveSupport::LogSubscriber
- Inherited
Instance Method Summary
- #logger
- #render_collection(event)
- #render_layout(event)
- #render_partial(event)
- #render_template(event)
- #start(name, id, payload)
- #cache_message(payload) private
- #from_rails_root(string) private
- #rails_root private
- #render_count(payload) private
::ActiveSupport::LogSubscriber
- Inherited
::ActiveSupport::Subscriber
- Inherited
Constructor Details
.new ⇒ LogSubscriber
# File 'actionview/lib/action_view/log_subscriber.rb', line 12
def initialize @root = nil super end
Instance Method Details
#cache_message(payload) (private)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 83
def (payload) # :doc: case payload[:cache_hit] when :hit "[cache hit]" when :miss "[cache miss]" end end
#from_rails_root(string) (private)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 65
def from_rails_root(string) # :doc: string = string.sub(rails_root, EMPTY) string.sub!(VIEWS_PATTERN, EMPTY) string end
#logger
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 59
def logger ActionView::Base.logger end
#rails_root (private)
[ GitHub ]#render_collection(event)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 42
def render_collection(event) identifier = event.payload[:identifier] || "templates" debug do = +" Rendered collection of #{from_rails_root(identifier)}" << " within #{from_rails_root(event.payload[:layout])}" if event.payload[:layout] << " #{render_count(event.payload)} (Duration: #{event.duration.round(1)}ms | Allocations: #{event.allocations})" end end
#render_count(payload) (private)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 75
def render_count(payload) # :doc: if payload[:cache_hits] "[#{payload[:cache_hits]} / #{payload[:count]} cache hits]" else "[#{payload[:count]} times]" end end
#render_layout(event)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 35
def render_layout(event) info do = +" Rendered layout #{from_rails_root(event.payload[:identifier])}" << " (Duration: #{event.duration.round(1)}ms | Allocations: #{event.allocations})" end end
#render_partial(event)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 25
def render_partial(event) debug do = +" Rendered #{from_rails_root(event.payload[:identifier])}" << " within #{from_rails_root(event.payload[:layout])}" if event.payload[:layout] << " (Duration: #{event.duration.round(1)}ms | Allocations: #{event.allocations})" << " #{ (event.payload)}" unless event.payload[:cache_hit].nil? end end
#render_template(event)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 17
def render_template(event) info do = +" Rendered #{from_rails_root(event.payload[:identifier])}" << " within #{from_rails_root(event.payload[:layout])}" if event.payload[:layout] << " (Duration: #{event.duration.round(1)}ms | Allocations: #{event.allocations})" end end
#start(name, id, payload)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 53
def start(name, id, payload) log_rendering_start(payload, name) super end