summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLichKing255 <54138710+LichKing255@users.noreply.github.com>2019-09-06 01:03:06 +0430
committerStoabrogga <38475780+Stoabrogga@users.noreply.github.com>2019-09-05 22:33:06 +0200
commit3aeb2e564d43a3be06e4cc8bec9de7841a111f0e (patch)
tree3372251361be29d634e642d90b48e5bc69973037
parentf876cdda718f2e41fb7ae41215c824ca2ce2e8d7 (diff)
fix(Core): Build error concerning debug log message (#2265)
-rw-r--r--src/server/game/Handlers/ItemHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Handlers/ItemHandler.cpp b/src/server/game/Handlers/ItemHandler.cpp
index 6eb79bb4d4..b27205534b 100644
--- a/src/server/game/Handlers/ItemHandler.cpp
+++ b/src/server/game/Handlers/ItemHandler.cpp
@@ -941,7 +941,7 @@ void WorldSession::SendListInventory(uint64 vendorGuid)
if (!sConditionMgr->IsObjectMeetToConditions(_player, vendor, conditions))
{
#if defined(ENABLE_EXTRAS) && defined(ENABLE_EXTRA_LOGS)
- sLog->outDebug("SendListInventory: conditions not met for creature entry %u item %u", vendor->GetEntry(), item->item);
+ sLog->outDebug(LOG_FILTER_NETWORKIO, "SendListInventory: conditions not met for creature entry %u item %u", vendor->GetEntry(), item->item);
#endif
continue;
}