From 430263de9c3b2d06deb804768202a1352ffcc832 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:53 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error deleting grid '%s': '%s' --- zone/waypoints.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/waypoints.cpp b/zone/waypoints.cpp index 53910190c..0330692da 100644 --- a/zone/waypoints.cpp +++ b/zone/waypoints.cpp @@ -1166,7 +1166,6 @@ void ZoneDatabase::ModifyGrid(Client *client, bool remove, uint32 id, uint8 type std::string query = StringFormat("DELETE FROM grid where id=%i", id); auto results = QueryDatabase(query); if (!results.Success()) - Log.Out(Logs::General, Logs::Error, "Error deleting grid '%s': '%s'", query.c_str(), results.ErrorMessage().c_str()); else if(client) client->LogSQL(query.c_str());