From bd39b16939147d667e9c483e341c0e0a14284eec Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 23 Nov 2009 08:07:16 +0000 Subject: - 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. --- repoze/bfg/interfaces.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'repoze/bfg/interfaces.py') 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 """ -- cgit v1.2.3