Skip to content

Commit

Permalink
appIndicator: Use warning level for not found icons
Browse files Browse the repository at this point in the history
  • Loading branch information
3v1n0 committed Mar 12, 2020
1 parent c5b31a6 commit c2bf83e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appIndicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ class AppIndicators_IconActor extends St.Icon {
Gtk.IconLookupFlags.GENERIC_FALLBACK);
// no icon? that's bad!
if (iconInfo === null) {
Util.Logger.critical("unable to lookup icon for " + name);
Util.Logger.warn(`${this._indicator.id}, Impossible to lookup icon for '${name}'`);
} else { // we have an icon
// get the icon path
path = iconInfo.get_filename();
Expand Down

0 comments on commit c2bf83e

Please sign in to comment.