diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-03 05:44:21 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-03 05:44:21 +0000 |
| commit | 2b8099549431ec55aa87f4ccd35f07d93485fd6f (patch) | |
| tree | 5c5ba6eee28d3e2fb0044c579176662619e7814c /RecordTimer.py | |
| parent | b84861d1353fc1a0623e0529e928082004926671 (diff) | |
| download | enigma2-2b8099549431ec55aa87f4ccd35f07d93485fd6f.tar.gz enigma2-2b8099549431ec55aa87f4ccd35f07d93485fd6f.zip | |
logging slows the timer down very much
Diffstat (limited to 'RecordTimer.py')
| -rw-r--r-- | RecordTimer.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/RecordTimer.py b/RecordTimer.py index 2fb923ba..3d9ff8ef 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -303,13 +303,13 @@ class RecordTimer(timer.Timer): list.append(' disabled="' + str(int(timer.disabled)) + '"') list.append('>\n') - for time, code, msg in timer.log_entries: - list.append('<log') - list.append(' code="' + str(code) + '"') - list.append(' time="' + str(time) + '"') - list.append('>') - list.append(str(msg)) - list.append('</log>\n') + #for time, code, msg in timer.log_entries: + #list.append('<log') + #list.append(' code="' + str(code) + '"') + #list.append(' time="' + str(time) + '"') + #list.append('>') + #list.append(str(msg)) + #list.append('</log>\n') list.append('</timer>\n') |
