Added some logs for real event endpoint and JSON payload

This commit is contained in:
Mauro Mugnaini 2020-06-25 12:39:11 +02:00
parent 9b888a796b
commit 53b46a72a1
1 changed files with 4 additions and 4 deletions

View File

@ -59,11 +59,11 @@ public class HTTPEventSender implements EventSender {
public void run() {
try {
if (log.isDebugEnabled()) {
log.debug("Getting token for client: " + clientId);
log.debug("Getting OIDC token for client: " + clientId);
}
JWTToken token = OpenIdConnectRESTHelper.queryClientToken(clientId, clientSecret, tokenURL);
if (log.isTraceEnabled()) {
log.trace("Performing HTTP POST");
if (log.isDebugEnabled()) {
log.debug("Performing HTTP POST to: " + endpoint);
}
HttpURLConnection connection = (HttpURLConnection) endpoint.openConnection();
connection.setConnectTimeout(CONNECTION_TIMEOUT);
@ -82,7 +82,7 @@ public class HTTPEventSender implements EventSender {
connection.setRequestProperty("Authorization", token.getAsBearer());
OutputStream os = connection.getOutputStream();
if (log.isTraceEnabled()) {
log.trace("Sending event JSON");
log.trace("Sending event JSON: " + jsonString);
}
os.write(jsonString.getBytes("UTF-8"));
os.close();