From 3720c3f3bbeeb55eec5f2885c598e74862c4c866 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Wed, 28 Mar 2018 10:25:22 -0400 Subject: [PATCH] Improve log message --- js/modules/messages_data_migrator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/modules/messages_data_migrator.js b/js/modules/messages_data_migrator.js index 70268ce068b0..86bebcf367a6 100644 --- a/js/modules/messages_data_migrator.js +++ b/js/modules/messages_data_migrator.js @@ -97,7 +97,7 @@ exports.processAll = async ({ const connection = await openDatabase(databaseName, databaseVersion); const isComplete = await isMigrationComplete(connection); - console.log('Is attachment migration complete?', isComplete); + console.log('Attachment migration status:', isComplete ? 'complete' : 'incomplete'); if (isComplete) { return; }