shorter names
parent
36ef39b79a
commit
d339387d5e
|
@ -5837,7 +5837,7 @@ class CustomWorkflow {
|
|||
}
|
||||
static async runCustomJob(buildSteps, environmentVariables, secrets) {
|
||||
try {
|
||||
cloud_runner_logger_1.default.log(`Cloud Runner is running in custom job mode Secrets Count:${secrets.length} Env Var Count:${environmentVariables.length}`);
|
||||
cloud_runner_logger_1.default.log(`Cloud Runner is running in custom job mode Secrets Count:${JSON.stringify(secrets, undefined, 4)} Env Var Count:${JSON.stringify(environmentVariables, undefined, 4)}`);
|
||||
let output = '';
|
||||
// if (CloudRunner.buildParameters?.cloudRunnerDebug) {
|
||||
// CloudRunnerLogger.log(`Custom Job Description \n${JSON.stringify(buildSteps, undefined, 4)}`);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -26,7 +26,11 @@ export class CustomWorkflow {
|
|||
) {
|
||||
try {
|
||||
CloudRunnerLogger.log(
|
||||
`Cloud Runner is running in custom job mode Secrets Count:${secrets.length} Env Var Count:${environmentVariables.length}`,
|
||||
`Cloud Runner is running in custom job mode Secrets Count:${JSON.stringify(
|
||||
secrets,
|
||||
undefined,
|
||||
4,
|
||||
)} Env Var Count:${JSON.stringify(environmentVariables, undefined, 4)}`,
|
||||
);
|
||||
let output = '';
|
||||
|
||||
|
|
Loading…
Reference in New Issue