diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-10 16:05:20 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-10 16:05:20 +0100 |
commit | a54a32084e9870af6f1ede97887c2332c21e812c (patch) | |
tree | 5ccc3afa55e3dc9a9cbb7dedefd0c2d19453ba5c /lib/mauve/notifiers/debug.rb | |
parent | 8621a1b4914f70975f83ad59d31da25d5c01aa1a (diff) |
Added ability to tag multiple alerts with the same history item.
Diffstat (limited to 'lib/mauve/notifiers/debug.rb')
-rw-r--r-- | lib/mauve/notifiers/debug.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mauve/notifiers/debug.rb b/lib/mauve/notifiers/debug.rb index 889a428..775364d 100644 --- a/lib/mauve/notifiers/debug.rb +++ b/lib/mauve/notifiers/debug.rb @@ -47,7 +47,7 @@ module Mauve #FileUtils.touch(lock_file) File.open("#{deliver_to_file}", "a+") do |fh| fh.flock(File::LOCK_EX) - fh.print("#{MauveTime.now} from #{self.class}: " + message + "\n") + fh.print("#{Time.now} from #{self.class}: " + message + "\n") fh.flush() end #FileUtils.rm(lock_file) |