[CP] fixed(logservice): log reduction

This commit is contained in:
HaHaJeff
2023-01-06 08:08:15 +00:00
committed by ob-robot
parent c147ef1881
commit 59da858773
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ int ObLogHandlerBase::prepare_switch_role(common::ObRole &curr_role,
} else {
curr_role = role_;
curr_proposal_id = proposal_id_;
PALF_LOG(INFO, "prepare_switch_role success", K(ret), K_(id), K(curr_role), K(curr_proposal_id),
PALF_LOG(TRACE, "prepare_switch_role success", K(ret), K_(id), K(curr_role), K(curr_proposal_id),
K(new_role), K(new_proposal_id));
}
return ret;

View File

@ -3525,7 +3525,7 @@ int PalfHandleImpl::stat(PalfStat &palf_stat)
palf_stat.end_scn_ = get_end_scn();
palf_stat.max_lsn_ = get_max_lsn();
palf_stat.max_scn_ = get_max_scn();
PALF_LOG(INFO, "PalfHandleImpl stat", K(palf_stat));
PALF_LOG(TRACE, "PalfHandleImpl stat", K(palf_stat));
}
return ret;
}