Improve log message

This commit is contained in:
Daniel Gasienica 2018-03-28 10:25:22 -04:00
parent ce5b450fdb
commit 3720c3f3bb

View file

@ -97,7 +97,7 @@ exports.processAll = async ({
const connection = await openDatabase(databaseName, databaseVersion); const connection = await openDatabase(databaseName, databaseVersion);
const isComplete = await isMigrationComplete(connection); const isComplete = await isMigrationComplete(connection);
console.log('Is attachment migration complete?', isComplete); console.log('Attachment migration status:', isComplete ? 'complete' : 'incomplete');
if (isComplete) { if (isComplete) {
return; return;
} }