summaryrefslogtreecommitdiffstats
path: root/config-proxy
diff options
context:
space:
mode:
authorHarald Musum <musum@yahoo-inc.com>2016-08-09 09:29:15 +0200
committerHarald Musum <musum@yahoo-inc.com>2016-08-09 09:29:15 +0200
commitd4d47a0e40c58b784f3262cde54451704e0cc618 (patch)
tree280e3712b85ddffcc7f42914da9a0932fd1a4b44 /config-proxy
parentbd74a1d130a5a5352661fb6e0db29b64219fb17b (diff)
Remove redundant logging
* Logging of the same info is done in returnOkResponse()
Diffstat (limited to 'config-proxy')
-rw-r--r--config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServer.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServer.java b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServer.java
index 588c0f7a0b7..7104ed5a24b 100644
--- a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServer.java
+++ b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServer.java
@@ -160,9 +160,6 @@ public class ConfigProxyRpcServer implements Runnable, TargetWatcher, RpcServer
log.log(LogLevel.DEBUG, "No config received yet for " + request.getShortDescription() + ",not sending response");
}
} else if (ProxyServer.configOrGenerationHasChanged(config, request)) {
- if (log.isLoggable(LogLevel.DEBUG)) {
- log.log(LogLevel.DEBUG, "Should send response for " + request.getShortDescription() + ",config=" + config);
- }
returnOkResponse(request, config);
} else {
if (log.isLoggable(LogLevel.DEBUG)) {