]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Git rid of unnecessary debug lines that I forgot to remove before.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 21 May 2011 02:48:08 +0000 (22:48 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 21 May 2011 02:48:08 +0000 (22:48 -0400)
xonstat/views.py

index 8695e09e939df312f67ee3406b91f3dccaf166bf..2643fe58f62fad8fbf65af914705383359affd0e 100755 (executable)
@@ -353,7 +353,6 @@ def create_player_weapon_stats(session=None, player=None,
     for (key,value) in player_events.items():
         matched = re.search("acc-(.*?)-cnt-fired", key)
         if matched:
-            log.debug("Matched key: {0}".format(key))
             weapon_cd = matched.group(1)
             pwstat = PlayerWeaponStat()
             pwstat.player_id = player.player_id
@@ -461,7 +460,6 @@ def stats_submit(request):
     
         has_real_players = False
         for player_events in players:
-            log.debug(player_events['P'])
             if not player_events['P'].startswith('bot'):
                 if 'joins' in player_events and 'matches' in player_events\
                     and 'scoreboardvalid' in player_events: