summaryrefslogtreecommitdiff
path: root/Lib/logging
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-10-09 11:24:34 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-10-09 11:24:34 +0000
commite2b9d0b7f45084b037c154b46d918b6fdf0ea7c9 (patch)
treed796cc303cf9cec9cd1375a458c728ae1b601f1e /Lib/logging
parent4bf9a3efd51b7e0a4f255a47acf87e4fbf7acd28 (diff)
downloadcpython-e2b9d0b7f45084b037c154b46d918b6fdf0ea7c9.tar.gz
Removed duplicated method.
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/__init__.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index 4d9590b922..112286ba52 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.