Don't use the word "trace" in log messages
This commit is contained in:
parent
acacf9bbd5
commit
4d8912d269
4 changed files with 6 additions and 6 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
name: 'CodeQL: Init'
|
name: 'CodeQL: Init'
|
||||||
description: 'Setup the CodeQL tracer'
|
description: 'Setup CodeQL'
|
||||||
author: 'GitHub'
|
author: 'GitHub'
|
||||||
inputs:
|
inputs:
|
||||||
tools:
|
tools:
|
||||||
|
|
|
||||||
4
lib/runner.js
generated
4
lib/runner.js
generated
|
|
@ -133,7 +133,7 @@ program
|
||||||
.join("\n");
|
.join("\n");
|
||||||
fs.writeFileSync(powershellEnvFile, powershellEnvFileContents);
|
fs.writeFileSync(powershellEnvFile, powershellEnvFileContents);
|
||||||
logger.info(`\nCodeQL environment output to "${jsonEnvFile}", "${batEnvFile}" and "${powershellEnvFile}". ` +
|
logger.info(`\nCodeQL environment output to "${jsonEnvFile}", "${batEnvFile}" and "${powershellEnvFile}". ` +
|
||||||
`Please export these variables to future processes so the build can be traced. ` +
|
`Please export these variables to future processes so the build can be monitored by CodeQL. ` +
|
||||||
`If using cmd/batch run "call ${batEnvFile}" ` +
|
`If using cmd/batch run "call ${batEnvFile}" ` +
|
||||||
`or if using PowerShell run "cat ${powershellEnvFile} | Invoke-Expression".`);
|
`or if using PowerShell run "cat ${powershellEnvFile} | Invoke-Expression".`);
|
||||||
}
|
}
|
||||||
|
|
@ -146,7 +146,7 @@ program
|
||||||
.join("\n");
|
.join("\n");
|
||||||
fs.writeFileSync(shEnvFile, shEnvFileContents);
|
fs.writeFileSync(shEnvFile, shEnvFileContents);
|
||||||
logger.info(`\nCodeQL environment output to "${jsonEnvFile}" and "${shEnvFile}". ` +
|
logger.info(`\nCodeQL environment output to "${jsonEnvFile}" and "${shEnvFile}". ` +
|
||||||
`Please export these variables to future processes so the build can be traced, ` +
|
`Please export these variables to future processes so the build can be monitored by CodeQL, ` +
|
||||||
`for example by running ". ${shEnvFile}".`);
|
`for example by running ". ${shEnvFile}".`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -210,7 +210,7 @@ program
|
||||||
|
|
||||||
logger.info(
|
logger.info(
|
||||||
`\nCodeQL environment output to "${jsonEnvFile}", "${batEnvFile}" and "${powershellEnvFile}". ` +
|
`\nCodeQL environment output to "${jsonEnvFile}", "${batEnvFile}" and "${powershellEnvFile}". ` +
|
||||||
`Please export these variables to future processes so the build can be traced. ` +
|
`Please export these variables to future processes so the build can be monitored by CodeQL. ` +
|
||||||
`If using cmd/batch run "call ${batEnvFile}" ` +
|
`If using cmd/batch run "call ${batEnvFile}" ` +
|
||||||
`or if using PowerShell run "cat ${powershellEnvFile} | Invoke-Expression".`
|
`or if using PowerShell run "cat ${powershellEnvFile} | Invoke-Expression".`
|
||||||
);
|
);
|
||||||
|
|
@ -227,7 +227,7 @@ program
|
||||||
|
|
||||||
logger.info(
|
logger.info(
|
||||||
`\nCodeQL environment output to "${jsonEnvFile}" and "${shEnvFile}". ` +
|
`\nCodeQL environment output to "${jsonEnvFile}" and "${shEnvFile}". ` +
|
||||||
`Please export these variables to future processes so the build can be traced, ` +
|
`Please export these variables to future processes so the build can be monitored by CodeQL, ` +
|
||||||
`for example by running ". ${shEnvFile}".`
|
`for example by running ". ${shEnvFile}".`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue