Skip to content

Commit 9799099

Browse files
committed
[SharedCache] Remove warning which is unlikely to be useful
This warning will happen anytime you load an image with already processed regions.
1 parent d856526 commit 9799099

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

view/sharedcache/core/SharedCache.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1808,11 +1808,9 @@ bool SharedCache::LoadImageWithInstallName(std::lock_guard<std::mutex>& lock, st
18081808
regionsToLoad.push_back(&region);
18091809
}
18101810

1811+
// Regions for this image are already loaded, skip un-needed analysis!
18111812
if (regionsToLoad.empty())
1812-
{
1813-
m_logger->LogWarn("No regions to load for image %s", installName.c_str());
18141813
return false;
1815-
}
18161814

18171815
auto typeLib = TypeLibraryForImage(header.installName);
18181816

0 commit comments

Comments
 (0)