Skip to content

Commit

Permalink
Maybe get some info out of it
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Dec 26, 2024
1 parent 953f880 commit 08fa3d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public void startCapture() {
}

process.waitFor();
LOGGER.info("tracy-capture finished with exit code {}", process.exitValue());
LOGGER.info(new String(process.getInputStream().readAllBytes()));
System.out.println("tracy-capture finished with exit code %s".formatted(process.exitValue()));
System.out.println(new String(process.getInputStream().readAllBytes()));
} catch (InterruptedException e) {
LOGGER.error("tracy-capture was interrupted", e);
} catch (IOException e) {
Expand Down

0 comments on commit 08fa3d4

Please sign in to comment.