fix: Remove unwanted logs which may confuse the users (#15815)

This commit is contained in:
Aswath K 2022-08-08 19:24:37 +05:30 committed by GitHub
parent 0967b516b6
commit a3fe6a7826
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,7 +223,6 @@ class WidgetFactory {
): readonly PropertyPaneConfig[] {
const map = this.propertyPaneContentConfigsMap.get(type);
if (!map) {
log.error("Widget property pane content configs not defined", type);
return [];
}
return map;
@ -234,7 +233,6 @@ class WidgetFactory {
): readonly PropertyPaneConfig[] {
const map = this.propertyPaneStyleConfigsMap.get(type);
if (!map) {
log.error("Widget property pane style configs not defined", type);
return [];
}
return map;