]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Make debug messages less spammy
authorMario <zacjardine@y7mail.com>
Fri, 25 Sep 2015 07:37:51 +0000 (17:37 +1000)
committerMario <zacjardine@y7mail.com>
Fri, 25 Sep 2015 07:37:51 +0000 (17:37 +1000)
qcsrc/common/minigames/cl_minigames.qc

index 24f0b2dbc7af1b5f3315bf45d57192d7e09b074d..f896696821d3603d3a6f0a3f08c2596887846e73 100644 (file)
@@ -95,7 +95,7 @@ MINIGAME_SIMPLELINKED_ENTITIES
 
 void minigame_autoclean_entity(entity e)
 {
-       LOG_TRACE("CL Auto-cleaned: ",ftos(num_for_edict(e)), " (",e.classname,")\n");
+       LOG_DEBUG("CL Auto-cleaned: ",ftos(num_for_edict(e)), " (",e.classname,")\n");
        remove(e);
 }
 
@@ -235,7 +235,7 @@ void ent_read_minigame()
                        minigame_read_owner();
                        float ent = ReadLong();
                        self.minigame_playerslot = ent;
-                       LOG_TRACE("Player: ",GetPlayerName(ent-1),"\n");
+                       LOG_DEBUG("Player: ",GetPlayerName(ent-1),"\n");
 
                        activate = (ent == player_localnum+1 && self.owner && self.owner != active_minigame);
 
@@ -258,9 +258,9 @@ void ent_read_minigame()
 
        if ( sf & MINIG_SF_CREATE )
        {
-               //LOG_TRACE("CL Reading entity: ",ftos(num_for_edict(self)),
-               //      " classname:",self.classname," enttype:",ftos(self.enttype) );
-               //LOG_TRACE(" sf:",ftos(sf)," netname:",self.netname,"\n\n");
+               LOG_DEBUG("CL Reading entity: ",ftos(num_for_edict(self)),
+                       " classname:",self.classname," enttype:",ftos(self.enttype) );
+               LOG_DEBUG(" sf:",ftos(sf)," netname:",self.netname,"\n\n");
        }
 }
 #undef ReadString