Skip to content

Commit

Permalink
Removed unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
limdingwen committed Jul 25, 2024
1 parent 2a88c3c commit 7bf77b2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion supabase/functions/generate-bills-summary/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Deno.serve(async (req) => {
.maybeSingle();
if (selectError) throw selectError;
if (!row_with_null_summary) {
console.log("No bills need summary generation.");
return buildResponse({ message: "No bills need summary generation." });
}

Expand Down
1 change: 0 additions & 1 deletion supabase/functions/scrape-bills-pdf/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ Deno.serve(async (req) => {
.maybeSingle();
if (selectError) throw selectError;
if (!row_with_null_text) {
console.log("No bills need PDF text scraping.");
return buildResponse({ message: "No bills need PDF text scraping." });
}

Expand Down

0 comments on commit 7bf77b2

Please sign in to comment.