diff --git a/.changeset/five-students-wait.md b/.changeset/five-students-wait.md new file mode 100644 index 000000000..7d9d5a73e --- /dev/null +++ b/.changeset/five-students-wait.md @@ -0,0 +1,5 @@ +--- +'@evidence-dev/sdk': patch +--- + +Remove console.debug statement diff --git a/packages/lib/sdk/src/usql/setTrackProxy/setTrackProxy.js b/packages/lib/sdk/src/usql/setTrackProxy/setTrackProxy.js index a07b77405..43a984712 100644 --- a/packages/lib/sdk/src/usql/setTrackProxy/setTrackProxy.js +++ b/packages/lib/sdk/src/usql/setTrackProxy/setTrackProxy.js @@ -76,8 +76,5 @@ export const setTrackProxy = ( export const hasUnsetValues = (strings, ...args) => { const unsetValues = args.filter((arg) => arg?.[Unset]); if (unsetValues.length === 0) return false; - console.debug( - `✨ UnsetValues detected: ${unsetValues.map((v) => v?.[GetOwnPath] ?? v?.[GetOwnKey]).join(', ')}` - ); return true; };