Cinan's world

GNU/Linux & free software, howtos, web development, scripts and other geek stuff

Colorful Logging in Rails 3.2

The default Rails logger is really messy. Write somewhere logger.debug some_object.inspect and then for an hour search where the goddamn message is in a log file. Fortunately we can format and colorize logger output.

Create config/initializers/log_formatting.rb file and paste this code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class ActiveSupport::BufferedLogger
    def formatter=(formatter)
        @log.formatter = formatter
    end
end

class Formatter
    SEVERITY_TO_COLOR_MAP   = {'DEBUG'=>'33', 'INFO'=>'0;37', 'WARN'=>'36', 'ERROR'=>'31', 'FATAL'=>'31', 'UNKNOWN'=>'37'}

    def call(severity, time, progname, msg)
        formatted_severity = sprintf("%s","#{severity}")

        formatted_time = time.strftime("%Y-%m-%d %H:%M:%S.") << time.usec.to_s[0..2].rjust(3)
        color = SEVERITY_TO_COLOR_MAP[severity]

        if msg.empty?
            "\n"
        else
            "\033[0;37m#{formatted_time}\033[0m [#{formatted_severity}] \033[#{color}m#{msg.strip}\033[0m\n"
        end
    end

end

Rails.logger.formatter = Formatter.new

I found original code here. I’ve just made small changes – adjusted colors and formatting (and removed humorous stuff).

This is how it looks in tail -f log/development.log:

Comments