From 550ee415dca6960e5fd91d85478a3a3dd8903922 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 25 Dec 2019 01:32:21 +1000 Subject: [PATCH] Use a debug log instead for reporting item pickups (less console spam) --- qcsrc/common/items/inventory.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/items/inventory.qh b/qcsrc/common/items/inventory.qh index 536d94a2d..9f0a43a07 100644 --- a/qcsrc/common/items/inventory.qh +++ b/qcsrc/common/items/inventory.qh @@ -42,7 +42,7 @@ NET_HANDLE(ENT_CLIENT_INVENTORY, bool isnew) .int fld = inv_items[it.m_id]; int prev = this.(fld); int next = this.(fld) = ReadByte(); - //LOG_TRACEF("%s: %.0f -> %.0f", it.m_name, prev, next); + LOG_DEBUGF("%s: %.0f -> %.0f", it.m_name, prev, next); } } return true; -- 2.39.2