From 1c47e6b90d564c65172f1f4d3d4ea067f54e9158 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 02:56:52 -0600 Subject: [PATCH] Convert 'Unable to get raid id, char not found!' to Error Category --- common/database.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/database.cpp b/common/database.cpp index 6ef6c7485..8beb3336b 100644 --- a/common/database.cpp +++ b/common/database.cpp @@ -3488,7 +3488,7 @@ uint32 Database::GetRaidID(const char* name){ if (row == results.end()) { - std::cout << "Unable to get raid id, char not found!" << std::endl; + Log.Out(Logs::General, Logs::Error, "Unable to get raid id, char not found!"); return 0; }