From 9ca50e0505ea8207f22c3ebee4a64160566d3153 Mon Sep 17 00:00:00 2001 From: bcoles Date: Fri, 29 Mar 2013 15:16:56 +1030 Subject: [PATCH] Comment out two `console.log()` lines in hookChildFrames --- core/main/client/browser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/main/client/browser.js b/core/main/client/browser.js index 860727cea..82556c71a 100644 --- a/core/main/client/browser.js +++ b/core/main/client/browser.js @@ -858,10 +858,10 @@ beef.browser = { try { // append hook script self.frames[i].document.body.appendChild(script); - console.log("Hooked child frame [src:"+self.frames[i].window.location.href+"]"); + //console.log("Hooked child frame [src:"+self.frames[i].window.location.href+"]"); } catch (e) { // warn on cross-domain - console.log("Hooking frame failed"); + //console.log("Hooking frame failed"); } } },