MCPcopy Index your code
hub / github.com/RustPython/RustPython / getMessage

Method getMessage

Lib/logging/__init__.py:391–401  ·  view source on GitHub ↗

Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message.

(self)

Source from the content-addressed store, hash-verified

389 self.pathname, self.lineno, self.msg)
390
391 def getMessage(self):
392 """
393 Return the message for this LogRecord.
394
395 Return the message for this LogRecord after merging any user-supplied
396 arguments with the message.
397 """
398 msg = str(self.msg)
399 if self.args:
400 msg = msg % self.args
401 return msg
402
403#
404# Determine which class to use when instantiating log records.

Callers 7

formatMethod · 0.45
makePickleMethod · 0.45
_test_logMethod · 0.45
_assert_loggedMethod · 0.45

Calls 1

strFunction · 0.85