diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2012-12-02 18:25:35 +0100 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2012-12-02 18:25:35 +0100 |
commit | bedaa21f69090e9c0f3f7de3443ac2b7d775113d (patch) | |
tree | b6a6d3425152d6317f7f00ae7cb8b323425b69bf /src/server/game/Handlers/ItemHandler.cpp | |
parent | e150393c9531814adc81ac0dda0f4799e6b9e195 (diff) |
Core/Condition: Move log messages to debug
Diffstat (limited to 'src/server/game/Handlers/ItemHandler.cpp')
-rw-r--r-- | src/server/game/Handlers/ItemHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Handlers/ItemHandler.cpp b/src/server/game/Handlers/ItemHandler.cpp index 523a1b9453e..2053f14e814 100644 --- a/src/server/game/Handlers/ItemHandler.cpp +++ b/src/server/game/Handlers/ItemHandler.cpp @@ -780,7 +780,7 @@ void WorldSession::SendListInventory(uint64 vendorGuid) ConditionList conditions = sConditionMgr->GetConditionsForNpcVendorEvent(vendor->GetEntry(), item->item); if (!sConditionMgr->IsObjectMeetToConditions(_player, vendor, conditions)) { - sLog->outError(LOG_FILTER_CONDITIONSYS, "SendListInventory: conditions not met for creature entry %u item %u", vendor->GetEntry(), item->item); + sLog->outDebug(LOG_FILTER_CONDITIONSYS, "SendListInventory: conditions not met for creature entry %u item %u", vendor->GetEntry(), item->item); continue; } |