Indicates the effective level for this logger. If a value other than
:const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise,
the hierarchy is traversed towards the root until a value other than
- :const:`NOTSET` is found, and that value is returned.
+ :const:`NOTSET` is found, and that value is returned. The value returned is
+ an integer, typically one of :const:`logging.DEBUG`, :const:`logging.INFO`
+ etc.
.. method:: Logger.getChild(suffix)
of the defined levels is passed in, the corresponding string representation is
returned. Otherwise, the string "Level %s" % lvl is returned.
+ .. note:: Integer levels should be used when e.g. setting levels on instances
+ of :class:`Logger` and handlers. This function is used to convert between
+ an integer level and the level name displayed in the formatted log output
+ by means of the ``%(levelname)s`` format specifier (see
+ :ref:`logrecord-attributes`).
+
.. function:: makeLogRecord(attrdict)