diff options
author | Tim Carey-Smith <tim@spork.in> | 2009-10-29 00:00:18 -0700 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2009-10-29 08:05:41 +0100 |
commit | 3f560386125adabe441facf2514ad53425e4af4e (patch) | |
tree | 00b342aec98868b61210bcc24d97510db000b45a /activesupport | |
parent | 51c24ae3e3c1a260a304042aff5e1a7c56faabfe (diff) | |
download | rails-3f560386125adabe441facf2514ad53425e4af4e.tar.gz rails-3f560386125adabe441facf2514ad53425e4af4e.tar.bz2 rails-3f560386125adabe441facf2514ad53425e4af4e.zip |
Remove the random line at the beginning of every new log file
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/buffered_logger.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/buffered_logger.rb b/activesupport/lib/active_support/buffered_logger.rb index dfce507b33..29c3843d16 100644 --- a/activesupport/lib/active_support/buffered_logger.rb +++ b/activesupport/lib/active_support/buffered_logger.rb @@ -53,7 +53,6 @@ module ActiveSupport FileUtils.mkdir_p(File.dirname(log)) @log = open(log, (File::WRONLY | File::APPEND | File::CREAT)) @log.sync = true - @log.write("# Logfile created on %s" % [Time.now.to_s]) end end |