From 56cb937672aaee8e1d4b7be3291fd5712d630286 Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Mon, 30 Jan 2023 14:14:59 +0000 Subject: [PATCH] Merge pull request #11529 from overleaf/bg-report-whole-error log the full result from history migrations GitOrigin-RevId: 55aaa7bbd88a61234dcf1247ddbf8af543fc4bc1 --- services/web/scripts/history/migrate_history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/scripts/history/migrate_history.js b/services/web/scripts/history/migrate_history.js index 161f7d02ac..9d30704f14 100644 --- a/services/web/scripts/history/migrate_history.js +++ b/services/web/scripts/history/migrate_history.js @@ -88,7 +88,7 @@ async function migrateProjects(projectsToMigrate) { console.log(`Migrating project: ${project._id}`) try { const result = await upgradeProject(project._id) - console.log(`migration result: ${JSON.stringify(result)}`) + console.log('migration result', result) projectsMigrated++ } catch (err) { projectsFailed++