зеркало из https://github.com/mozilla/gecko-dev.git
Bug 409673: Don't log the authentication header
This commit is contained in:
Родитель
ffe5f4241e
Коммит
2355ae3aa7
|
@ -105,7 +105,10 @@ DAVCollection.prototype = {
|
|||
|
||||
let key;
|
||||
for (key in headers) {
|
||||
this._log.debug("HTTP Header " + key + ": " + headers[key]);
|
||||
if (key == 'Authentication')
|
||||
this._log.debug("HTTP Header " + key + ": (supressed)");
|
||||
else
|
||||
this._log.debug("HTTP Header " + key + ": " + headers[key]);
|
||||
request.setRequestHeader(key, headers[key]);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче