Skip to content

Commit

Permalink
Fixed buggy stderr outpu
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Jul 31, 2024
1 parent c31f21d commit 267d58c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/jcstress/Generate.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,10 @@ private static void setAndPrintSetup() {
if (getCoresForPlaylist() == DEFAULT_CORES) {
System.err.println("Cores limit stays on default (" + DEFAULT_CORES + "). 0 is all.");
} else {
System.err.println("Cores for final playlist are " + getCoresForPlaylist() + ". Intentional?");
System.err.println("Cores for final playlist are " + getCoresForPlaylist() + ". Intentional? 0 is All.");
}
if (isTimeBudgetSet()) {
System.err.println("Time budget is " + getCoresForPlaylist() + ". Intentional?");
System.err.println("Time budget is " + isTimeBudgetSet() + ". Intentional?");
} else {
System.err.println("Time budget is not used. Intentional?");
}
Expand Down

0 comments on commit 267d58c

Please sign in to comment.