Skip to content

Commit ba76875

Browse files
committed
Increase window of stdout logged to GitHub errors
1 parent 404809b commit ba76875

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/store/Run.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2309,7 +2309,7 @@ Results saved to: ${this.outputDir}
23092309
this.useMultifurcatingConstraint = !this.useMultifurcatingConstraint;
23102310
};
23112311

2312-
generateReport = ({ maxStdoutLength = 200 } = {}) => {
2312+
generateReport = ({ maxStdoutLength = 1000 } = {}) => {
23132313
const { command, stdout } = this;
23142314
return {
23152315
command,

src/app/store/RunList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class RunList extends AppStore {
8787
);
8888
};
8989

90-
generateReport = ({ maxStdoutLength = 200 } = {}) => {
90+
generateReport = ({ maxStdoutLength = 1000 } = {}) => {
9191
return this.activeRun.generateReport({ maxStdoutLength });
9292
};
9393
}

0 commit comments

Comments
 (0)