From 26ef043809a601b90547d725c01b1852731623f6 Mon Sep 17 00:00:00 2001 From: jbphet Date: Tue, 13 Jun 2023 15:55:26 -0600 Subject: [PATCH] add temporary debug logging, see https://github.com/phetsims/rosetta/issues/412 --- src/client/js/makeTranslationObject.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/js/makeTranslationObject.js b/src/client/js/makeTranslationObject.js index 13ad9d3..08570d8 100644 --- a/src/client/js/makeTranslationObject.js +++ b/src/client/js/makeTranslationObject.js @@ -22,6 +22,7 @@ const makeTranslationObject = async ( values, simName, locale ) => { let translation; try { const websiteUserData = await getWebsiteUserData(); + console.log( `websiteUserData = ${JSON.stringify( websiteUserData )}` ); // Check for a null user ID and, if present, replace it with a value from session storage. This is part of a // workaround for an issue where null user IDs were being used when sessions expired, see