From b334cc6f762b5732d0dbf3cc28e8d6f5cd808d49 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Fri, 23 Mar 2012 07:29:53 +0100 Subject: [PATCH] removed debug traces --- .../unity-lens-recoll/bin/unity-recoll-daemon.in | 7 ------- .../unity-lens-recoll/recollscope/rclsearch.py | 11 ++--------- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/src/desktop/unity-lens-recoll/bin/unity-recoll-daemon.in b/src/desktop/unity-lens-recoll/bin/unity-recoll-daemon.in index a8a1f026..404e29a2 100755 --- a/src/desktop/unity-lens-recoll/bin/unity-recoll-daemon.in +++ b/src/desktop/unity-lens-recoll/bin/unity-recoll-daemon.in @@ -44,9 +44,6 @@ if result != 1 : print >> sys.stderr, "Failed to own name %s. Bailing out." % BUS_NAME raise SystemExit (1) -rcltrace = open("/tmp/recolenstrace", "a") - -print >> rcltrace, "UNITY RECOLL DAEMON" def create_lens (): # The path for the Lens *must* also match the one in our .lens file from gi.repository import Unity @@ -82,13 +79,9 @@ def create_lens (): lens.props.filters.append(filter) return lens -print >> rcltrace, "UNITY RECOLL DAEMON: create lens" lens = create_lens () -print >> rcltrace, "UNITY RECOLL DAEMON: add local scope" lens.add_local_scope (recollscope.rclsearch.Scope()) # add more local scopes here (remote dbus scopes added automagically) -print >> rcltrace, "UNITY RECOLL DAEMON: add local export" lens.export () -print >> rcltrace, "UNITY RECOLL DAEMON: add local main loop" GObject.MainLoop().run() diff --git a/src/desktop/unity-lens-recoll/recollscope/rclsearch.py b/src/desktop/unity-lens-recoll/recollscope/rclsearch.py index 33f578e3..2adfda16 100755 --- a/src/desktop/unity-lens-recoll/recollscope/rclsearch.py +++ b/src/desktop/unity-lens-recoll/recollscope/rclsearch.py @@ -19,10 +19,6 @@ TYPING_TIMEOUT = 0 class Scope (Unity.Scope): def __init__ (self): - self.trcfile = open("/tmp/recolenstrace", "w") - print >> self.trcfile, "Scope init" - self.trcfile.flush() - Unity.Scope.__init__ (self, dbus_path="/org/recoll/unitylensrecoll/scope/main") # Listen for changes and requests @@ -31,10 +27,7 @@ class Scope (Unity.Scope): # Bliss loaded the apps_tree menu here, let's connect to # the index - print >> self.trcfile, "Connecting to db" self.db = recoll.connect() - print >> self.trcfile, "Done" - self.trcfile.flush() self.db.setAbstractParams(maxchars=200, contextwords=4) @@ -116,8 +109,8 @@ class Scope (Unity.Scope): search_string, model) def _really_do_search(self, search_string, model): - print >> self.trcfile, "really_do_search:[", search_string, "]" - self.trcfile.flush() +# print "really_do_search:[", search_string, "]" + model.clear () if search_string == "": return True