Skip to content

Commit

Permalink
Hotfixing stdout information logging for infer command
Browse files Browse the repository at this point in the history
  • Loading branch information
sordina committed Nov 22, 2023
1 parent b1bdc55 commit 17e85d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ This changelog documents the changes between release versions.

Changes to be included in the next upcoming releaase.

## v0.14.1

Hotfix for infer bug:

* Fixes: Infer command logging informational output on stdout

## v0.14

PR: https://github.com/hasura/ndc-typescript-deno/pull/70
Expand Down
2 changes: 1 addition & 1 deletion src/infer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function listing(prompt: string, positions: FunctionPositions, info: Array<sdk.F
console.error(`${prompt}:`)
for(const f of info) {
const args = (positions[f.name] || []).join(', ');
console.log(`* ${f.name}(${args})`);
console.error(`* ${f.name}(${args})`);
}
console.error(``);
}
Expand Down

0 comments on commit 17e85d5

Please sign in to comment.