HBASE-20794 add INFO level log to createTable operation

This commit is contained in:
Xu Cang 2018-07-23 14:18:32 -07:00 committed by Michael Stack
parent 1b28903b7b
commit e7b56c3fa8
1 changed files with 2 additions and 0 deletions

View File

@ -611,6 +611,8 @@ public class MasterRpcServices extends RSRpcServices
try {
long procId =
master.createTable(tableDescriptor, splitKeys, req.getNonceGroup(), req.getNonce());
LOG.info(master.getClientIdAuditPrefix() + " procedure request for creating table: " +
req.getTableSchema().getTableName() + " procId is: " + procId);
return CreateTableResponse.newBuilder().setProcId(procId).build();
} catch (IOException ioe) {
throw new ServiceException(ioe);