$p1+\frac1{s1}$

The second tern in the first logarithm can be reformulated to match How to make the following concave function to fit cvx? - #2 by Mark_L_Stone , which allows that first log to be entered in CVX. The 2nd log term is convex due to the minus sign in front of the log; therefore, that would be the term which you would have to handle in some other way, such as by linearizing.

As for linearizing:
Unsafeguarded (no line search or trust region)Successive Convex Approximation (SCA) is unreliable. It might not descend (for minimization problem), i.e., iterates could get worse. It might not converge to anything; and if it does converge, it might not be to a local optimum of the original problem, let alone a global optimum. The solution of successive iterations, and therefore subproblem inputs, can become wilder and wilder, until at some point the solver fails, or makes erroneous determination of infeasibility or unboundedness.

https://twitter.com/themarklstone/status/1586795881168265216

Don’t apply crude, unsafeguarded (no Trust Region or Line Search) Successive Convex Approximation (SCA) to a new problem … unless your name happens to be Stephen Boyd.

There’s a reason high quality non-convex nonlinear optimization solvers are more than 10 lines long.