summaryrefslogtreecommitdiff
path: root/src
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
parent0216ac29dbcf49865e145db42d9fbcfcd2bebd19 (diff)
downloadpoezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.tar.gz
poezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.tar.bz2
poezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.tar.xz
poezio-eb2663c2dbd168daa536b836d55c9041db7a3d68.zip
remove some debug
Diffstat (limited to 'src')
-rw-r--r--src/buffers.py4
-rw-r--r--src/core.py1
2 files changed, 0 insertions, 5 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):
diff --git a/src/core.py b/src/core.py
index 2d595cb3..560a5ab4 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1345,7 +1345,6 @@ class Core(object):
return
res = self.current_tab().on_input(key)
if res:
- log.debug('RES is true')
self.refresh_window()
def on_roster_enter_key(self, roster_row):