From d1cc8da841ddebbfea2d49ee7e6850c256e18ba1 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 21 Jan 2025 23:46:32 +0100 Subject: [PATCH] Remove not needed warning log in Editor on fresh project --- Source/Editor/Cooker/Steps/CookAssetsStep.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Editor/Cooker/Steps/CookAssetsStep.cpp b/Source/Editor/Cooker/Steps/CookAssetsStep.cpp index e04f31af6..67a9e5f4f 100644 --- a/Source/Editor/Cooker/Steps/CookAssetsStep.cpp +++ b/Source/Editor/Cooker/Steps/CookAssetsStep.cpp @@ -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)