From 626aa140da0dec0ca8e4e7f3a10fc616bc6e01e8 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:26:06 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in GetMaxSpellID query '%s' %s --- common/shareddb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/shareddb.cpp b/common/shareddb.cpp index a8e83f2f2..afbeca18f 100644 --- a/common/shareddb.cpp +++ b/common/shareddb.cpp @@ -1468,7 +1468,6 @@ int SharedDatabase::GetMaxSpellID() { std::string query = "SELECT MAX(id) FROM spells_new"; auto results = QueryDatabase(query); if (!results.Success()) { - Log.Out(Logs::Detail, Logs::Spells, "Error in GetMaxSpellID query '%s' %s", query.c_str(), results.ErrorMessage().c_str()); return -1; }