Bug 949297 - adjust warning message severity for Australis customizableUI widget removals, r=jaws

This commit is contained in:
Gijs Kruitbosch 2014-02-18 18:31:26 +00:00
parent 91e90effc9
commit 27c6403378
2 changed files with 7 additions and 1 deletions

View File

@ -727,7 +727,7 @@ let CustomizableUIInternal = {
let widgetNode = window.document.getElementById(aWidgetId);
if (!widgetNode) {
ERROR("Widget not found, unable to remove");
INFO("Widget not found, unable to remove");
continue;
}
let container = areaNode.customizationTarget;

View File

@ -23,3 +23,9 @@ function ERROR(...args) {
args.unshift(gModuleName);
console.error.apply(console, args);
}
function INFO(...args) {
args.unshift(gModuleName);
console.info.apply(console, args);
}