Skip to content

Commit 2ab4ee8

Browse files
committed
Print the output so I can figure out what's going on
1 parent 31b6143 commit 2ab4ee8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyomo/contrib/solver/solvers/ipopt.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,9 @@ def _parse_ipopt_output(self, output: Union[str, io.StringIO]) -> Dict[str, Any]
621621
if isinstance(output, io.StringIO):
622622
output = output.getvalue()
623623

624+
print("************* Raw output:\n")
625+
print(output)
626+
624627
# Stop parsing if there is nothing to parse
625628
if not output:
626629
logger.log(

0 commit comments

Comments
 (0)