Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
nylonee committed Nov 13, 2023
1 parent ec9014a commit 6a68655
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/scala/utils/HttpClient.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class HttpClient {
val requestWithApiKey = apiKey.fold(baseRequest)(key => baseRequest.withHeaders(Header.Raw(CIString("X-Api-Key"), key)))
val requestWithPayload = payload.fold(requestWithApiKey)(p => requestWithApiKey.withEntity(p))

logger.warn(s"Current thread: ${Thread.currentThread()}")
clientResource.use(_.expect[Json](requestWithPayload).attempt)
}
}

0 comments on commit 6a68655

Please sign in to comment.