delete useless trace log in sql module

This commit is contained in:
dimstars
2023-04-13 06:17:57 +00:00
committed by ob-robot
parent 952e5eaa68
commit c7f5f409a1
5 changed files with 0 additions and 23 deletions

View File

@ -185,12 +185,10 @@ int ObDASSyncAccessP::process()
{
int ret = OB_SUCCESS;
LOG_DEBUG("DAS sync access remote process", K_(arg));
NG_TRACE(das_sync_rpc_process_begin);
FLTSpanGuard(das_sync_rpc_process);
if (OB_FAIL(ObDASSyncRpcProcessor::process())) {
LOG_WARN("failed to process das sync rpc", K(ret));
}
NG_TRACE(das_sync_rpc_process_end);
return OB_SUCCESS;
}
@ -198,12 +196,10 @@ int ObDASAsyncAccessP::process()
{
int ret = OB_SUCCESS;
LOG_DEBUG("DAS async access remote process", K_(arg));
NG_TRACE(das_async_rpc_process_begin);
FLTSpanGuard(das_async_rpc_process);
if (OB_FAIL(ObDASAsyncRpcProcessor::process())) {
LOG_WARN("failed to process das async rpc", K(ret));
}
NG_TRACE(das_async_rpc_process_end);
return OB_SUCCESS;
}
@ -269,7 +265,6 @@ int ObDasAsyncRpcCallBackContext::init(const ObMemAttr &attr)
int ObDASSyncFetchP::process()
{
int ret = OB_SUCCESS;
NG_TRACE(fetch_das_result_process_begin);
FLTSpanGuard(fetch_das_result_process);
ObDASDataFetchReq &req = arg_;
ObDASDataFetchRes &res = result_;
@ -300,7 +295,6 @@ int ObDASSyncFetchP::process()
} else {
res.set_has_more(has_more);
}
NG_TRACE(fetch_das_result_process_end);
return ret;
}