Skip to content

Commit

Permalink
[FFM-10136] - Drop SSE event log down from INFO to DEBUG (#170)
Browse files Browse the repository at this point in the history
What
Change SSE event log from INFO to DEBUG

Why
Remove excessive logging at INFO level

Testing
Manual
  • Loading branch information
andybharness authored Nov 28, 2023
1 parent db0661f commit 9b6f6d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public void onResponse(@NotNull Call call, @NotNull Response response) throws IO

String line;
while ((line = reader.readUtf8Line()) != null) {
log.info("SSE stream data: {}", line);
log.debug("SSE stream data: {}", line);

if (line.startsWith("data:")) {
Message msg = gson.fromJson(line.substring(6), Message.class);
Expand Down

0 comments on commit 9b6f6d5

Please sign in to comment.