Skip to content

Instantly share code, notes, and snippets.

@coffeeaddict
Created April 12, 2011 08:17
Show Gist options
  • Save coffeeaddict/915154 to your computer and use it in GitHub Desktop.
Save coffeeaddict/915154 to your computer and use it in GitHub Desktop.
Monkey patch to get strawberry flavored errors
module ActiveSupport
# log errors in red
class BufferedLogger
alias_method :orig_error, :error
def error msg
if Rails.env != :production
msg = "\e[1;31m#{msg}\e[0m"
end
orig_error msg
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment