From ab39f6e98928cb0d2e88322b64b54037a6aa1d62 Mon Sep 17 00:00:00 2001 From: Sanketh Nalli Date: Tue, 10 Oct 2023 16:27:10 -0700 Subject: [PATCH] change to trace --- .../src/main/java/com/github/ambry/cloud/CloudRequestAgent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ambry-cloud/src/main/java/com/github/ambry/cloud/CloudRequestAgent.java b/ambry-cloud/src/main/java/com/github/ambry/cloud/CloudRequestAgent.java index 18f83d1fb0..1eb0548543 100644 --- a/ambry-cloud/src/main/java/com/github/ambry/cloud/CloudRequestAgent.java +++ b/ambry-cloud/src/main/java/com/github/ambry/cloud/CloudRequestAgent.java @@ -87,7 +87,7 @@ private void throwOrDelay(Throwable e, String actionName, String partitionPath, } else { // Either not retryable or exhausted attempts. // Not very useful to log error here as they are printed in several other places - logger.debug("{} failed partition {} statusCode {} cause {} made {} attempts.", actionName, partitionPath, + logger.trace("{} failed partition {} statusCode {} cause {} made {} attempts.", actionName, partitionPath, statusCode, cause, attempts); throw cse; }