Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For a Rails 3.1 (will be 3.2 very soon), I have exceptionally verbose logs that have a lot of additional worker information spewing forth into them.

I routinely end up with multigigabyte development.log files. I've seen some various chatter around about rotating production logs, however I've not found anything that seems applicable to development.log rotation.

How do you rotate your development.log at every 100.megabytes or so? OR WHAT I WOULD PREFER is to actually truncate the head of the file so that only the most recent items remain in the log, up to 100MB of the most recent entries.

I have played with this a little and am thinking more and more than nothing quite like this exists at present and that perhaps I should implement something that will use the ruby File.truncate somehow, however I'm not sure of the efficacy of this yet on the tail end of the file as of yet.

share|improve this question
what server are you on? – Rogier Mar 6 '12 at 9:59
Running on Mac OS X for development. Some are on linux in the group. If I can use a non-specific method that would be best, or I can do something with case CONFIG['host_os'] if necessary. – ylluminate Mar 6 '12 at 10:10
I just clarified it a little. My real goal here is to KEEP the tail of the file, or the MOST RECENT log entries, discarding the oldest ones. – ylluminate Mar 6 '12 at 10:21
What are your thoughts on the above possible solution or temporary work around? – ylluminate Mar 6 '12 at 11:25

3 Answers

You can actually tell the Ruby Logger class to rotate the files in the constructor:

http://corelib.rubyonrails.org/classes/Logger.html#M000163

Example:

Logger.new(name, shift_age = 7, shift_size = 1048576)

In one of my enrivornment files I have the following line:

config.logger = Logger.new("#{RAILS_ROOT}/log/#{ENV['RAILS_ENV']}.log", 10, 1048576)

This keeps the last 10 logfiles which are rotated every 1 MB.

share|improve this answer
1  
This works nicely, however in 3.2 the Logger class is deprecated in favor of ActiveSupport::BufferedLogger, which apparently does not support rotation. Frustrating! – Caffeine Coma Aug 10 '12 at 15:21
@CaffeineComa can you support your inference? I'm using Rails 3.2.2 and this works pretty well, at least in development mode, that is the scope of this question. – Claudio Floreani Apr 6 at 9:33

On OSX i would use newsyslog

/etc/newsyslog.conf

On a Linux OS: logrotate

logrotate

share|improve this answer
Any thoughts on using tail -c $[100*1024*1024] development.log? – ylluminate Mar 6 '12 at 10:35
well tbh not really, its pretty massive. I normally (for debugging / devlopment) clear my console (cmd-k) and then run my code to see what happened. Watching a 100 MB trace, no thank you :) And it depends as well if other people are running on your dev env. Since then you need to split the clutter of the different IP's. – Rogier Mar 6 '12 at 10:45
Hahahah, yeah, that's still a bit large. Once we don't have such crazy fire hose spew going on for some data I'll trim it down to something more like 10MB probably. – ylluminate Mar 6 '12 at 11:26
up vote -1 down vote accepted

FEEDBACK?

So far, and perhaps temporarily as I'd like some feedback here if this approach is reasonable, I've just gone ahead and implemented a 'cron' (using rufus) task for the rails project to do handle this. What do you think:

every "60m" do
  log_file_name = 'log/development.log'
  if FileTest.exists?(log_file_name)
    print "Checking #{log_file_name} size... "
    unless File.size(log_file_name) > (100 * (2**20))
      puts "Still too small."
    else
      print "tailing..."
      system "tail -c $[100*1024*1024] #{log_file_name} > #{log_file_name}.new ; mv #{log_file_name}.new #{log_file_name} 2>&1 &"
      puts "#{log_file_name} file tailed."
    end
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.