Bug 1826316 - Change logging about lack of search settings file to debug only. r=search-reviewers,mcheang

Differential Revision: https://phabricator.services.mozilla.com/D174773
This commit is contained in:
Mark Banner 2023-04-05 21:22:12 +00:00
parent d77b4058be
commit 9f18205385
2 changed files with 1 additions and 6 deletions

View File

@ -32,11 +32,6 @@ known_errors = [
"message": 'Error: Unexpected content-type "text/plain',
"filename": "RemoteSettingsClient",
},
{
# The search service complains on new profiles - bug 1826316.
"message": "No settings file exists, new profile?",
"filename": "SearchSettings",
},
{
# Triggered as soon as anything tries to use shortcut keys.
# The browser toolbox shortcut is not portable.

View File

@ -137,7 +137,7 @@ export class SearchSettings {
throw new Error("no engine in the file");
}
} catch (ex) {
lazy.logConsole.warn("get: No settings file exists, new profile?", ex);
lazy.logConsole.debug("get: No settings file exists, new profile?", ex);
json = {};
}