diff options
| author | Ted Ross <tross@apache.org> | 2008-10-09 13:47:48 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2008-10-09 13:47:48 +0000 |
| commit | 90f05a2c343bdddda6863f80563702eaf5eece8a (patch) | |
| tree | 2419f7cb200967b40f59376e5bfb671c78a3e386 /qpid/python | |
| parent | 529a47e659c636a700d9d405bd9b5c750ce18e0a (diff) | |
| download | qpid-python-90f05a2c343bdddda6863f80563702eaf5eece8a.tar.gz | |
QPID-1327 - Added optional severity override in the eventRaise method
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@703164 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qpid/qmfconsole.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/python/qpid/qmfconsole.py b/qpid/python/qpid/qmfconsole.py index bcd1e59819..59d4752210 100644 --- a/qpid/python/qpid/qmfconsole.py +++ b/qpid/python/qpid/qmfconsole.py @@ -1201,6 +1201,7 @@ class Event: if self.severity == 5 : return "NOTIC" if self.severity == 6 : return "INFO " if self.severity == 7 : return "DEBUG" + return "INV-%d" % self.severity def getClassKey(self): return self.classKey |
