From c5013da759f54aefe4229724b1224fff349aab6d Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 25 Feb 2025 15:49:07 -0500 Subject: [SharedCache] Remove warning which is unlikely to be useful This warning will happen anytime you load an image with already processed regions. --- view/sharedcache/core/SharedCache.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'view/sharedcache/core/SharedCache.cpp') diff --git a/view/sharedcache/core/SharedCache.cpp b/view/sharedcache/core/SharedCache.cpp index 2b18c064..25391dc2 100644 --- a/view/sharedcache/core/SharedCache.cpp +++ b/view/sharedcache/core/SharedCache.cpp @@ -1808,11 +1808,9 @@ bool SharedCache::LoadImageWithInstallName(std::lock_guard& lock, st regionsToLoad.push_back(®ion); } + // Regions for this image are already loaded, skip un-needed analysis! if (regionsToLoad.empty()) - { - m_logger->LogWarn("No regions to load for image %s", installName.c_str()); return false; - } auto typeLib = TypeLibraryForImage(header.installName); -- cgit v1.3.1