From 2e8d9ed6a12a54adceb527e710aaf419ad9f7beb 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 in GetSpellColumns query '%s' %s --- client_files/import/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/client_files/import/main.cpp b/client_files/import/main.cpp index 3d6511d8f..67cc28373 100644 --- a/client_files/import/main.cpp +++ b/client_files/import/main.cpp @@ -65,7 +65,6 @@ int GetSpellColumns(SharedDatabase *db) { const std::string query = "DESCRIBE spells_new"; auto results = db->QueryDatabase(query); if(!results.Success()) { - Log.Out(Logs::General, Logs::Error, "Error in GetSpellColumns query '%s' %s", query.c_str(), results.ErrorMessage().c_str()); return 0; }