From: Mario Date: Fri, 4 Dec 2015 05:57:55 +0000 (+1000) Subject: Make a spammy warning less spammy X-Git-Tag: xonotic-v0.8.2~1561 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=7246d1069ad562146f1cf1592f6138e7f173e70c;p=xonotic%2Fxonotic-data.pk3dir.git Make a spammy warning less spammy --- diff --git a/qcsrc/common/movetypes/movetypes.qc b/qcsrc/common/movetypes/movetypes.qc index e3ebd98ab..3cce33c29 100644 --- a/qcsrc/common/movetypes/movetypes.qc +++ b/qcsrc/common/movetypes/movetypes.qc @@ -441,11 +441,11 @@ bool _Movetype_UnstickEntity(entity this) // SV_UnstickEntity if(!_Movetype_TestEntityPosition(this, '0 0 -1' * i)) goto success; if(!_Movetype_TestEntityPosition(this, '0 0 1' * i)) goto success; } - LOG_TRACEF("Can't unstick an entity (edict: %d, classname: %s, origin: %s)\n", + LOG_DEBUG("Can't unstick an entity (edict: %d, classname: %s, origin: %s)\n", num_for_edict(this), this.classname, vtos(this.move_origin)); return false; : success; - LOG_TRACEF("Sucessfully unstuck an entity (edict: %d, classname: %s, origin: %s)\n", + LOG_DEBUG("Sucessfully unstuck an entity (edict: %d, classname: %s, origin: %s)\n", num_for_edict(this), this.classname, vtos(this.move_origin)); _Movetype_LinkEdict(this, true); return true;