Home
last modified time | relevance | path

Searched refs:formatException (Results 1 – 9 of 9) sorted by relevance

/external/toolchain-utils/automation/common/
Dlogger.py109 record.exc_text = self.formatException(record.exc_info)
/external/python/cpython2/Lib/logging/
D__init__.py431 def formatException(self, ei): member in Formatter
481 record.exc_text = self.formatException(record.exc_info)
/external/python/cpython3/Lib/logging/
D__init__.py565 def formatException(self, ei): member in Formatter
627 record.exc_text = self.formatException(record.exc_info)
/external/python/cpython2/Lib/test/
Dtest_logging.py499 def formatException(self, ei): member in ExceptionFormatter
/external/python/cpython2/Doc/library/
Dlogging.rst474 formatted using :meth:`formatException` and appended to the message. Note
503 .. method:: formatException(exc_info)
/external/python/cpython2/Doc/howto/
Dlogging-cookbook.rst1134 def formatException(self, exc_info):
1138 result = super(OneLineExceptionFormatter, self).formatException(exc_info)
/external/python/cpython3/Doc/library/
Dlogging.rst538 formatted using :meth:`formatException` and appended to the message. Note
585 .. method:: formatException(exc_info)
/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst2140 def formatException(self, exc_info):
2144 result = super(OneLineExceptionFormatter, self).formatException(exc_info)
/external/python/cpython3/Lib/test/
Dtest_logging.py1152 def formatException(self, ei): member in ExceptionFormatter