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
-
VIEWS_PATTERN =
# File 'actionview/lib/action_view/log_subscriber.rb', line 10/^app\/views\//
::ActiveSupport::LogSubscriber
- Inherited
BLACK, BLUE, CYAN, GREEN, MAGENTA, MODES, RED, WHITE, YELLOW
Class Attribute Summary
::ActiveSupport::LogSubscriber
- Inherited
Class Method Summary
- .attach_to
- .new ⇒ LogSubscriber constructor
::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 |
Instance Attribute Summary
::ActiveSupport::LogSubscriber
- Inherited
Instance Method Summary
::ActiveSupport::Subscriber
- Inherited
Constructor Details
.new ⇒ LogSubscriber
# File 'actionview/lib/action_view/log_subscriber.rb', line 12
def initialize @root = nil super end
Class Method Details
.attach_to
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 105
def self.attach_to(*) ActiveSupport::Notifications.subscribe("render_template.action_view", ActionView::LogSubscriber::Start.new) ActiveSupport::Notifications.subscribe("render_layout.action_view", ActionView::LogSubscriber::Start.new) super end
Instance Method Details
#render_collection(event)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 45
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 | GC: #{event.gc_time.round(1)}ms)" end end
#render_layout(event)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 37
def render_layout(event) info do = +" Rendered layout #{from_rails_root(event.payload[:identifier])}" << " (Duration: #{event.duration.round(1)}ms | GC: #{event.gc_time.round(1)}ms)" end end
#render_partial(event)
[ GitHub ]# File 'actionview/lib/action_view/log_subscriber.rb', line 26
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 | GC: #{event.gc_time.round(1)}ms)" << " #{ (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 | GC: #{event.gc_time.round(1)}ms)" end end