Skip to content

Commit

Permalink
changing the trace logger from info to trace (#989)
Browse files Browse the repository at this point in the history
* changing the trace logger from info to trace

* updating CHANGES.md

* addressing review comments
  • Loading branch information
suryasoma authored Jun 5, 2023
1 parent 50d62dc commit a783c1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Next

* Issue #988: Read statistics are logged at TRACE level. Update the log4j configuration accordingly in order to log them.

## 0.31.0 - 2023-06-01

* :warning: **Breaking Change** BigNumeric conversion has changed, and it is now converted to Spark's
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private void logData() {
jsonObject.addProperty("Bytes", bytes);
jsonObject.addProperty("Rows", rows);
jsonObject.addProperty("I/O time", serviceTime.getAccumulatedTime().toMillis());
log.info("Tracer Logs:{}", new Gson().toJson(jsonObject));
log.trace("Tracer Logs:{}", new Gson().toJson(jsonObject));
linesLogged++;
}

Expand Down

0 comments on commit a783c1c

Please sign in to comment.