From: Mario Date: Tue, 24 Dec 2019 15:32:21 +0000 (+1000) Subject: Use a debug log instead for reporting item pickups (less console spam) X-Git-Tag: xonotic-v0.8.5~1194 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=550ee415dca6960e5fd91d85478a3a3dd8903922;p=xonotic%2Fxonotic-data.pk3dir.git Use a debug log instead for reporting item pickups (less console spam) --- 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;