From 590fa78539043b53b068fdd4ad8329ca18da757a Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 20 Jan 2015 01:42:04 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in SetBotInspectMessage query ' --- common/shareddb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/shareddb.cpp b/common/shareddb.cpp index bef8010e4..3cdca5a23 100644 --- a/common/shareddb.cpp +++ b/common/shareddb.cpp @@ -1983,6 +1983,5 @@ void SharedDatabase::SetBotInspectMessage(uint32 botid, const InspectMessage_Str std::string query = StringFormat("UPDATE bots SET BotInspectMessage = '%s' WHERE BotID = %i", msg.c_str(), botid); auto results = QueryDatabase(query); if (!results.Success()) - std::cerr << "Error in SetBotInspectMessage query '" << query << "' " << results.ErrorMessage() << std::endl; }