Updated No valid GUID message to be more clear.

This commit is contained in:
Abdulmhsen B. A. A
2022-04-23 21:32:03 +03:00
parent 5b6fcf793a
commit c3f4f20f04
2 changed files with 5 additions and 2 deletions

View File

@@ -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
]

View File

@@ -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,
]