diff --git a/services/web/scripts/history/downgrade_project.js b/services/web/scripts/history/downgrade_project.js index 78ac906273..cff3f41b61 100644 --- a/services/web/scripts/history/downgrade_project.js +++ b/services/web/scripts/history/downgrade_project.js @@ -31,9 +31,7 @@ async function processProject(project) { await ProjectHistoryHandler.promises.downgradeHistory(project._id) } if (VERBOSE_LOGGING) { - console.log( - `project ${project._id} converted and upgraded to full project history` - ) + console.log(`project ${project._id} downgraded to track-changes`) } } @@ -64,7 +62,7 @@ async function main() { // then history could get into a broken state // Instead, skip any unprocessed projects and exit() at end of the batch. process.on('SIGINT', function () { - console.log('Caught SIGINT, waiting for in process upgrades to complete') + console.log('Caught SIGINT, waiting for in process downgrades to complete') INTERRUPT = true })