Return-Path: Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: (qmail 56333 invoked from network); 22 Sep 2010 05:46:51 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 22 Sep 2010 05:46:51 -0000 Received: (qmail 20586 invoked by uid 500); 22 Sep 2010 05:46:51 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 20530 invoked by uid 500); 22 Sep 2010 05:46:49 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 20523 invoked by uid 99); 22 Sep 2010 05:46:49 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Sep 2010 05:46:49 +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; Wed, 22 Sep 2010 05:46:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6340F23889EA; Wed, 22 Sep 2010 05:46:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r999768 - /continuum/trunk/continuum-buildagent/continuum-buildagent-core/src/main/java/org/apache/continuum/buildagent/ContinuumBuildAgentServiceImpl.java Date: Wed, 22 Sep 2010 05:46:10 -0000 To: commits@continuum.apache.org From: ctan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100922054610.6340F23889EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ctan Date: Wed Sep 22 05:46:10 2010 New Revision: 999768 URL: http://svn.apache.org/viewvc?rev=999768&view=rev Log: added logs in isProjectGroupInQueue Modified: continuum/trunk/continuum-buildagent/continuum-buildagent-core/src/main/java/org/apache/continuum/buildagent/ContinuumBuildAgentServiceImpl.java Modified: continuum/trunk/continuum-buildagent/continuum-buildagent-core/src/main/java/org/apache/continuum/buildagent/ContinuumBuildAgentServiceImpl.java URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-buildagent/continuum-buildagent-core/src/main/java/org/apache/continuum/buildagent/ContinuumBuildAgentServiceImpl.java?rev=999768&r1=999767&r2=999768&view=diff ============================================================================== --- continuum/trunk/continuum-buildagent/continuum-buildagent-core/src/main/java/org/apache/continuum/buildagent/ContinuumBuildAgentServiceImpl.java (original) +++ continuum/trunk/continuum-buildagent/continuum-buildagent-core/src/main/java/org/apache/continuum/buildagent/ContinuumBuildAgentServiceImpl.java Wed Sep 22 05:46:10 2010 @@ -780,6 +780,7 @@ public class ContinuumBuildAgentServiceI { if ( task.getProjectGroupId() == projectGroupId ) { + log.debug( "projectGroup {} is in prepare build queue", projectGroupId ); return true; } } @@ -788,6 +789,7 @@ public class ContinuumBuildAgentServiceI if ( currentPrepareBuildTask != null && currentPrepareBuildTask.getProjectGroupId() == projectGroupId ) { + log.debug( "projectGroup {} is currently preparing build", projectGroupId ); return true; } @@ -795,6 +797,7 @@ public class ContinuumBuildAgentServiceI { if ( task.getProjectGroupId() == projectGroupId ) { + log.debug( "projectGroup {} is in build queue", projectGroupId ); return true; } } @@ -803,6 +806,7 @@ public class ContinuumBuildAgentServiceI if ( currentBuildTask != null && currentBuildTask.getProjectGroupId() == projectGroupId ) { + log.debug( "projectGroup {} is currently building", projectGroupId ); return true; } }