HBASE-20794 add INFO level log to createTable operation
This commit is contained in:
parent
1b28903b7b
commit
e7b56c3fa8
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue