Skip to content

Commit

Permalink
fix(cosole): remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Jul 8, 2024
1 parent 5dee120 commit 19231be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/role-houdini/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default plugin('role-houdini', async () => {
// consider the artifact `role` if the query contains the `role` directive
const role = queryDefinition?.directives?.find((directive) => directive.name.value === 'role');
const value = (role?.arguments?.[0].value as StringValueNode)?.value;
console.debug(`Document: ${document.name}, Role: ${value}`);
// console.debug(`Document: ${document.name}, Role: ${value}`);
return { role: value };
},
};
Expand Down

0 comments on commit 19231be

Please sign in to comment.