Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 7497A431FAF for ; Thu, 29 Nov 2012 02:04:37 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VTdSBTTEpSGy for ; Thu, 29 Nov 2012 02:04:37 -0800 (PST) Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id E5737431FAE for ; Thu, 29 Nov 2012 02:04:36 -0800 (PST) Received: by mail-wg0-f45.google.com with SMTP id dq11so6555716wgb.2 for ; Thu, 29 Nov 2012 02:04:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=n9HTXvrObUEO+ftDr+ERmZlfIg/fP4f1dU7jEgNstTE=; b=eAu/uFf7nwG7/LjMqT+rAGXNvOFAtBgzGIJke/xUVg1d3CEcWm6kAgfgXDcVfd5LHr aVigUsJvPoVDafzgqerXNmes/CI/hWcMmEbHYERY6vHfxTwe6yiEev62y1ec8pCGd7J8 F+PU+TwYU6ngxr/QUgiTnidyQgc77MMJoJJ6zGTuwrIRHVHjgguloiHAEJtyWPRwdS1B NY/Pa1nRP6SCRyuo1sdKdJdgfhRJtPp/o2Nk0V1a9v97cY3QL/38SlAmAIONXvUrv+vI 6dp9WSktavsiezjXVRlPpFKLsu/w8sh5FM340fM4Q/A75mfWtiFnUUtMqROl+0OjLteG 4Rcw== Received: by 10.180.105.105 with SMTP id gl9mr13425601wib.17.1354183474373; Thu, 29 Nov 2012 02:04:34 -0800 (PST) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPS id u6sm1681797wif.2.2012.11.29.02.04.32 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 29 Nov 2012 02:04:33 -0800 (PST) From: markwalters1009 To: notmuch@notmuchmail.org Subject: [PATCH] contrib: pick: remove some debug timing messages Date: Thu, 29 Nov 2012 10:04:34 +0000 Message-Id: <1354183474-25707-1-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 10:04:37 -0000 When I submitted notmuch-pick I deleted most of the debug messages but I missed two cases. Remove them now. --- contrib/notmuch-pick/notmuch-pick.el | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el index db2a7cb..ada9af7 100644 --- a/contrib/notmuch-pick/notmuch-pick.el +++ b/contrib/notmuch-pick/notmuch-pick.el @@ -807,8 +807,6 @@ Complete list of currently available key bindings: (message-arg "--entire-thread")) (if (equal (car (process-lines notmuch-command "count" search-args)) "0") (setq search-args basic-query)) - (message "starting parser %s" - (format-time-string "%r")) (if notmuch-pick-asynchronous-parser (let ((proc (start-process "notmuch-pick" buffer @@ -831,9 +829,7 @@ Complete list of currently available key bindings: (list "--body=false" message-arg search-args))) (save-excursion (goto-char (point-max)) - (insert "End of search results.\n")) - (message "sync parser finished %s" - (format-time-string "%r")))))) + (insert "End of search results.\n")))))) (defun notmuch-pick (&optional query query-context buffer-name show-first-match) -- 1.7.9.1