Skip to content

Commit

Permalink
added echo for response data
Browse files Browse the repository at this point in the history
  • Loading branch information
annaibm committed Jul 5, 2024
1 parent 7021053 commit dfc210e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/org/testKitGen/TestDivider.java
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ private Map<String, Integer> getDataFromTRSS() {
responseBuilder.append(line);
}
String responseData = responseBuilder.toString();
System.out.println("Response Data: " + responseData);
if (!responseData.isEmpty()) {
try (Reader stringReader = new StringReader(responseData)) {
parseDuration(stringReader, map);
Expand Down

0 comments on commit dfc210e

Please sign in to comment.