You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by da...@apache.org on 2017/05/18 15:57:36 UTC

[4/5] kudu git commit: [c++ client] less logging about authn token

[c++ client] less logging about authn token

LOG(INFO) --> VLOG(2) on receiving and adopting authn token by
the Kudu C++ client.

Change-Id: I13693bc89e528eb4dfdd0e85d6d5b8faac8edadf
Reviewed-on: http://gerrit.cloudera.org:8080/6914
Tested-by: Kudu Jenkins
Reviewed-by: Todd Lipcon <to...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/36debad5
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/36debad5
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/36debad5

Branch: refs/heads/master
Commit: 36debad5fcbd6be3ab82c33e6cda1f7f349c643f
Parents: 352c0e3
Author: Alexey Serbin <as...@cloudera.com>
Authored: Wed May 17 16:37:00 2017 -0700
Committer: Todd Lipcon <to...@apache.org>
Committed: Thu May 18 05:16:39 2017 +0000

----------------------------------------------------------------------
 src/kudu/client/client-internal.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/36debad5/src/kudu/client/client-internal.cc
----------------------------------------------------------------------
diff --git a/src/kudu/client/client-internal.cc b/src/kudu/client/client-internal.cc
index 30723d2..6a61adc 100644
--- a/src/kudu/client/client-internal.cc
+++ b/src/kudu/client/client-internal.cc
@@ -654,7 +654,7 @@ void KuduClient::Data::ConnectedToClusterCb(
   // Adopt the authentication token from the response, if it's been set.
   if (connect_response.has_authn_token()) {
     messenger_->set_authn_token(connect_response.authn_token());
-    LOG(INFO) << "Received and adopted authn token";
+    VLOG(2) << "Received and adopted authn token";
   }
 
   vector<StatusCallback> cbs;