Remove not needed warning log in Editor on fresh project

This commit is contained in:
Wojtek Figat
2025-01-21 23:46:32 +01:00
parent 4cf22c3a1f
commit d1cc8da841

View File

@@ -137,10 +137,7 @@ void CookAssetsStep::CacheData::Load(CookingData& data)
if (!FileSystem::DirectoryExists(CacheFolder))
FileSystem::CreateDirectory(CacheFolder);
if (!FileSystem::FileExists(HeaderFilePath))
{
LOG(Warning, "Missing incremental build cooking assets cache.");
return;
}
auto file = FileReadStream::Open(HeaderFilePath);
if (file == nullptr)