Skip to content

Commit 4bd9659

Browse files
committed
tidy
1 parent c9ace8a commit 4bd9659

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

dist/index.js

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/grading/builders/Builder.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ export abstract class Builder {
8383
}
8484
const returnCode = code ?? 1
8585
myOutput += myError
86-
logger.log('hidden', `${myOutput}`)
86+
if (!this.logger.isVerboseDebug) {
87+
//Don't print the output if we're not in verbose debug mode, we already printed it line-by-line!
88+
logger.log('hidden', `${myOutput}`)
89+
}
8790
logger.log('hidden', `Return code: ${returnCode}`)
8891

8992
if (returnCode === 143) {

0 commit comments

Comments
 (0)