Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bmm diag reduce logs #780

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
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