Class: ActionView::LogSubscriber

Inherits:
ActiveSupport::LogSubscriber show all
Defined in:
actionview/lib/action_view/log_subscriber.rb

Overview

Action View Log Subscriber

Provides functionality so that Rails can output logs from Action View.

Constant Summary collapse

VIEWS_PATTERN =
/^app\/views\//

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

#patterns

Instance Method Summary collapse

Methods inherited from ActiveSupport::LogSubscriber

#finish, flush_all!, log_subscribers

Methods inherited from ActiveSupport::Subscriber

attach_to, detach_from, #finish, method_added, subscribers

Constructor Details

#initializeLogSubscriber

Returns a new instance of LogSubscriber.



12
13
14
15
# File 'actionview/lib/action_view/log_subscriber.rb', line 12

def initialize
  @root = nil
  super
end

Instance Method Details

#loggerObject



52
53
54
# File 'actionview/lib/action_view/log_subscriber.rb', line 52

def logger
  ActionView::Base.logger
end

#render_collection(event) ⇒ Object



35
36
37
38
39
40
41
42
# File 'actionview/lib/action_view/log_subscriber.rb', line 35

def render_collection(event)
  identifier = event.payload[:identifier] || "templates"

  debug do
    "  Rendered collection of #{from_rails_root(identifier)}" \
    " #{render_count(event.payload)} (Duration: #{event.duration.round(1)}ms | Allocations: #{event.allocations})"
  end
end

#render_partial(event) ⇒ Object



25
26
27
28
29
30
31
32
33
# File 'actionview/lib/action_view/log_subscriber.rb', line 25

def render_partial(event)
  debug do
    message = +"  Rendered #{from_rails_root(event.payload[:identifier])}"
    message << " within #{from_rails_root(event.payload[:layout])}" if event.payload[:layout]
    message << " (Duration: #{event.duration.round(1)}ms | Allocations: #{event.allocations})"
    message << " #{cache_message(event.payload)}" unless event.payload[:cache_hit].nil?
    message
  end
end

#render_template(event) ⇒ Object



17
18
19
20
21
22
23
# File 'actionview/lib/action_view/log_subscriber.rb', line 17

def render_template(event)
  info do
    message = +"  Rendered #{from_rails_root(event.payload[:identifier])}"
    message << " within #{from_rails_root(event.payload[:layout])}" if event.payload[:layout]
    message << " (Duration: #{event.duration.round(1)}ms | Allocations: #{event.allocations})"
  end
end

#start(name, id, payload) ⇒ Object



44
45
46
47
48
49
50
# File 'actionview/lib/action_view/log_subscriber.rb', line 44

def start(name, id, payload)
  if name == "render_template.action_view"
    log_rendering_start(payload)
  end

  super
end