mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-21 18:11:12 -05:00
Connect to Lovable Cloud
Add centralized errorFormatter to convert various error types into readable messages, and apply it across edge functions. Replace String(error) usage with formatEdgeError, update relevant imports, fix a throw to use toError, and enhance logger to log formatted errors. Includes new errorFormatter.ts and widespread updates to 18+ edge functions plus logger integration.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { createClient } from 'https://esm.sh/@supabase/supabase-js@2.57.4';
|
||||
import { edgeLogger } from '../_shared/logger.ts';
|
||||
import { formatEdgeError } from '../_shared/errorFormatter.ts';
|
||||
|
||||
const BASE_URL = 'https://dev.thrillwiki.com';
|
||||
|
||||
@@ -347,7 +348,7 @@ Deno.serve(async (req) => {
|
||||
|
||||
edgeLogger.error('Sitemap generation failed', {
|
||||
requestId,
|
||||
error: error instanceof Error ? error.message : String(error),
|
||||
error: formatEdgeError(error),
|
||||
duration,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user