[IPKI] log WARNING --> INFO on CA info generation

Changed log level from WARNING to INFO on the event new Certificate
Authority info generation by CatalogManager.

Change-Id: I47b27f1e6630c92956898e64043038574d803c15
Reviewed-on: http://gerrit.cloudera.org:8080/6123
Reviewed-by: Todd Lipcon <[email protected]>
Tested-by: Alexey Serbin <[email protected]>


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

Branch: refs/heads/master
Commit: ae5ed629a5bd5fc2240d9fd6403c02435e901148
Parents: 38df0f1
Author: Alexey Serbin <[email protected]>
Authored: Wed Feb 22 19:49:40 2017 -0800
Committer: Alexey Serbin <[email protected]>
Committed: Thu Feb 23 04:57:48 2017 +0000

----------------------------------------------------------------------
 src/kudu/master/catalog_manager.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/ae5ed629/src/kudu/master/catalog_manager.cc
----------------------------------------------------------------------
diff --git a/src/kudu/master/catalog_manager.cc 
b/src/kudu/master/catalog_manager.cc
index 9140b52..a35be9b 100644
--- a/src/kudu/master/catalog_manager.cc
+++ b/src/kudu/master/catalog_manager.cc
@@ -858,8 +858,8 @@ void CatalogManager::VisitTablesAndTabletsTask() {
         // the leader master should not be run without CA certificate.
         CHECK_OK(InitCertAuthority(std::move(key), std::move(cert)));
       } else if (s.IsNotFound()) {
-        LOG(WARNING) << "Did not find CA certificate and key for Kudu IPKI, "
-                        "will generate new ones";
+        LOG(INFO) << "Did not find CA certificate and key for Kudu IPKI, "
+                     "will generate new ones";
         // No CA information record has been found in the table -- generate
         // a new one. The subtlety here is that first it's necessary to store
         // the newly generated information into the system table and only after

Reply via email to