]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Add debugging output for the request body.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 2 Apr 2011 18:05:57 +0000 (14:05 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 2 Apr 2011 18:05:57 +0000 (14:05 -0400)
xonstat/views.py

index cc92acfa81b934ba7535033de61c7e5632a325d8..54c312580e39da664abee5a087a1bef9b2930eec 100644 (file)
@@ -171,6 +171,9 @@ def stats_submit(request):
     player_events = {}
     players = []
     
+    # for troubleshooting issues...
+    log.debug(request.body)
+
     # main loop over each line of the stats body
     for line in request.body.split('\n'):
         (key, value) = line.strip().split(' ', 1)