Convert a log.info to log.debug for passwords so it doesn't clutter the brief log.

This commit is contained in:
Edward Lee 2009-06-25 22:52:28 -07:00
Родитель dd9ce3521e
Коммит b6e3b95d2d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -112,7 +112,7 @@ PasswordStore.prototype = {
let logins = Svc.Login.searchLogins({}, prop);
if (logins.length > 0) {
this._log.info(logins.length + " items matching " + id + " found.");
this._log.debug(logins.length + " items matching " + id + " found.");
return logins[0];
} else {
this._log.trace("No items matching " + id + " found. Ignoring");