Skip to content

Commit

Permalink
Merge pull request #26 from caraar12345/patch-1
Browse files Browse the repository at this point in the history
Set 'missing artist and/or title' error to debug
  • Loading branch information
robert-alfaro authored Jan 9, 2023
2 parents 68f9f03 + aa6e1c3 commit c3ac8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/genius_lyrics/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def fetch_lyrics(self, artist=None, title=None):
self.__title = title

if self.__artist is None or self.__title is None:
#_LOGGER.error("Missing artist and/or title")
_LOGGER.debug("Missing artist and/or title")
return

_LOGGER.info(f"Search lyrics for artist='{self.__artist}' and title='{self.__title}'")
Expand Down

0 comments on commit c3ac8df

Please sign in to comment.