From 9ba5aaa54daa1aeb4a03dbdb2361e263ae92b238 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Mon, 10 Jul 2017 18:25:21 -0700 Subject: [PATCH] Verification sync logging: include whether it was from contact sync FREEBIE --- js/background.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/background.js b/js/background.js index 11f67fd47..37af22fcd 100644 --- a/js/background.js +++ b/js/background.js @@ -308,7 +308,8 @@ break; } - console.log('got verified sync for', number, state); + console.log('got verified sync for', number, state, + ev.viaContactSync ? 'via contact sync' : ''); var contact = ConversationController.get(number); if (!contact) {