From 34c60221019bfab49550786daa86b85b84c868a1 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:05 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error runing inventory verification query '%s': %s --- common/shareddb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/shareddb.cpp b/common/shareddb.cpp index 785888ff5..5f77094a2 100644 --- a/common/shareddb.cpp +++ b/common/shareddb.cpp @@ -124,7 +124,6 @@ bool SharedDatabase::VerifyInventory(uint32 account_id, int16 slot_id, const Ite account_id, slot_id); auto results = QueryDatabase(query); if (!results.Success()) { - Log.Out(Logs::General, Logs::Error, "Error runing inventory verification query '%s': %s", query.c_str(), results.ErrorMessage().c_str()); //returning true is less harmful in the face of a query error return true; }