Skip to content

Commit

Permalink
Merge pull request #2651 from evidence-dev/chore/remove-leaked-consol…
Browse files Browse the repository at this point in the history
…e-debug

fix: remove log
  • Loading branch information
ItsMeBrianD authored Oct 15, 2024
2 parents 30d25da + a91b26f commit f89bdcf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/five-students-wait.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@evidence-dev/sdk': patch
---

Remove console.debug statement
3 changes: 0 additions & 3 deletions packages/lib/sdk/src/usql/setTrackProxy/setTrackProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

0 comments on commit f89bdcf

Please sign in to comment.