Change for more useful output in log notifier

Modified the log notifier output to be more usefule, since the action
parameter in the log notifier is a SplitResult object, we need to change
the output more readable.

Change-Id: I320f937d389f60a11bde767b2f4025df0008ce32
Closes-Bug: #1648334
This commit is contained in:
Lianhao Lu 2016-12-09 14:42:18 +08:00
parent 78c62e928a
commit d0fd852577
1 changed files with 1 additions and 1 deletions

View File

@ -36,5 +36,5 @@ class LogAlarmNotifier(notifier.AlarmNotifier):
'severity': severity,
'previous': previous,
'current': current,
'action': action,
'action': action.geturl(),
'reason': reason}))