From eb2663c2dbd168daa536b836d55c9041db7a3d68 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Mon, 15 Nov 2010 13:22:04 +0000 Subject: remove some debug --- src/buffers.py | 4 ---- src/core.py | 1 - 2 files changed, 5 deletions(-) (limited to 'src') 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): -- cgit v1.2.3