how to change TransformView abount OnPhotonSerializeView Time

Options
//PhotonTransformView.cs
public void OnPhotonSerializeView(PhotonStream stream, PhotonMessageInfo info)
{
if (stream.IsWriting)
{
}
else
{
if (PhotonNetwork.IsMasterClient)
{
Debug.Log("master Send" + PhotonNetwork.Time);
}


}
}

Console Result:
master Send3484198.636
master Send3484198.731

The interval time is 0.1s, I want to make it 0.03s . thank you
I start application for LoadBalancing(MyCloud)