mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-18 14:56:07 +00:00
Bug 949297 - adjust warning message severity for Australis customizableUI widget removals, r=jaws
This commit is contained in:
parent
6b1f3b5123
commit
d1921a75f8
@ -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;
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user