aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/clean_logger.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-29 21:03:21 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-29 21:03:21 +0000
commitbd323b3c99437cf1a50d7b4c23a64f296859c56a (patch)
tree943347b52f12f8df492c0864e7ba61318e459f63 /activesupport/lib/clean_logger.rb
parent1b0da48fe98abc67b56bc76f2af59a90198b21cc (diff)
downloadrails-bd323b3c99437cf1a50d7b4c23a64f296859c56a.tar.gz
rails-bd323b3c99437cf1a50d7b4c23a64f296859c56a.tar.bz2
rails-bd323b3c99437cf1a50d7b4c23a64f296859c56a.zip
Moved support from both Action Pack and Active Record into a separate module called Active Support that can be included using svn:externals in both
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@273 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/clean_logger.rb')
-rw-r--r--activesupport/lib/clean_logger.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/lib/clean_logger.rb b/activesupport/lib/clean_logger.rb
new file mode 100644
index 0000000000..1a36562892
--- /dev/null
+++ b/activesupport/lib/clean_logger.rb
@@ -0,0 +1,10 @@
+require 'logger'
+
+class Logger #:nodoc:
+ private
+ remove_const "Format"
+ Format = "%s\n"
+ def format_message(severity, timestamp, msg, progname)
+ Format % [msg]
+ end
+end \ No newline at end of file