diff options
Diffstat (limited to 'repoze/bfg/interfaces.py')
| -rw-r--r-- | repoze/bfg/interfaces.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py index d7963ef22..0f2d6ce45 100644 --- a/repoze/bfg/interfaces.py +++ b/repoze/bfg/interfaces.py @@ -151,9 +151,11 @@ class ILocation(Interface): __parent__ = Attribute("The parent in the location hierarchy") __name__ = Attribute("The name within the parent") -class ILogger(Interface): +class IDebugLogger(Interface): """ Interface representing a PEP 282 logger """ +ILogger = IDebugLogger # b/c + class IRoutesMapper(Interface): """ Interface representing a Routes ``Mapper`` object """ |
