From 0d927f5d72ba97a0a5a47a476cbd8166a7497d4c Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sat, 23 Jul 2022 17:50:58 +0300 Subject: [PATCH] Remove log. --- module/Misc/Weapon.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/module/Misc/Weapon.cpp b/module/Misc/Weapon.cpp index 84b5c2f2..4e1d202c 100644 --- a/module/Misc/Weapon.cpp +++ b/module/Misc/Weapon.cpp @@ -166,7 +166,6 @@ int32_t GetWeaponID(StackStrF & name) str.erase(std::remove_if(str.begin(), str.end(), [](char c) -> bool { return std::isalnum(c) == 0; }), str.end()); // Convert the string to lowercase std::transform(str.begin(), str.end(), str.begin(), ::tolower); - LogInf("%s", str.c_str()); // See if we still have a valid name after the cleanup if(str.length() < 1) {