We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ab9c59 commit 89ae06fCopy full SHA for 89ae06f
src/chrome/content/code/HTTPS.js
@@ -152,14 +152,14 @@ const HTTPS = {
152
this.log(WARN,"No URI inside request " +req);
153
return;
154
}
155
- this.log(VERB, "Cookie hunting in " + uri.spec);
+ //this.log(VERB, "Cookie hunting in " + uri.spec);
156
157
if (uri.schemeIs("https")) {
158
var host = uri.host;
159
try {
160
var cookies = req.getResponseHeader("Set-Cookie");
161
} catch(mayHappen) {
162
- this.log(VERB,"Exception hunting Set-Cookie in headers: " + mayHappen);
+ //this.log(VERB,"Exception hunting Set-Cookie in headers: " + mayHappen);
163
164
165
if (!cookies) return;
0 commit comments