* fix in stacktrace made it work.

* added debug config to analyze.
= from now on logging.debug should be utilized to remark stuff, so final
implementations can ignore such messages.
This commit is contained in:
2015-04-15 00:57:59 +02:00
parent 9bfdd1fb7a
commit 45c7d1e393
5 changed files with 25 additions and 11 deletions

View File

@@ -22,6 +22,7 @@
"""
import re
from base import Log, L_CMBT, Stacktrace
import logging
class CombatLog(Log):
__slots__ = Log.__slots__ + [ '_match_id', 'values']
@@ -215,7 +216,7 @@ class UserEvent(CombatLog):
if line and 'earned medal' in line:
return True
elif line:
print line
logging.debug('UserEvent saw unknown line: %s' % line)
return False
# Action?