From 6096eb75b30a851c18f03bedd160f5cc3df0fb55 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Mon, 26 Feb 2024 12:19:47 -0600 Subject: [PATCH] Change ppr logging --- src/utility/ppr.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utility/ppr.ts b/src/utility/ppr.ts index 1194583c..d364b86d 100644 --- a/src/utility/ppr.ts +++ b/src/utility/ppr.ts @@ -12,7 +12,8 @@ export const screenForPPR = ( ); throw error.sourceError; } else if (sourceToLog) { - console.error(sourceToLog, error.sourceError); + console.error(sourceToLog, error.message); } return fallback; }; +