This class represents a general purpose log message with a traceback appended to message text. More...
Public Member Functions | |
| def | __init__ (self, message, exception, level='INFO', notify_user=False) |
| Initializes a RIDE log exception. More... | |
Static Public Attributes | |
| list | data = ['message', 'level', 'timestamp', 'exception', 'notify_user'] |
This class represents a general purpose log message with a traceback appended to message text.
Also the original exception is included with the message.
This message may used to inform error conditions or to provide some kind of debugging information.
Definition at line 117 of file messages.py.
| def robotide.publish.messages.RideLogException.__init__ | ( | self, | |
| message, | |||
| exception, | |||
level = 'INFO', |
|||
notify_user = False |
|||
| ) |
Initializes a RIDE log exception.
The log ``level`` has default value ``INFO`` and the ``timestamp``
is generated automatically. Message is automatically appended with
a traceback.
Definition at line 126 of file messages.py.
|
static |
Definition at line 118 of file messages.py.