From e95e1bea09ba34f64b1243fa370a7774dbc9caa3 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Wed, 6 Nov 2024 10:56:25 -0500 Subject: WARP: Remove useless warning This only happens when we are generating signatures, those don't need to be in the cache to get built --- plugins/warp/src/cache.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'plugins') diff --git a/plugins/warp/src/cache.rs b/plugins/warp/src/cache.rs index 025c37df..e002c795 100644 --- a/plugins/warp/src/cache.rs +++ b/plugins/warp/src/cache.rs @@ -296,10 +296,7 @@ impl GUIDCache { self.cache.insert(function_id, function_guid); function_guid } - TryResult::Locked => { - log::warn!("Failed to acquire function guid cache"); - function_guid(function, llil) - } + TryResult::Locked => function_guid(function, llil), } } -- cgit v1.3.1