up vote 10 down vote favorite
5
share [g+] share [fb]

How can I configure the rails logger to output its log strings in another format? I would like to get something that is more informative like:

[Log Level] [Time] [Message]

Debug : 01-20-2008 13:11:03.00 : Method Called

This would really help me when I want to tail my development.log for messages that only come from a certain log level, like debug.

link|improve this question

67% accept rate
why not use Log4r? stackoverflow.com/questions/5664136/… – Siwei Shen Jan 8 at 23:50
feedback

2 Answers

up vote 17 down vote accepted

Did some digging and found this post in the RubyOnRails Talk google group.

So I modified it a little bit and put it at the end of my environment.rb:

module ActiveSupport
  class BufferedLogger
    def add(severity, message = nil, progname = nil, &block)
      return if @level > severity
      message = (message || (block && block.call) || progname).to_s

      level = {
        0 => "DEBUG",
        1 => "INFO",
        2 => "WARN",
        3 => "ERROR",
        4 => "FATAL"
      }[severity] || "U"

      message = "[%s: %s #%d] %s" % [level,
                                     Time.now.strftime("%m%d %H:%M:%S"),
                                     $$,
                                     message]

      message = "#{message}\n" unless message[-1] == ?\n
      buffer << message
      auto_flush
      message
    end
  end
end

This results in a format string like this:

[DEBUG: 0121 10:35:26 #57078] Rendered layouts/_header (0.00089)

link|improve this answer
feedback

Check out Geoffrey Grosenbach's Hodel3000CompliantLogger. It might be exactly what you're looking for, but if not, it should be trivial to edit the functions to get the output you need.

Basically what's involved is creating a new log class by subclassing Logger and overriding the format_message function, and setting your logger to use your new logger class and you should be good to go.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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