Skip to content

Commit 89ae06f

Browse files
committed
Remove some <securecookie> printfs
1 parent 2ab9c59 commit 89ae06f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/chrome/content/code/HTTPS.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,14 @@ const HTTPS = {
152152
this.log(WARN,"No URI inside request " +req);
153153
return;
154154
}
155-
this.log(VERB, "Cookie hunting in " + uri.spec);
155+
//this.log(VERB, "Cookie hunting in " + uri.spec);
156156

157157
if (uri.schemeIs("https")) {
158158
var host = uri.host;
159159
try {
160160
var cookies = req.getResponseHeader("Set-Cookie");
161161
} catch(mayHappen) {
162-
this.log(VERB,"Exception hunting Set-Cookie in headers: " + mayHappen);
162+
//this.log(VERB,"Exception hunting Set-Cookie in headers: " + mayHappen);
163163
return;
164164
}
165165
if (!cookies) return;

0 commit comments

Comments
 (0)