Merge pull request #11529 from overleaf/bg-report-whole-error

log the full result from history migrations

GitOrigin-RevId: 55aaa7bbd88a61234dcf1247ddbf8af543fc4bc1
This commit is contained in:
Brian Gough 2023-01-30 14:14:59 +00:00 committed by Copybot
parent 75abea72b0
commit 56cb937672

View file

@ -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++