Skip to content

Commit

Permalink
Remove debug console log
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns authored and gitbutler-client committed Jul 26, 2024
1 parent 6875658 commit a4a78e8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/psl/fetch-psl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ export const fetchPsl = async () => {
const response = await fetch(PUBLIC_SUFFIX_URL);
const pslContent = await response.text();

console.log(
pslContent.length,
pslContent.slice(0, 100),
FETCH_PSL_EXPECTED_MIN_LENGTH,
);

// Sanity check
ok(
pslContent.length >= FETCH_PSL_EXPECTED_MIN_LENGTH,
Expand Down

0 comments on commit a4a78e8

Please sign in to comment.