From: Ant Zucaro Date: Sat, 21 May 2011 02:48:08 +0000 (-0400) Subject: Git rid of unnecessary debug lines that I forgot to remove before. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=74fe123963c0638bc6631322bc70d6ce0ce04c4c;p=xonotic%2Fxonstat.git Git rid of unnecessary debug lines that I forgot to remove before. --- diff --git a/xonstat/views.py b/xonstat/views.py index 8695e09..2643fe5 100755 --- a/xonstat/views.py +++ b/xonstat/views.py @@ -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: