Colorize your B&W Rails logs
e.g. Rails.logger.debug "This <c!>is a test"
lowercase - font color
uppercase - background color
k => black
r => red
g => green
y => yellow
b => blue
m => magenta
c => cyan
w => white
! => <bright/bold>
in your Gemfile
require 'turner_logs'
that's it.
Now when you want to print out a colorized log statment, you do something like:
Rails.logger.debug "<g>Everything is <Wb>OK."