diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-10-09 11:24:34 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-10-09 11:24:34 +0000 |
commit | e2b9d0b7f45084b037c154b46d918b6fdf0ea7c9 (patch) | |
tree | d796cc303cf9cec9cd1375a458c728ae1b601f1e /Lib/logging | |
parent | 4bf9a3efd51b7e0a4f255a47acf87e4fbf7acd28 (diff) | |
download | cpython-e2b9d0b7f45084b037c154b46d918b6fdf0ea7c9.tar.gz |
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 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. |