change log message since most assets will not have a name

This commit is contained in:
UbitUmarov
2025-05-14 02:39:50 +01:00
parent a800514050
commit f4ab3855d8

View File

@@ -156,9 +156,9 @@ namespace OpenSim.Region.CoreModules.World.Archiver
if(asset.FullID.IsZero())
{
if(!UUID.TryParse(thiskey, out UUID id))
if(!UUID.TryParse(thiskey, out UUID id) || id.IsZero())
{
m_log.InfoFormat($"[ARCHIVER]: cannot save asset '{asset.Name}' because it has Zero");
m_log.InfoFormat($"[ARCHIVER]: cannot save asset {kvp.Key} because it has Invalid UUID");
m_notFoundAssetUuids.Add(kvp.Key);
continue;
}