[Logging] Change empty object loading to warning (#3759)

This commit is contained in:
nytmyr
2023-12-11 16:06:29 -06:00
committed by GitHub
parent a46443b95e
commit 940abfaf7a
+1 -1
View File
@@ -183,7 +183,7 @@ bool Zone::LoadZoneObjects()
) )
); );
if (l.empty()) { if (l.empty()) {
LogError("Error Loading Objects for Zone [{}] Version [{}]", zoneid, instanceversion); LogWarning("No Objects to load for Zone [{}] Version [{}]", zoneid, instanceversion);
return false; return false;
} }