Return-Path: Delivered-To: apmail-incubator-roller-commits-archive@www.apache.org Received: (qmail 99675 invoked from network); 4 Nov 2006 00:25:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Nov 2006 00:25:25 -0000 Received: (qmail 90453 invoked by uid 500); 4 Nov 2006 00:25:36 -0000 Delivered-To: apmail-incubator-roller-commits-archive@incubator.apache.org Received: (qmail 90426 invoked by uid 500); 4 Nov 2006 00:25:36 -0000 Mailing-List: contact roller-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: roller-dev@incubator.apache.org Delivered-To: mailing list roller-commits@incubator.apache.org Received: (qmail 90415 invoked by uid 99); 4 Nov 2006 00:25:36 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2006 16:25:36 -0800 X-ASF-Spam-Status: No, hits=-8.6 required=10.0 tests=ALL_TRUSTED,INFO_TLD,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2006 16:25:24 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id DC4631A984A; Fri, 3 Nov 2006 16:24:59 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r471071 - /incubator/roller/trunk/src/org/apache/roller/business/search/operations/WriteToIndexOperation.java Date: Sat, 04 Nov 2006 00:24:59 -0000 To: roller-commits@incubator.apache.org From: agilliland@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061104002459.DC4631A984A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: agilliland Date: Fri Nov 3 16:24:59 2006 New Revision: 471071 URL: http://svn.apache.org/viewvc?view=rev&rev=471071 Log: changing log levels from info to debug. Modified: incubator/roller/trunk/src/org/apache/roller/business/search/operations/WriteToIndexOperation.java Modified: incubator/roller/trunk/src/org/apache/roller/business/search/operations/WriteToIndexOperation.java URL: http://svn.apache.org/viewvc/incubator/roller/trunk/src/org/apache/roller/business/search/operations/WriteToIndexOperation.java?view=diff&rev=471071&r1=471070&r2=471071 ============================================================================== --- incubator/roller/trunk/src/org/apache/roller/business/search/operations/WriteToIndexOperation.java (original) +++ incubator/roller/trunk/src/org/apache/roller/business/search/operations/WriteToIndexOperation.java Fri Nov 3 16:24:59 2006 @@ -38,9 +38,9 @@ public void run() { try { manager.getReadWriteLock().writeLock().acquire(); - mLogger.info("Starting search index operation"); + mLogger.debug("Starting search index operation"); doRun(); - mLogger.info("Search index operation complete"); + mLogger.debug("Search index operation complete"); } catch (InterruptedException e) { mLogger.error("Error acquiring write lock on index", e); } finally {