aboutsummaryrefslogtreecommitdiff
path: root/tools/clean_webconsole.py
blob: 64af2dd583d1fa06ba6f2d5a98011f16a6addb74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'''
Removes timestamp and line info from a webgl log
'''

import os, sys

lines = sys.stdin.read().split('\n')

for line in lines:
  if line.startswith('['):
    line = line[15:]
    line = line.split('@')[0]
  print line