Skip to content

Commit

Permalink
Don't suppress the (expected) bs_29 error from our stderr display
Browse files Browse the repository at this point in the history
  • Loading branch information
rooklift committed Jul 19, 2024
1 parent 0f161b0 commit 0c4b077
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/modules/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,7 @@ class Engine {
return;
}
log("! " + line);
if (!line.includes("test_bs29")) { // These errors are expected.
stderrbox.receive(line);
}
stderrbox.receive(line);
if (line.includes("Beginning GPU tuning") || line.includes("Creating new timing cache")) {
this.tuning_in_progress = true;
stderrbox.show();
Expand Down

0 comments on commit 0c4b077

Please sign in to comment.