Log lines of text associated with the last Python exception.
(self)
| 1826 | self.__do_log(DebugLog.log_event(event, text)) |
| 1827 | |
| 1828 | def log_exc(self): |
| 1829 | """ |
| 1830 | Log lines of text associated with the last Python exception. |
| 1831 | """ |
| 1832 | self.__do_log("Exception raised: %s" % traceback.format_exc()) |
| 1833 | |
| 1834 | def is_enabled(self): |
| 1835 | """ |