google-auth-library-java icon indicating copy to clipboard operation
google-auth-library-java copied to clipboard

Logging for Trust Boundaries.

Open vverman opened this issue 3 months ago • 0 comments

Presently trust boundaries in the lib are not being logged manner. We should use loggingUtils to log the crucial TB events like so:

 LoggingUtils.logRequest(request, LOGGER_PROVIDER, "Sending request to refresh access token"); 
 response = request.execute(); 
 LoggingUtils.logResponse( 
     response, LOGGER_PROVIDER, "Received response for refresh access token");

vverman avatar Oct 14 '25 22:10 vverman