Return-Path: Delivered-To: apmail-incubator-sling-commits-archive@locus.apache.org Received: (qmail 8444 invoked from network); 3 Jun 2008 14:11:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Jun 2008 14:11:20 -0000 Received: (qmail 33831 invoked by uid 500); 3 Jun 2008 14:11:23 -0000 Delivered-To: apmail-incubator-sling-commits-archive@incubator.apache.org Received: (qmail 33784 invoked by uid 500); 3 Jun 2008 14:11:23 -0000 Mailing-List: contact sling-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sling-dev@incubator.apache.org Delivered-To: mailing list sling-commits@incubator.apache.org Received: (qmail 33775 invoked by uid 99); 3 Jun 2008 14:11:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Jun 2008 07:11:23 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Jun 2008 14:10:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0E4AD2388847; Tue, 3 Jun 2008 07:10:58 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r662806 - /incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java Date: Tue, 03 Jun 2008 14:10:57 -0000 To: sling-commits@incubator.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080603141058.0E4AD2388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cziegeler Date: Tue Jun 3 07:10:57 2008 New Revision: 662806 URL: http://svn.apache.org/viewvc?rev=662806&view=rev Log: SLING-505: Remove debug logging from pinger thread. Modified: incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java Modified: incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java URL: http://svn.apache.org/viewvc/incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java?rev=662806&r1=662805&r2=662806&view=diff ============================================================================== --- incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java (original) +++ incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java Tue Jun 3 07:10:57 2008 @@ -896,7 +896,8 @@ // wait first before starting to check synchronized (waitLock) { try { - log(LogService.LOG_DEBUG, "Waiting " + pollTime + " seconds before checking repository"); + // no debug logging, see SLING-505 + // log(LogService.LOG_DEBUG, "Waiting " + pollTime + " seconds before checking repository"); waitLock.wait(pollTime * 1000L); } catch (InterruptedException ie) { // don't care, go ahead @@ -922,9 +923,10 @@ } else { - log(LogService.LOG_DEBUG, - "run: Repository available, checking again in " - + pollTime + " seconds"); + // no debug logging, see SLING-505 + // log(LogService.LOG_DEBUG, + // "run: Repository available, checking again in " + // + pollTime + " seconds"); } } }