feat: Complete error logging coverage

This commit is contained in:
gpt-engineer-app[bot]
2025-11-04 19:30:56 +00:00
parent 9bf5ea322e
commit 162d288cb0
13 changed files with 50 additions and 53 deletions

View File

@@ -172,7 +172,7 @@ export function useRealtimeSubscriptions(
.single();
if (error || !submission) {
logger.error('Error fetching submission details:', { error: getErrorMessage(error) });
// Silent - will retry on next attempt
return null;
}
@@ -321,7 +321,7 @@ export function useRealtimeSubscriptions(
onNewItem(fullItem);
} catch (error: unknown) {
logger.error('Error building new item notification:', { error: getErrorMessage(error) });
// Silent - notifications are non-critical
}
}, [
filters,