This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch 2.0
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.0 by this push:
     new a1a573b  Log per tserver contact times at trace in Master (#1283)
a1a573b is described below

commit a1a573b18469ed64d03fbbafbccdc1359bbb5971
Author: Keith Turner <ktur...@apache.org>
AuthorDate: Mon Jul 22 16:39:14 2019 -0400

    Log per tserver contact times at trace in Master (#1283)
---
 server/master/src/main/java/org/apache/accumulo/master/Master.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/master/src/main/java/org/apache/accumulo/master/Master.java 
b/server/master/src/main/java/org/apache/accumulo/master/Master.java
index b5921d6..bb160ef 100644
--- a/server/master/src/main/java/org/apache/accumulo/master/Master.java
+++ b/server/master/src/main/java/org/apache/accumulo/master/Master.java
@@ -914,7 +914,7 @@ public class Master extends AbstractServer
             String message = "Getting status from " + server;
             t.setName(message);
             long startForServer = System.currentTimeMillis();
-            log.debug(message);
+            log.trace(message);
             TServerConnection connection1 = tserverSet.getConnection(server);
             if (connection1 == null) {
               throw new IOException("No connection to " + server);
@@ -923,7 +923,7 @@ public class Master extends AbstractServer
             result.put(server, status);
 
             long duration = System.currentTimeMillis() - startForServer;
-            log.debug("Got status from {} in {} ms", server, duration);
+            log.trace("Got status from {} in {} ms", server, duration);
 
           } finally {
             t.setName(oldName);

Reply via email to