From f0197219ab74ad30022cf4ab861a068fe845e00d Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 20 Jan 2015 01:41:44 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in Log IP query ' --- common/database.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/database.cpp b/common/database.cpp index be4812881..1a852f292 100644 --- a/common/database.cpp +++ b/common/database.cpp @@ -203,7 +203,6 @@ void Database::LoginIP(uint32 AccountID, const char* LoginIP) { std::string query = StringFormat("INSERT INTO account_ip SET accid=%i, ip='%s' ON DUPLICATE KEY UPDATE count=count+1, lastused=now()", AccountID, LoginIP); auto results = QueryDatabase(query); if (!results.Success()) - std::cerr << "Error in Log IP query '" << query << "' " << results.ErrorMessage() << std::endl; } int16 Database::CheckStatus(uint32 account_id) {