From 8f96f52c047b45f14e152c04feb5cc3e68f68673 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 20 Jan 2015 01:42:18 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in UpdateKarma query ' --- zone/zonedb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/zonedb.cpp b/zone/zonedb.cpp index 78e18ebdf..7a39c7b95 100644 --- a/zone/zonedb.cpp +++ b/zone/zonedb.cpp @@ -2741,7 +2741,6 @@ void ZoneDatabase::UpdateKarma(uint32 acct_id, uint32 amount) std::string query = StringFormat("UPDATE account SET karma = %i WHERE id = %i", amount, acct_id); auto results = QueryDatabase(query); if (!results.Success()) - std::cerr << "Error in UpdateKarma query '" << query << "' " << results.ErrorMessage().c_str() << std::endl; }