diff options
| author | Mason Reed <mason@vector35.com> | 2025-02-25 15:49:07 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-04-02 05:36:54 -0400 |
| commit | c5013da759f54aefe4229724b1224fff349aab6d (patch) | |
| tree | 9757fd3b80b5bd39f003059127724347f49c93a8 /view/sharedcache/core/SharedCache.cpp | |
| parent | ee500220baa1a46f3d7ca1486fa43dc1587f20d0 (diff) | |
[SharedCache] Remove warning which is unlikely to be useful
This warning will happen anytime you load an image with already processed regions.
Diffstat (limited to 'view/sharedcache/core/SharedCache.cpp')
| -rw-r--r-- | view/sharedcache/core/SharedCache.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
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<std::mutex>& 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); |
