From 9da14852c2518baeb6ee4893735de44ebd83efa7 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Thu, 14 Apr 2005 03:24:54 +0000 Subject: temporarily removing inclusion of time in output git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@141 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/blink.rb | 7 +++++-- 1 file 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 -- cgit