Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #105 from launchdarkly/eb/ch19880/log-level
Browse files Browse the repository at this point in the history
log stream errors as WARN, not ERROR
  • Loading branch information
eli-darkly authored Nov 22, 2018
2 parents 42f4329 + 279a6b7 commit 3668c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/launchdarkly/client/StreamProcessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public void onComment(String comment) {

@Override
public void onError(Throwable throwable) {
logger.error("Encountered EventSource error: {}" + throwable.toString());
logger.warn("Encountered EventSource error: {}", throwable.toString());
logger.debug(throwable.toString(), throwable);
}
};
Expand Down

0 comments on commit 3668c38

Please sign in to comment.