From 86c82718eca5233d032c4b6c9583dc3747baad1e Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:32 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error updating Owner in database: %s, %s --- ucs/database.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ucs/database.cpp b/ucs/database.cpp index d7ebffbdb..ca9f0f0e8 100644 --- a/ucs/database.cpp +++ b/ucs/database.cpp @@ -281,7 +281,6 @@ void Database::SetChannelOwner(std::string channelName, std::string owner) { owner.c_str(), channelName.c_str()); auto results = QueryDatabase(query); if(!results.Success()) - Log.Out(Logs::Detail, Logs::UCS_Server, "Error updating Owner in database: %s, %s", query.c_str(), results.ErrorMessage().c_str()); }