diff options
Diffstat (limited to 'oauthlib/oauth2/rfc6749/endpoints/base.py')
-rw-r--r-- | oauthlib/oauth2/rfc6749/endpoints/base.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/oauthlib/oauth2/rfc6749/endpoints/base.py b/oauthlib/oauth2/rfc6749/endpoints/base.py index e66ab75..24f00d9 100644 --- a/oauthlib/oauth2/rfc6749/endpoints/base.py +++ b/oauthlib/oauth2/rfc6749/endpoints/base.py @@ -9,12 +9,13 @@ for consuming and providing OAuth 2.0 RFC6749. from __future__ import absolute_import, unicode_literals import functools - -from oauthlib.common import log +import logging from ..errors import TemporarilyUnavailableError, ServerError from ..errors import FatalClientError, OAuth2Error +log = logging.getLogger(__name__) + class BaseEndpoint(object): def __init__(self): |