Skip to content

Commit

Permalink
Merge pull request #50 from djpugh/maintenance/add-logging
Browse files Browse the repository at this point in the history
  • Loading branch information
djpugh authored Dec 21, 2020
2 parents 4fa2877 + 6442280 commit a2c7d57
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/fastapi_aad_auth/providers/aad.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def _build_redirect_uri(self, request: Request):
else:
port = f':{request.url.port}'
redirect_uri = f'{request.url.scheme}://{request.url.hostname}{port}{self._redirect_path}'
self.logger.info(f'Created redirect uri: {redirect_uri} from {request.url}')
return redirect_uri

def _process_code(self, request: Request, auth_state, code):
Expand Down

0 comments on commit a2c7d57

Please sign in to comment.