summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-04-24 20:51:57 +0200
committergjoranv <gv@verizonmedia.com>2020-04-25 02:24:38 +0200
commitd588f01d40105a13129b8e007a7f65231a6e1ca5 (patch)
treeb7e3eb52aab55a9849d300debb9c5daf93d29d32 /vespaclient-container-plugin
parent09b3ac7d50ba91f801a9d7cbd719a3cbf403932c (diff)
Map remaining DEBUG/SPAM/ERROR/FATAL -> Level.FINE/FINEST/SEVERE
Diffstat (limited to 'vespaclient-container-plugin')
-rw-r--r--vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientFeederV3.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientFeederV3.java b/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientFeederV3.java
index eccafc92c34..2c06c4a296a 100644
--- a/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientFeederV3.java
+++ b/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientFeederV3.java
@@ -246,7 +246,7 @@ class ClientFeederV3 {
if (result.isAccepted()) {
outstandingOperations.incrementAndGet();
updateOpsPerSec();
- log(LogLevel.DEBUG, "Sent message successfully, document id: ", msg.get().getOperationId());
+ log(Level.FINE, "Sent message successfully, document id: ", msg.get().getOperationId());
} else if (!result.getError().isFatal()) {
repliesFromOldMessages.add(createOperationStatus(msg.get().getOperationId(),
result.getError().getMessage(),
@@ -297,7 +297,7 @@ class ClientFeederV3 {
return null;
}
metric.add(MetricNames.NUM_OPERATIONS, 1, null /*metricContext*/);
- log(LogLevel.DEBUG, "Successfully deserialized document id: ", message.getOperationId());
+ log(Level.FINE, "Successfully deserialized document id: ", message.getOperationId());
return message;
}