Home
last modified time | relevance | path

Searched refs:LogRecord (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Doc/library/
Dlogging.rst203 when computing the line number and function name set in the :class:`LogRecord`
210 dictionary which is used to populate the __dict__ of the :class:`LogRecord`
234 dictionary of the :class:`LogRecord`. If these are missing, the message will
349 specialized :class:`LogRecord` instances.
523 responsible for converting a :class:`LogRecord` to (usually) a string which can
531 of the :class:`LogRecord` attributes - such as the default value mentioned above
533 into a :class:`LogRecord`'s *message* attribute. This format string contains
537 The useful mapping keys in a :class:`LogRecord` are given in the section on
694 the :class:`LogRecord` being processed. Obviously changing the LogRecord needs
700 LogRecord Objects
[all …]
Dlogging.handlers.rst493 :class:`~logging.LogRecord`, use the :func:`~logging.makeLogRecord`
584 :class:`~logging.LogRecord`, use the :func:`~logging.makeLogRecord`
975 subset of :class:`~logging.LogRecord` is to be sent to the web server, or
1024 Enqueues the result of preparing the LogRecord. Should an exception
Dunittest.rst1114 A list of :class:`logging.LogRecord` objects of the matching
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DDebugWriter.java18 import java.util.logging.LogRecord;
108 public String format(LogRecord logRecord) { in format()
/third_party/python/Doc/howto/
Dlogging-cookbook.rst457 followed by the LogRecord in pickle format. Logs the record
611 merged into the :class:`LogRecord` instance's __dict__, allowing you to use
657 user's username - to the ``LogRecord``, using the attribute names 'ip' and
786 # LogRecord.
1237 Customizing ``LogRecord``
1240 Every logging event is represented by a :class:`LogRecord` instance.
1242 :class:`LogRecord` is created, populated with information about the event and
1248 logging an event. This invoked :class:`LogRecord` directly to create an
1251 attributes to be added to the LogRecord. This is typically invoked when a
1257 :class:`LogRecord`, you've had to do one of the following.
[all …]
Dlogging.rst362 formatters in a :class:`LogRecord` instance.
876 Logging messages are encoded as instances of the :class:`~logging.LogRecord`
878 :class:`~logging.LogRecord` instance is created from the logging message.
883 of a :class:`LogRecord`) ends up in a particular location (or set of locations)
886 :class:`LogRecord` instances intended for particular destinations. Each logger
/third_party/python/Lib/logging/
D__init__.py271 class LogRecord(object): class
374 _logRecordFactory = LogRecord
/third_party/rust/crates/log/
DCHANGELOG.md199 `LevelFilter`, and `LogRecord` is now `Record`.
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DTestUtil.java241 import java.util.logging.LogRecord;
3868 private final List<LogRecord> list = new ArrayList<>();
3872 public synchronized void publish(LogRecord record) { in publish()
3883 public synchronized List<LogRecord> getStoredLogRecords() { in getStoredLogRecords()
3884 List<LogRecord> result = new ArrayList<>(list); in getStoredLogRecords()
/third_party/python/Lib/test/
Dtest_logging.py3482 class DerivedLogRecord(logging.LogRecord):
3546 self.assertTrue(isinstance(data, logging.LogRecord))
3711 [m.msg if isinstance(m, logging.LogRecord)
5172 return logging.LogRecord('n', logging.DEBUG, 'p', 1,
/third_party/python/Lib/unittest/test/
Dtest_case.py1611 self.assertIsInstance(rec, logging.LogRecord)
/third_party/python/Doc/whatsnew/
D2.3.rst525 creates a :class:`LogRecord` instance that is sent to any number of different
527 of filters, and each filter can cause the :class:`LogRecord` to be ignored or
529 :class:`LogRecord` instances are converted to text by a :class:`Formatter`
D3.4.rst1701 context manager can be queried for the :class:`~logging.LogRecord`\ s and/or
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst3022 In :class:`QueueHandler`, clear `exc_text` from :class:`LogRecord` to
/third_party/python/Misc/
DHISTORY11734 increase flexibility of LogRecord creation.