Skip to content

Commit a1e20e0

Browse files
committed
increased log level from debug to error in validate_requested_scopes.
1 parent db4f053 commit a1e20e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

oidc_provider/lib/endpoints/token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def validate_requested_scopes(self):
155155
if scope_requested in self.client.scope:
156156
token_scopes.append(scope_requested)
157157
else:
158-
logger.debug('[Token] The request scope %s is not supported by client %s',
158+
logger.error('[Token] The request scope %s is not supported by client %s',
159159
scope_requested, self.client.client_id)
160160
raise TokenError('invalid_scope')
161161
# if no scopes requested assign client's scopes

oidc_provider/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.8.2+orm'
1+
__version__ = '0.8.3+orm'

0 commit comments

Comments
 (0)