Skip to content

Commit

Permalink
removed sys-out
Browse files Browse the repository at this point in the history
  • Loading branch information
dvayanu committed Dec 6, 2023
1 parent f252587 commit 53ccf86
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ public ConnectorThresholdsResponse provideThresholds(Component component) {

ConnectorThresholdsResponse response = null;
try {
System.out.println("REQUESTING RESPONSE FOR THRESHOLDS: ");
response = connector.getThresholds();
System.out.println("RECEIVED RESPONSE FOR THRESHOLDS: "+response);
System.out.println("thresholds: "+response.getItems());
ConnectorStatusResponse newStatus = connector.getNewStatus();
component.setStatus(newStatus.getStatus());
} catch (ConnectorException e) {
Expand All @@ -72,7 +69,6 @@ public ConnectorAccumulatorsNamesResponse provideAccumulatorsNames(Component com
ConnectorAccumulatorsNamesResponse response = null;
try {
response = connector.getAccumulatorsNames();
System.out.println("Accumulators names: "+response.getNames());
} catch (IOException e) {
e.printStackTrace();
log.error("Cannot retrieve accumulators list for " + component.getName(), e);
Expand Down

0 comments on commit 53ccf86

Please sign in to comment.