Skip to content

Commit 79efd4b

Browse files
committed
Revert "check properties"
This reverts commit b137cb7.
1 parent b137cb7 commit 79efd4b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/com/topcoder/onlinereview/component/jwt/JWTTokenGenerator.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,6 @@ private String getMachineToken(String clientId, String clientSecret, String audi
118118
postMap.put("grant_type", "client_credentials");
119119
postMap.put("audience", audience);
120120
postMap.put("auth0_url", auth0Url);
121-
LOGGER.info(auth0Url);
122-
LOGGER.info(authServerUrl);
123-
LOGGER.info(auth0ProxyServerUrl);
124-
LOGGER.info(target.getUri().toString());
125121
Response response = target.request(new String[]{"application/json"}).post(Entity.json(postMap));
126122
if (response.getStatusInfo().getStatusCode() != 200) {
127123
LOGGER.error("Unable to get token: {}", response);

0 commit comments

Comments
 (0)