We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcac05e commit 8cf8ee2Copy full SHA for 8cf8ee2
src/chrome/content/code/HTTPSRules.js
@@ -768,17 +768,17 @@ const HTTPSRules = {
768
return false;
769
}
770
771
- this.log(INFO, "Testing securecookie applicability with " + test_uri);
+ this.log(DBUG, "Testing securecookie applicability with " + test_uri);
772
var rs = this.potentiallyApplicableRulesets(domain);
773
for (var i = 0; i < rs.length; ++i) {
774
if (!rs[i].active) continue;
775
var rewrite = rs[i].apply(test_uri);
776
if (rewrite) {
777
- this.log(INFO, "Yes: " + rewrite);
+ this.log(DBUG, "Safe to secure cookie for " + test_uri + ": " + rewrite);
778
return true;
779
780
781
- this.log(INFO, "(NO)");
+ this.log(DBUG, "Unsafe to secure cookie for " + test_uri);
782
783
784
};
0 commit comments