Skip to content

Commit

Permalink
change the log level to debug from info
Browse files Browse the repository at this point in the history
to prevent noise
  • Loading branch information
muatik committed Jun 13, 2024
1 parent c50025e commit 645398f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private suspend fun interceptRequest(
pluginConfig: PluginConfiguration,
responseRepository: IdempotentResponseRepository,
) {
logger.info { "Intercepting request: ${call.request.httpMethod} ${call.request.uri}" }
logger.debug { "Intercepting request: ${call.request.httpMethod} ${call.request.uri}" }
call.attributes.put(PluginConfiguration.attributeKey, false)
if (call.request.httpMethod !in pluginConfig.idempotentHttpMethods) {
return
Expand Down

0 comments on commit 645398f

Please sign in to comment.