CPLEX prints out nice node logs, how can I get them using docplex? I've tried changing content.solver.verbose and log_output but I'm not getting the information (current solution, gap) to print.
I'm using this code:
context.solver.log_output = True
context.solver.verbose = 5
mdl = CpoModel()
mdl.solve()
With verbose = 5, all of the branch decisions are printed (lots of junk) With verbose = 4, the gap is not printed