fix: prevent log spam on rel builds

This commit is contained in:
2026-04-09 23:11:55 -03:00
parent e6111f8dbd
commit 4f91ab9cff
+4
View File
@@ -522,13 +522,17 @@ void Spoofer::onBloodweb(std::string& body, std::string& respHeaders)
respHeaders = std::regex_replace(respHeaders, statusRegex, "HTTP/1.1 200");
body = mock.dump();
#ifdef _DEBUG
Log::verbose("Spoofed bloodweb request for unowned character.");
#endif
return;
}
modifyCharacterData(doc);
body = doc.dump();
#ifdef _DEBUG
Log::verbose("Spoofed bloodweb items for owned character");
#endif
}
/*