Skip to content

Commit 9b6f6d5

Browse files
authored
[FFM-10136] - Drop SSE event log down from INFO to DEBUG (#170)
What Change SSE event log from INFO to DEBUG Why Remove excessive logging at INFO level Testing Manual
1 parent db0661f commit 9b6f6d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/harness/cf/client/connector/EventSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public void onResponse(@NotNull Call call, @NotNull Response response) throws IO
179179

180180
String line;
181181
while ((line = reader.readUtf8Line()) != null) {
182-
log.info("SSE stream data: {}", line);
182+
log.debug("SSE stream data: {}", line);
183183

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

0 commit comments

Comments
 (0)