From 8b96a264c500e3a587cbdf387b3be11fd7d59302 Mon Sep 17 00:00:00 2001 From: lpm0073 Date: Thu, 6 Oct 2022 13:16:18 -0500 Subject: [PATCH] finesse log output --- wp_oauth_backend/wp_oauth.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/wp_oauth_backend/wp_oauth.py b/wp_oauth_backend/wp_oauth.py index 48e8161..3087cd6 100644 --- a/wp_oauth_backend/wp_oauth.py +++ b/wp_oauth_backend/wp_oauth.py @@ -286,7 +286,8 @@ class StepwiseMathWPOAuth2(BaseOAuth2): # ------------------------------------------------------------- if VERBOSE_LOGGING: logger.info( - "get_user_details() - detected an extended get_user_details() dict in the response: {response}".format( + "get_user_details() - returning {t}: {response}".format( + t=self.get_response_type(response), response=json.dumps(response, sort_keys=True, indent=4) ) ) @@ -297,9 +298,10 @@ class StepwiseMathWPOAuth2(BaseOAuth2): # conform to the structure of a wp-oauth dict. if not self.is_wp_oauth_response(response): logger.warning( - "get_user_details() - response object of {t} is not a valid wp-oauth object. Cannot continue. {response}".format( + "get_user_details() - response object of {t} is not a valid wp-oauth object: {response}. Cannot continue. returning: {retval}".format( t=self.get_response_type(response), response=json.dumps(response, sort_keys=True, indent=4), + retval=self.user_details ) ) return self.user_details @@ -308,11 +310,7 @@ class StepwiseMathWPOAuth2(BaseOAuth2): # expected use case #1: response object is a dict with all required keys. # ------------------------------------------------------------- if VERBOSE_LOGGING: - logger.info( - "get_user_details() - start. response: {response}".format( - response=json.dumps(response, sort_keys=True, indent=4) - ) - ) + logger.info("get_user_details() - processing response object") # try to parse out the first and last names split_name = response.get("display_name", "").split()