From d0fd8525773d82808ade2244740256b5621f7521 Mon Sep 17 00:00:00 2001 From: Lianhao Lu Date: Fri, 9 Dec 2016 14:42:18 +0800 Subject: [PATCH] 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 --- aodh/notifier/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aodh/notifier/log.py b/aodh/notifier/log.py index fa6e20ee7..bfc215ddf 100644 --- a/aodh/notifier/log.py +++ b/aodh/notifier/log.py @@ -36,5 +36,5 @@ class LogAlarmNotifier(notifier.AlarmNotifier): 'severity': severity, 'previous': previous, 'current': current, - 'action': action, + 'action': action.geturl(), 'reason': reason}))