diff options
Diffstat (limited to 'lib/mauve')
-rw-r--r-- | lib/mauve/alert.rb | 4 | ||||
-rw-r--r-- | lib/mauve/alert_group.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/mauve/alert.rb b/lib/mauve/alert.rb index 078fed4..8ccc045 100644 --- a/lib/mauve/alert.rb +++ b/lib/mauve/alert.rb @@ -354,9 +354,9 @@ module Mauve # Add a note saying that notifications have been suppressed # if !should_notify - history.event += " notifications suppressed" + history.event += " (notifications not required)" elsif self.suppressed? - history.event += " notifications suppressed until #{self.suppress_until}" + history.event += " (notifications suppressed until #{self.suppress_until.to_s_human})" end end diff --git a/lib/mauve/alert_group.rb b/lib/mauve/alert_group.rb index c570247..6738dc0 100644 --- a/lib/mauve/alert_group.rb +++ b/lib/mauve/alert_group.rb @@ -159,7 +159,7 @@ module Mauve # Bail out if notifications for this alert have been suppressed. # if alert.suppressed? - logger.info("Notifications suppressed until #{alert.suppress_until} for #{alert.inspect}") + logger.info("Notifications suppressed until #{alert.suppress_until} for #{alert}") this_reminder = AlertChanged.first_or_new( :alert_id => alert.id, |