R10K::Logging::Log4r::IOOutputter
# File lib/r10k/logging/terminaloutputter.rb, line 25 def format(logevent) string = super if @use_color color = COLORS[logevent.level] color ? string.send(color) : string else string end end