Skip to content

Commit

Permalink
log unexpected types at level warn
Browse files Browse the repository at this point in the history
  • Loading branch information
bryce-anderson committed Jan 4, 2025
1 parent 7a51338 commit d5b8c3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ private static StreamingHttpResponse extractStreamingResponse(Throwable t) {
if (responseException.metaData() instanceof StreamingHttpResponse) {
return (StreamingHttpResponse) responseException.metaData();
} else {
LOGGER.info("Couldn't unpack response due to unexpected dynamic types. Required " +
LOGGER.warn("Couldn't unpack response due to unexpected dynamic types. Required " +
"meta-data of type StreamingHttpResponse, found {}",
responseException.metaData().getClass());
}
Expand Down

0 comments on commit d5b8c3d

Please sign in to comment.