summaryrefslogtreecommitdiff
path: root/src/buffers.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-11-15 13:22:04 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-11-15 13:22:04 +0000
commiteb2663c2dbd168daa536b836d55c9041db7a3d68 (patch)
tree81d6e5d72fbdb12e6bf75e100a674417ee338a4d /src/buffers.py
parent0216ac29dbcf49865e145db42d9fbcfcd2bebd19 (diff)
downloadpoezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.tar.gz
poezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.tar.bz2
poezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.tar.xz
poezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.zip
remove some debug
Diffstat (limited to 'src/buffers.py')
-rw-r--r--src/buffers.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/buffers.py b/src/buffers.py
index 31e227dc..74834834 100644
--- a/src/buffers.py
+++ b/src/buffers.py
@@ -491,7 +491,6 @@ class TextWin(Win):
if txt.startswith('\n'):
txt = txt[1:]
first = False
- log.debug('%s built\n' % len(lines))
return lines
return lines[-len(messages):] # return only the needed number of lines
@@ -1061,7 +1060,6 @@ class CommandInput(Input):
res = Input.do_command(self, key)
if self.on_input:
self.on_input(self.get_text())
- log.debug('do_command returns : %s\n' % res)
return res
def success(self):
@@ -1069,9 +1067,7 @@ class CommandInput(Input):
call the success callback, passing the text as argument
"""
self.on_input = None
- log.debug('before on_success')
res = self.on_success(self.get_text())
- log.debug('after on_success, res: %s'%res)
return res
def abort(self):