How can I prevent CVX to print the detailed information?

there is a 20-year long stock time series, since I have to use cvx to solve the optimization problem every month, how can I prevent cvx to print detailed information?

cvx_begin quiet
Prevents the model from producing any screen output while it is being solved.

thanks a lot, it works!