Return-Path: Delivered-To: apmail-felix-commits-archive@www.apache.org Received: (qmail 44476 invoked from network); 5 Jul 2009 16:55:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 Jul 2009 16:55:44 -0000 Received: (qmail 15749 invoked by uid 500); 5 Jul 2009 16:55:55 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 15703 invoked by uid 500); 5 Jul 2009 16:55:55 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 15694 invoked by uid 99); 5 Jul 2009 16:55:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Jul 2009 16:55:55 +0000 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; Sun, 05 Jul 2009 16:55:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 02E552388896; Sun, 5 Jul 2009 16:55:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r791273 - /felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java Date: Sun, 05 Jul 2009 16:55:32 -0000 To: commits@felix.apache.org From: filippo@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090705165533.02E552388896@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: filippo Date: Sun Jul 5 16:55:32 2009 New Revision: 791273 URL: http://svn.apache.org/viewvc?rev=791273&view=rev Log: FELIX-1301 Limit FileInstall configuration information to one line in the output. Patch submitted by Sahoo Modified: felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java Modified: felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java URL: http://svn.apache.org/viewvc/felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java?rev=791273&r1=791272&r2=791273&view=diff ============================================================================== --- felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java (original) +++ felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java Sun Jul 5 16:55:32 2009 @@ -107,10 +107,10 @@ */ public void run() { - log(POLL + " (ms) " + poll, null); - log(DIR + " " + watchedDirectory.getAbsolutePath(), null); - log(DEBUG + " " + debug, null); - log(START_NEW_BUNDLES + " " + startBundles, null); + log("{" + POLL + " (ms) = " + poll + ", " + + DIR + " = " + watchedDirectory.getAbsolutePath() + ", " + + DEBUG + " = " + debug + ", " + + START_NEW_BUNDLES + " = " + startBundles + "}", null); initializeCurrentManagedBundles(); Map currentManagedConfigs = new HashMap(); // location -> Long(time) while (!interrupted())