From 8382d0fe2e86e56b3c206524d712851b8973c918 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Sat, 9 Oct 2010 11:24:34 +0000 Subject: Removed duplicated method. --- Lib/logging/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 4d9590b..112286b 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -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. -- cgit v0.12