I''ve been in and out of everything I can find, and can''t find a way to make the logger stop adding ANSI code to the log. Is there a logger.cant_see_white_on_gray method? :-) TIA! Regards, JJ
John Johnson wrote:> I''ve been in and out of everything I can find, and can''t find a way to > make the logger stop adding ANSI code to the log. > > Is there a logger.cant_see_white_on_gray method? :-)Try tossing this at the end of config/environment.rb class ActiveRecord::ConnectionAdapters::AbstractAdapter protected def format_log_entry(message, dump = nil) "%s %s" % [message, dump] end end jeremy