Remove Duplicative MySQL Error: Failed to load channels. %s %s

This commit is contained in:
Akkadius 2015-01-19 05:25:20 -06:00
parent 72359b54f0
commit 8b5a623c75

View File

@ -248,7 +248,6 @@ bool Database::LoadChatChannels() {
const std::string query = "SELECT `name`, `owner`, `password`, `minstatus` FROM `chatchannels`";
auto results = QueryDatabase(query);
if (!results.Success()) {
Log.Out(Logs::Detail, Logs::UCS_Server, "Failed to load channels. %s %s", query.c_str(), results.ErrorMessage().c_str());
return false;
}