aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/log_subscriber.rb
Commit message (Collapse)AuthorAgeFilesLines
* edit pass: the names of Rails components have a space, ie, "Active Record", ↵Xavier Noria2010-06-141-1/+1
| | | | not "ActiveRecord"
* Improve performance of the log subscriber by remembering the list of all ↵wycats2010-06-041-3/+10
| | | | loggers instead of trying to extract them each time
* Change event namespace ordering to most-significant first [#4504 state:resolved]Justin George2010-05-021-3/+3
| | | | | | | | | More work still needs to be done on some of these names (render_template.action_view and render_template!.action_view particularly) but this allows (for example) /^sql/ to subscribe to all the various ORMs without further modification Signed-off-by: José Valim <jose.valim@gmail.com>
* Move remote_ip to a middleware:Carlhuda2010-03-031-0/+1
| | | | | * ActionController::Base.ip_spoofing_check deprecated => config.action_dispatch.ip_spoofing_check * ActionController::Base.trusted_proxies deprecated => config.action_dispatch.trusted_proxies
* Have log subscribers subscribe to the actual events, so the subscriber ↵Carlhuda2010-03-021-18/+16
| | | | doesn't subscribe to *every* event, so we can have events that are slow-ish but are not actually run in production.
* Subscriber should not explode if a non namespaced instrumentation is given.José Valim2010-02-161-1/+2
|
* Rename Rails::Subscriber to Rails::LogSubscriberPrem Sichanugrist2010-02-161-0/+108