Skip to content

Commit

Permalink
Print the content of filelist_skyline.txt to log.
Browse files Browse the repository at this point in the history
  • Loading branch information
fcyu committed Oct 11, 2024
1 parent efd169d commit 56ca8c3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,10 @@ private static void runSkyline(String skylinePath, Path wd, String skylineVersio
Process skylineProcess = null;
try {
System.out.println("Running command: " + String.join(" ", cmd));

System.out.println("Content of " + pp.toAbsolutePath() + ":");
System.out.println(new String(Files.readAllBytes(pp)));

ProcessBuilder pb = new ProcessBuilder(cmd);
ProcessBuilderInfo pbi = new PbiBuilder().setPb(pb).setName(pb.toString()).setFnStdOut(null).setFnStdErr(null).setParallelGroup(null).create();
ProcessResult pr = new ProcessResult(pbi);
Expand Down

0 comments on commit 56ca8c3

Please sign in to comment.