mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 949297 - adjust warning message severity for Australis customizableUI widget removals, r=jaws
This commit is contained in:
parent
91e90effc9
commit
27c6403378
@ -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…
Reference in New Issue
Block a user