"Syncing..." console log spamming

Bug reports and enhancement requests
Post Reply
codecodecode
Posts: 3
Joined: Sat Oct 03, 2015 6:11 pm

"Syncing..." console log spamming

Post by codecodecode »

Windows 7 Ultimate x64
Firefox 41.0.1
NoScript 2.6.9.37

Massive console log spamming, feature??

noscriptOverlay.js

Code: Select all

   try {
     if (w && w.QueryInterface(Ci.nsIInterfaceRequestor)
                      .getInterface(Ci.nsIDOMWindowUtils).currentInnerWinowID
           != content.QueryInterface(Ci.nsIInterfaceRequestor)
                      .getInterface(Ci.nsIDOMWindowUtils).currentInnerWinowID)
      return;
     console.log("Syncing...");  // here ****
   } catch (e) {
     console.log(e);
   }
Image
https://i.imgur.com/PyvW8Js.png
Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0
barbaz
Senior Member
Posts: 11109
Joined: Sat Aug 03, 2013 5:45 pm

Re: "Syncing..." console log spamming

Post by barbaz »

codecodecode wrote:Massive console log spamming, feature??
Can't speak for Giorgio but I very much doubt it. It's probably debugging code (which may or may not unintentionally left there), but perhaps the reason you see it is because there's two small typos in the code you posted?
try {
if (w && w.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindowUtils).currentInnerWinowID
!= content.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindowUtils).currentInnerWinowID)
return;
console.log("Syncing..."); // here ****
} catch (e) {
console.log(e);
}
(I don't understand why am I not seeing that in SeaMonkey's Error Console?)
*Always* check the changelogs BEFORE updating that important software!
-
codecodecode
Posts: 3
Joined: Sat Oct 03, 2015 6:11 pm

Re: "Syncing..." console log spamming

Post by codecodecode »

barbaz wrote: Can't speak for Giorgio but I very much doubt it. It's probably debugging code (which may or may not unintentionally left there), but perhaps the reason you see it is because there's two small typos in the code you posted?
That's the "official" "signed" code (god f*cking bless mozilla) form v2.6.9.37 [https://addons.mozilla.org/en-US/firefo ... pt.ownsite]
Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0
barbaz
Senior Member
Posts: 11109
Joined: Sat Aug 03, 2013 5:45 pm

Re: "Syncing..." console log spamming

Post by barbaz »

And your point is...?
I'm just saying that it might be that that should say "Window" and not "Winow". What has this to do with whether or not it's the "official" signed code?

(It's like that in my NoScript 2.6.9.37rc2 also)
*Always* check the changelogs BEFORE updating that important software!
-
User avatar
Giorgio Maone
Site Admin
Posts: 9529
Joined: Wed Mar 18, 2009 11:22 pm
Location: Palermo - Italy
Contact:

Re: "Syncing..." console log spamming

Post by Giorgio Maone »

Yes it's a bug (which has no side effect but the console spamming), and is gonna be fixed in next build.
Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0
codecodecode
Posts: 3
Joined: Sat Oct 03, 2015 6:11 pm

Re: "Syncing..." console log spamming

Post by codecodecode »

barbaz wrote:And your point is...?
The point is that if I want to fix the error today I can do it by myself but when extension signing becomes mandatory I can't do it, that's all.
Giorgio Maone wrote:Yes it's a bug (which has no side effect but the console spamming), and is gonna be fixed in next build.
Thanks.
Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0
barbaz
Senior Member
Posts: 11109
Joined: Sat Aug 03, 2013 5:45 pm

Re: "Syncing..." console log spamming

Post by barbaz »

codecodecode wrote:The point is that if I want to fix the error today I can do it by myself but when extension signing becomes mandatory I can't do it, that's all.
Ah, OK. There will be (or at least, it's planned to be) unbranded builds of Firefox, with extension signing enforcement not mandatory, at that point...
*Always* check the changelogs BEFORE updating that important software!
-
Post Reply