Skip to content

Commit

Permalink
Change log level to avoid chatty logs. (#1568)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinSchenkel authored Aug 15, 2024
1 parent 3d6f7ab commit 4676510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_assistant/server/providers/apple_music/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ async def get_library_tracks(self) -> AsyncGenerator[Track, None]:
for item in await self._get_all_items(endpoint):
catalog_id = item.get("attributes", {}).get("playParams", {}).get("catalogId")
if not catalog_id:
self.logger.warning(
self.logger.debug(
"Skipping track. No catalog version found for %s - %s",
item["attributes"].get("artistName", ""),
item["attributes"].get("name", ""),
Expand Down

0 comments on commit 4676510

Please sign in to comment.