Skip to content

Commit

Permalink
Better logging output
Browse files Browse the repository at this point in the history
  • Loading branch information
gbc921 committed Dec 26, 2018
1 parent 69fd67c commit 137c76e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Double extractJSONPathValue(String jsonBody, String jsonPathExpression, Map<Stri
throw new RestMonitorConfigurationException("json response was empty!");
}
if (!jsonPath.isDefinite()){
log.fine("jsonPath Is Indefinite");
log.fine("jsonPath Is Indefinite! We will try to get only 1st value available");
List<Object> objList = jsonPath.read(jsonBody);
log.finer("object list" + objList.toString());
//workaround to get only one value to not deal with this now
Expand Down

0 comments on commit 137c76e

Please sign in to comment.