Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message.
(self)
| 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. |