Skip to content

Commit

Permalink
[FLINK-8652] [QS] Reduce log level in getKvState to DEBUG.
Browse files Browse the repository at this point in the history
This closes apache#5489.
  • Loading branch information
fhueske committed Feb 14, 2018
1 parent a4442f8 commit f270dec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ private CompletableFuture<KvStateResponse> getKvState(
final String queryableStateName,
final int keyHashCode,
final byte[] serializedKeyAndNamespace) {
LOG.info("Sending State Request to {}.", remoteAddress);
LOG.debug("Sending State Request to {}.", remoteAddress);
try {
KvStateRequest request = new KvStateRequest(jobId, queryableStateName, keyHashCode, serializedKeyAndNamespace);
return client.sendRequest(remoteAddress, request);
Expand Down

0 comments on commit f270dec

Please sign in to comment.