From 94ed21204ec272aead586a26ee65bc9eaeb1079b Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Tue, 2 Apr 2024 23:58:39 -0500 Subject: [PATCH] remove test logs --- dGame/dUtilities/SlashCommandHandler.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/dGame/dUtilities/SlashCommandHandler.cpp b/dGame/dUtilities/SlashCommandHandler.cpp index b82e42b8..1e92835f 100644 --- a/dGame/dUtilities/SlashCommandHandler.cpp +++ b/dGame/dUtilities/SlashCommandHandler.cpp @@ -1011,8 +1011,6 @@ namespace GMZeroCommands { if (command.requiredLevel > entity->GetGMLevel()) continue; helpMessage << "/" << command.aliases[0] << ": " << command.help << "\n*"; } - LOG("HELP TEXT IS: \n%s",helpMessage.str().c_str() ); - GameMessages::SendSlashCommandFeedbackText(entity, GeneralUtils::ASCIIToUTF16(helpMessage.str().substr(0, helpMessage.str().size() - 2))); } else { bool foundCommand = false; @@ -1027,7 +1025,6 @@ namespace GMZeroCommands { commandDetails << "Aliases: "; std::copy(command.aliases.begin(), command.aliases.end(), std::ostream_iterator(commandDetails, ", ")); } - LOG("HELP TEXT IS: \n%s",commandDetails.str().c_str() ); GameMessages::SendSlashCommandFeedbackText(entity, GeneralUtils::ASCIIToUTF16(commandDetails.str().substr(0, commandDetails.str().size() - 2))); } }