From 0aaa9e1d7b16e92c0cbe9e40c037c38ba0427840 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Sat, 11 Jun 2011 23:03:37 +0100 Subject: Issue #12206: documentation for LogRecord constructor updated re. the level argument. --- Doc/library/logging.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 32f762d..76633db 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -544,6 +544,9 @@ wire). :param name: The name of the logger used to log the event represented by this LogRecord. :param level: The numeric level of the logging event (one of DEBUG, INFO etc.) + Note that this is converted to *two* attributes of the LogRecord: + ``levelno`` for the numeric value and ``levelname`` for the + corresponding level name. :param pathname: The full pathname of the source file where the logging call was made. :param lineno: The line number in the source file where the logging call was -- cgit v0.12