]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Make a spammy warning less spammy
authorMario <mario@smbclan.net>
Fri, 4 Dec 2015 05:57:55 +0000 (15:57 +1000)
committerMario <mario@smbclan.net>
Fri, 4 Dec 2015 06:01:23 +0000 (16:01 +1000)
qcsrc/common/movetypes/movetypes.qc

index e3ebd98ab90df209e2f5feeda065198c134df2de..3cce33c2943ec1da0559eac46ed8d44672b6e875 100644 (file)
@@ -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;