Skip to content

Commit

Permalink
Limit size of debug logs from setTabAttributeProxy()
Browse files Browse the repository at this point in the history
  • Loading branch information
Infocatcher committed Aug 24, 2016
1 parent c0a264b commit 2bac717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,7 @@ var privateTab = {
args[1] = msg.data.isImageDocument
? msg.data.dataURL
: val.replace(/^moz-anno:favicon:/, "");
_log("setTabAttributeProxy(): received response from remote tab, set image to\n" + args[1]);
_log("setTabAttributeProxy(): received response from remote tab, set image to\n" + _str(args[1]));
done();
};
mm.addMessageListener("PrivateTab:ImageDocumentDataURL", receiveMessage);
Expand Down

0 comments on commit 2bac717

Please sign in to comment.