Bug 1320193 - remove trailing \n from log message. r?glasserc draft
authorMark Hammond <mhammond@skippinet.com.au>
Fri, 25 Nov 2016 09:01:05 +1100
changeset 443662 9dc0ea166e6d8041bc710bdf22cced64770d594a
parent 443004 47f42f21541b9b98ad7db82edb996b29065debd0
child 538107 3f2be450fffc4f3681eff41902525028de0d2632
push id37053
push userbmo:markh@mozilla.com
push dateThu, 24 Nov 2016 22:01:28 +0000
reviewersglasserc
bugs1320193
milestone53.0a1
Bug 1320193 - remove trailing \n from log message. r?glasserc MozReview-Commit-ID: LwdPOwXmS5i
toolkit/components/extensions/ExtensionStorageSync.jsm
--- a/toolkit/components/extensions/ExtensionStorageSync.jsm
+++ b/toolkit/components/extensions/ExtensionStorageSync.jsm
@@ -390,17 +390,17 @@ if (AppConstants.platform != "android") 
 
 this.ExtensionStorageSync = {
   _fxaService,
   listeners: new WeakMap(),
 
   syncAll: Task.async(function* () {
     const extensions = extensionContexts.keys();
     const extIds = Array.from(extensions, extension => extension.id);
-    log.debug(`Syncing extension settings for ${JSON.stringify(extIds)}\n`);
+    log.debug(`Syncing extension settings for ${JSON.stringify(extIds)}`);
     if (extIds.length == 0) {
       // No extensions to sync. Get out.
       return;
     }
     yield this.ensureKeysFor(extIds);
     yield this.checkSyncKeyRing();
     const promises = Array.from(extensionContexts.keys(), extension => {
       return openCollection(extension).then(coll => {