style: remove unneeded log

This commit is contained in:
2026-06-18 17:59:49 -03:00
parent fd25b1c43a
commit 60512430ac
+4 -3
View File
@@ -295,11 +295,12 @@ class Dumper
if (File.Exists(fullPath)) return; if (File.Exists(fullPath)) return;
// special thanks to whichever dev kept fucking up the casing /*
* shoutout to whichever dev kept fucking up the casing
* its rly surprising how many times this happened
*/
if (!_provider.TryLoadPackage(cleanPath, out IPackage? package)) if (!_provider.TryLoadPackage(cleanPath, out IPackage? package))
{ {
_log.Verbose("Failed exact path match for {0}. Attempting case-insensitive search", cleanPath);
string searchSuffix = cleanPath; string searchSuffix = cleanPath;
if (searchSuffix.StartsWith("/Game/")) if (searchSuffix.StartsWith("/Game/"))