Skip to content

Commit

Permalink
Add logs info
Browse files Browse the repository at this point in the history
  • Loading branch information
agusaldasoro committed Jan 17, 2025
1 parent 81672ee commit 5879985
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Optional<Map<String, SMTLibValue>> solveFromFile(String fileName) {
// Execute the Z3 solver on the specified file in the container
Container.ExecResult result = z3Prover.execInContainer("z3", containerPath + fileName);
if (result.getExitCode() != 0) {
throw new RuntimeException("Error executing Z3 solver" + result.getStdout());
throw new RuntimeException("Error executing Z3 solver: \n" + result.getStdout() + "\n" + result.getStderr());
}
String stdout = result.getStdout();

Expand Down

0 comments on commit 5879985

Please sign in to comment.