From 2bac7173cb8fe2a6e8e9c41084fbe0faa6ec78e0 Mon Sep 17 00:00:00 2001 From: Infocatcher Date: Wed, 24 Aug 2016 21:35:21 +0300 Subject: [PATCH] Limit size of debug logs from setTabAttributeProxy() (#208, #224) --- bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.js b/bootstrap.js index 0a6479e..df4d1df 100644 --- a/bootstrap.js +++ b/bootstrap.js @@ -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);