summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/SharedCache.cpp
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-03-07 16:56:58 -0500
committerMason Reed <mason@vector35.com>2025-04-02 05:36:54 -0400
commit4b3eff012c9c6a61ab58cecfc8af1fe23b870541 (patch)
tree8e56403a76f7095ee30437bcda2ed03a747a09f3 /view/sharedcache/core/SharedCache.cpp
parent8d334a08a15849e473c12ec95eccf3d43a253527 (diff)
[SharedCache] Make error about invalid metadata a warning, we recover sorta gracefully now
Diffstat (limited to 'view/sharedcache/core/SharedCache.cpp')
-rw-r--r--view/sharedcache/core/SharedCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/core/SharedCache.cpp b/view/sharedcache/core/SharedCache.cpp
index f4580d3d..4c8c355d 100644
--- a/view/sharedcache/core/SharedCache.cpp
+++ b/view/sharedcache/core/SharedCache.cpp
@@ -1455,7 +1455,7 @@ SharedCache::SharedCache(BinaryNinja::Ref<BinaryNinja::BinaryView> dscView) :
// TODO: We need a way to prompt the user and ask if they want to continue (like BNDB version upgrades)
// TODO: To do that we really need to consolidate _where_ SharedCache is called.
// TODO: Specifically the **first** call to this must originate in DSCView, which is NOT the case currently.
- m_logger->LogError("Metadata was invalid, recreating initial load of shared cache information...");
+ m_logger->LogWarn("Metadata was invalid, recreating initial load of shared cache information...");
}
if (m_modifiedState->viewState.value_or(m_viewSpecificState->viewState) != DSCViewStateUnloaded)