Skip to content

Commit

Permalink
Reduce log level to TRACE for full request/response logging. (openhab…
Browse files Browse the repository at this point in the history
…#11782)

Fixes openhab#11781

Signed-off-by: Jacob Laursen <[email protected]>
  • Loading branch information
jlaur authored and Nemer_Daud committed Jan 28, 2022
1 parent a6893cf commit e3ac294
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ protected JsonElement invokeRPC(String methodName, Object[] args) {
}

if (responseData != null) {
logger.debug("The request '{}' yields '{}'", requestData, responseData);
logger.trace("The request '{}' yields '{}'", requestData, responseData);
JsonObject resp = (JsonObject) JsonParser.parseReader(new StringReader(responseData));

result = resp.get("result");
Expand Down

0 comments on commit e3ac294

Please sign in to comment.