From: Vinay Sajip Date: Thu, 31 Oct 2013 01:08:59 +0000 (+0000) Subject: Issue #19455: Corrected inaccuracies in documentation and corrected some incorrect... X-Git-Tag: v2.7.8~313 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41e9b401dc25418ecdfd4f525ecc7a47eea3df39;p=python Issue #19455: Corrected inaccuracies in documentation and corrected some incorrect cross-references. --- diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index d3984c7844..9045acf23d 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -679,16 +679,15 @@ information into logging calls. For a usage example , see the section on (possibly modified) versions of the arguments passed in. In addition to the above, :class:`LoggerAdapter` supports the following -methods of :class:`Logger`, i.e. :meth:`debug`, :meth:`info`, :meth:`warning`, -:meth:`error`, :meth:`exception`, :meth:`critical`, :meth:`log`, -:meth:`isEnabledFor`, :meth:`getEffectiveLevel`, :meth:`setLevel`, -:meth:`hasHandlers`. These methods have the same signatures as their -counterparts in :class:`Logger`, so you can use the two types of instances -interchangeably. +methods of :class:`Logger`: :meth:`~Logger.debug`, :meth:`~Logger.info`, +:meth:`~Logger.warning`, :meth:`~Logger.error`, :meth:`~Logger.exception`, +:meth:`~Logger.critical`, :meth:`~Logger.log` and :meth:`~Logger.isEnabledFor`. +These methods have the same signatures as their counterparts in :class:`Logger`, +so you can use the two types of instances interchangeably for these calls. .. versionchanged:: 2.7 - The :meth:`isEnabledFor` method was added to :class:`LoggerAdapter`. This - method delegates to the underlying logger. + The :meth:`~Logger.isEnabledFor` method was added to :class:`LoggerAdapter`. + This method delegates to the underlying logger. Thread Safety