]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed duplicated method.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Sat, 9 Oct 2010 11:24:34 +0000 (11:24 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Sat, 9 Oct 2010 11:24:34 +0000 (11:24 +0000)
Lib/logging/__init__.py

index 4d9590b922958dc500ef30d8ddfe65660d6cee85..112286ba5214c8a5aca14eeeb77895516c140e58 100644 (file)
@@ -1445,12 +1445,6 @@ class LoggerAdapter(object):
         """
         self.logger.setLevel(level)
 
-    def isEnabledFor(self, level):
-        """
-        See if the underlying logger is enabled for the specified level.
-        """
-        return self.logger.isEnabledFor(level)
-
     def getEffectiveLevel(self):
         """
         Get the effective level for the underlying logger.