diff options
-rw-r--r-- | Lib/logging/__init__.py | 6 |
1 files changed, 0 insertions, 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. |