Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ public List<ServerComponentHealth> getResponses(String componentType, String com
if (!errorMessage.isEmpty()) {
errorResponses.put(hostName, errorMessage);
} else {
String message = "Received REST response from the host: " + dmsUri + " with status: " + response.getStatus();
LOG.info(message);
LOG.info("Received REST response from the host: " + dmsUri);
Copy link
Collaborator

@vmaheshw vmaheshw Nov 10, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please add another log in debug mode printing the response, in case we need to enable and verify it?

responses.put(hostName, response.getStatus());
}
}
Expand Down