aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-12-12 16:02:59 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2011-12-12 16:02:59 -0800
commit676092f7619e6b42b69b57ed38a04e5e47907617 (patch)
tree118d66e3eef9d5f63d7c293581e6b4417e783c9e /actionpack/lib/action_controller
parentd12e6d0e2f71aa82db2338258d252600a79b35ba (diff)
downloadrails-676092f7619e6b42b69b57ed38a04e5e47907617.tar.gz
rails-676092f7619e6b42b69b57ed38a04e5e47907617.tar.bz2
rails-676092f7619e6b42b69b57ed38a04e5e47907617.zip
logger adds a newline for us
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/log_subscriber.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/log_subscriber.rb b/actionpack/lib/action_controller/log_subscriber.rb
index de250053d3..4c76f4c43b 100644
--- a/actionpack/lib/action_controller/log_subscriber.rb
+++ b/actionpack/lib/action_controller/log_subscriber.rb
@@ -24,7 +24,6 @@ module ActionController
end
message = "Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in %.0fms" % event.duration
message << " (#{additions.join(" | ")})" unless additions.blank?
- message << "\n"
info(message)
end