Skip to content

Commit

Permalink
📝 Make sure a valid JSON is printed
Browse files Browse the repository at this point in the history
  • Loading branch information
evans-g-crsj committed Jun 18, 2024
1 parent 82d2ca1 commit aba09a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/suggestStepFnPayload.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ if (project === 'include') {
runGenomicEtl: false,
verbose: 'false',
};
console.log(payloadInc);
console.log('\n')
console.log(JSON.stringify(payloadInc, null, 4));
console.log('\n');
}

const addKfSuffixToRelIfInclude = () => `${rel}${isInclude ? '_kf' : ''}`;
Expand All @@ -104,4 +104,4 @@ const payloadKf = {
runGenomicEtl: false,
verbose: 'false',
};
console.log(payloadKf);
console.log(JSON.stringify(payloadKf, null, 4));

0 comments on commit aba09a3

Please sign in to comment.