3

如何在我的 rails3 应用程序中对 Rails.logger 的输出进行着色并加粗?

4

2 回答 2

7

善待其他程序员,不要将转义序列直接嵌入到你的字符串中。也许使用RainbowTerm-ANSIColor之类的库?例如术语-ANSIColor:

require 'term/ansicolor'
include Term::ANSIColor

Rails.logger.add 1, "#{red(ATCHUNG!)}: pay attention to me!"
于 2010-08-06T03:20:13.260 回答
0

如何告诉 ActiveRecord 不要记录任何控制字符

反其道而行之,进行主动记录

也看到这个链接

http://joefiorini.com/post/64995867/coloring-in-the-rails-log-and-console

于 2010-08-06T03:05:21.950 回答