We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf0fea8 commit 2dd51b5Copy full SHA for 2dd51b5
src/icons/ux-icon.ts
@@ -8,7 +8,7 @@ import { processDesignAttributes } from '../designs/design-attributes';
8
import { UxIconTheme } from './ux-icon-theme';
9
import IconMap from './ux-icon-map';
10
11
-@inject(Element, ViewResources, StyleEngine)
+@inject(Element, ViewResources, StyleEngine, Logger)
12
@customElement('ux-icon')
13
@processAttributes(processDesignAttributes)
14
@@ -62,7 +62,7 @@ export class UxIcon implements Themable {
62
// after adding icon sets for said languages such as ios
63
this.element.innerHTML = iconSet.material;
64
} else {
65
- this.logger.debug('ux-icon: no matching icon', this.element);
+ this.logger.error('ux-icon: no matching icon found', this.element);
66
}
67
68
0 commit comments