diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-10-09 11:24:34 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-10-09 11:24:34 (GMT) |
commit | 8382d0fe2e86e56b3c206524d712851b8973c918 (patch) | |
tree | ab1900c9946f88e57d79f070852db4d203636dea /Lib/logging | |
parent | 62165d67a25229fee85c98cef9d1feaf109b1339 (diff) | |
download | cpython-8382d0fe2e86e56b3c206524d712851b8973c918.zip cpython-8382d0fe2e86e56b3c206524d712851b8973c918.tar.gz cpython-8382d0fe2e86e56b3c206524d712851b8973c918.tar.bz2 |
Removed duplicated method.
Diffstat (limited to 'Lib/logging')
-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. |