summaryrefslogtreecommitdiff
path: root/repoze/bfg/interfaces.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-23 08:07:16 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-23 08:07:16 +0000
commitbd39b16939147d667e9c483e341c0e0a14284eec (patch)
tree26710ce1d8b4db651be9efc6e9bd9dc9545a8c89 /repoze/bfg/interfaces.py
parent155044361d06c543de2a07a03dca5cf1a627a5f6 (diff)
downloadpyramid-bd39b16939147d667e9c483e341c0e0a14284eec.tar.gz
pyramid-bd39b16939147d667e9c483e341c0e0a14284eec.tar.bz2
pyramid-bd39b16939147d667e9c483e341c0e0a14284eec.zip
- The internal ILogger utility named ``repoze.bfg.debug`` is now just
an IDebugLogger unnamed utility. A named utility with the old name is registered for b/w compat.
Diffstat (limited to 'repoze/bfg/interfaces.py')
-rw-r--r--repoze/bfg/interfaces.py4
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 """