Action View Log Subscriber

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

Methods
F
L
N
R
Constants
VIEWS_PATTERN = /^app\/views\//
 
EMPTY = ''
 
Class Public methods
new()
# File actionview/lib/action_view/log_subscriber.rb, line 10
def initialize
  @root = nil
  super
end
Instance Public methods
logger()
# File actionview/lib/action_view/log_subscriber.rb, line 25
def logger
  ActionView::Base.logger
end
render_collection(event)
Alias for: render_template
render_partial(event)
Alias for: render_template
render_template(event)
Also aliased as: render_partial, render_collection
# File actionview/lib/action_view/log_subscriber.rb, line 15
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 << " (#{event.duration.round(1)}ms)"
  end
end
Instance Protected methods
from_rails_root(string)
# File actionview/lib/action_view/log_subscriber.rb, line 32
def from_rails_root(string)
  string = string.sub(rails_root, EMPTY)
  string.sub!(VIEWS_PATTERN, EMPTY)
  string
end
rails_root()
# File actionview/lib/action_view/log_subscriber.rb, line 38
def rails_root
  @root ||= "#{Rails.root}/"
end