From dfeb6e62a48d5664d480488dd7eda3485a069d76 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sat, 24 Jan 2015 04:55:03 -0600 Subject: [PATCH] Changed a log entry to use Trade category instead of none --- zone/common.h | 6 ++---- zone/trading.cpp | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/zone/common.h b/zone/common.h index 3639f74a0..8ec520646 100644 --- a/zone/common.h +++ b/zone/common.h @@ -560,10 +560,8 @@ public: // Audit trade void LogTrade(); - // Debug only method - #if (EQDEBUG >= 9) - void DumpTrade(); - #endif + void DumpTrade(); + public: // Object state diff --git a/zone/trading.cpp b/zone/trading.cpp index f49620545..4d30691f5 100644 --- a/zone/trading.cpp +++ b/zone/trading.cpp @@ -588,7 +588,7 @@ void Client::FinishTrade(Mob* tradingWith, bool finalizer, void* event_entry, st break; if (partial_inst->GetID() != inst->GetID()) { - Log.Out(Logs::Detail, Logs::None, "[CLIENT] Client::ResetTrade() - an incompatible location reference was returned by Inventory::FindFreeSlotForTradeItem()"); + Log.Out(Logs::Detail, Logs::Trading, "[CLIENT] Client::ResetTrade() - an incompatible location reference was returned by Inventory::FindFreeSlotForTradeItem()"); break; }