Skip to content

Commit

Permalink
Remove extra bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
pritchyspritch committed Aug 6, 2024
1 parent 2e6519c commit 308168f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlin_template.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fun authenticate(
msg.requestHeader = HttpRequestHeader(HttpRequestHeader.GET, URI(paramsValues[PARAM_TARGET_URL], true),
HttpHeader.HTTP11)
println("msg: $msg ${msg.requestHeader.headers.size}")
logger.info("msg: $msg ${msg.requestHeader.headers.size}"))
logger.info("msg: $msg ${msg.requestHeader.headers.size}")
msg.requestHeader.headers.forEach { println(it) }
msg.requestHeader.headers.forEach { logger.info(it) }
helper.sendAndReceive(msg)
Expand Down

0 comments on commit 308168f

Please sign in to comment.