Skip to content

Commit 9ff7127

Browse files
committed
fix(cli): remove extraneous messages going to stdout during flow validation
1 parent 3d93478 commit 9ff7127

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

shared/src/spectral/functions/architecture/sequence-numbers-are-unique.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ export function sequenceNumbersAreUnique(input, _, context) {
77
if (!input) {
88
return [];
99
}
10-
console.log(JSON.stringify(input));
11-
console.log('context' + JSON.stringify(context.path));
1210
// get sequence-number of all transitions
1311
const sequenceNumbers = JSONPath({path: '$[*].sequence-number', json: input, resultType: 'all'});
1412

0 commit comments

Comments
 (0)