summaryrefslogtreecommitdiffstats
path: root/Lib/logging/__init__.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-10-09 11:24:34 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-10-09 11:24:34 (GMT)
commit8382d0fe2e86e56b3c206524d712851b8973c918 (patch)
treeab1900c9946f88e57d79f070852db4d203636dea /Lib/logging/__init__.py
parent62165d67a25229fee85c98cef9d1feaf109b1339 (diff)
downloadcpython-8382d0fe2e86e56b3c206524d712851b8973c918.zip
cpython-8382d0fe2e86e56b3c206524d712851b8973c918.tar.gz
cpython-8382d0fe2e86e56b3c206524d712851b8973c918.tar.bz2
Removed duplicated method.
Diffstat (limited to 'Lib/logging/__init__.py')
-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 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.