Skip to content

Commit

Permalink
Clarify debug message (#268)
Browse files Browse the repository at this point in the history
* Bump formatter

* 0.15.1

* Clarify debug message
  • Loading branch information
rvanasa authored Feb 14, 2024
1 parent 2ec015b commit 65e4a60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/syntax.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ export function fromAST(ast: AST): Syntax {
fields.forEach((field) => {
if (field.name !== 'DecField') {
console.error(
'Error: expected `DecField`, received',
field.name,
'Error: expected object with `name: "DecField"`, received',
field,
);
return;
}
Expand Down

0 comments on commit 65e4a60

Please sign in to comment.