diff --git a/src/Libs/Servers/JellyfinServer.php b/src/Libs/Servers/JellyfinServer.php index 0cb04922..ced017de 100644 --- a/src/Libs/Servers/JellyfinServer.php +++ b/src/Libs/Servers/JellyfinServer.php @@ -1295,7 +1295,10 @@ class JellyfinServer implements ServerInterface $guids = (array)($item->ProviderIds ?? []); $this->logger->notice( - sprintf('Ignoring %s. No valid GUIDs.', $iName), + sprintf( + 'Ignoring %s. No valid GUIDs. Possibly unmatched item?', + $iName + ), [ 'guids' => empty($guids) ? 'None' : $guids ] diff --git a/src/Libs/Servers/PlexServer.php b/src/Libs/Servers/PlexServer.php index ce0e9dca..23f9e6af 100644 --- a/src/Libs/Servers/PlexServer.php +++ b/src/Libs/Servers/PlexServer.php @@ -1334,7 +1334,7 @@ class PlexServer implements ServerInterface } $this->logger->notice( - sprintf('Ignoring %s. No valid GUIDs.', $iName), + sprintf('Ignoring %s. No valid GUIDs. Possibly unmatched item?', $iName), [ 'guids' => empty($item->Guid) ? 'None' : $item->Guid, ]