Improve log message
This commit is contained in:
parent
ce5b450fdb
commit
3720c3f3bb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue