From 04ae8b1707ee22ab6a09858cf95be32411dbe220 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:44 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in LoadDBEvent query '%s': %s --- zone/spawn2.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/spawn2.cpp b/zone/spawn2.cpp index 1e12f1383..290af91f3 100644 --- a/zone/spawn2.cpp +++ b/zone/spawn2.cpp @@ -693,7 +693,6 @@ bool SpawnConditionManager::LoadDBEvent(uint32 event_id, SpawnEvent &event, std: "FROM spawn_events WHERE id = %d", event_id); auto results = database.QueryDatabase(query); if (!results.Success()) { - Log.Out(Logs::General, Logs::Error, "Error in LoadDBEvent query '%s': %s", query.c_str(), results.ErrorMessage().c_str()); return false; }