Skip to content

Commit

Permalink
Refactor log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
shafreenAnfar committed Sep 15, 2023
1 parent 8eed67b commit b50b653
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public HttpResponseFuture send(OutboundMsgHolder outboundMsgHolder, HttpCarbonMe
public void onSuccess(String protocol, ChannelFuture channelFuture) {
if (LOG.isDebugEnabled()) {
LOG.debug("Created the connection to address: {}",
route.toString() + " " + "Original Channel ID is : " + channelFuture.channel().id());
route + " Original Channel ID is : " + channelFuture.channel().id());

Check warning on line 211 in native/src/main/java/io/ballerina/stdlib/http/transport/contractimpl/DefaultHttpClientConnector.java

View check run for this annotation

Codecov / codecov/patch

native/src/main/java/io/ballerina/stdlib/http/transport/contractimpl/DefaultHttpClientConnector.java#L211

Added line #L211 was not covered by tests
}

if (isH1c(protocol)) {
Expand Down

0 comments on commit b50b653

Please sign in to comment.