diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/blink.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/blink.rb b/lib/blink.rb index e132c9cbb..bf0bf311c 100644 --- a/lib/blink.rb +++ b/lib/blink.rb @@ -237,8 +237,11 @@ module Blink # this probably won't stay, but until this leaves the console, # i'm going to use coloring... #return "#{@time} #{@source} (#{@level}): #{@message}" - return @@colors[@level] + "%s %s (%s): %s" % [ - @time, @source, @level, @message + #return @@colors[@level] + "%s %s (%s): %s" % [ + # @time, @source, @level, @message + #] + RESET + return @@colors[@level] + "%s (%s): %s" % [ + @source, @level, @message ] + RESET end end |