Don't use the word "trace" in log messages

This commit is contained in:
Robert
2020-11-13 12:01:07 +00:00
parent acacf9bbd5
commit 4d8912d269
4 changed files with 6 additions and 6 deletions

View File

@@ -210,7 +210,7 @@ program
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}" ` +
`or if using PowerShell run "cat ${powershellEnvFile} | Invoke-Expression".`
);
@@ -227,7 +227,7 @@ program
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}".`
);
}