From 7246d1069ad562146f1cf1592f6138e7f173e70c Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 4 Dec 2015 15:57:55 +1000 Subject: [PATCH] Make a spammy warning less spammy --- qcsrc/common/movetypes/movetypes.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2