diff options
author | Luke Kanies <luke@madstop.com> | 2005-04-14 03:24:54 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-04-14 03:24:54 +0000 |
commit | 9da14852c2518baeb6ee4893735de44ebd83efa7 (patch) | |
tree | 0c1ca453651d853fac4f033237df2949fc8307ec /lib | |
parent | 4d7bbaa01769094924147d0aaa30dc88bd73e079 (diff) | |
download | puppet-9da14852c2518baeb6ee4893735de44ebd83efa7.tar.gz puppet-9da14852c2518baeb6ee4893735de44ebd83efa7.tar.xz puppet-9da14852c2518baeb6ee4893735de44ebd83efa7.zip |
temporarily removing inclusion of time in output
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@141 980ebf18-57e1-0310-9a29-db15c13687c0
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 |