Return-Path: Delivered-To: apmail-jakarta-avalon-cvs-archive@apache.org Received: (qmail 67593 invoked from network); 1 Jul 2002 20:14:43 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by 209.66.108.5 with SMTP; 1 Jul 2002 20:14:43 -0000 Received: (qmail 16461 invoked by uid 97); 1 Jul 2002 20:14:57 -0000 Delivered-To: qmlist-jakarta-archive-avalon-cvs@jakarta.apache.org Received: (qmail 16394 invoked by uid 97); 1 Jul 2002 20:14:56 -0000 Mailing-List: contact avalon-cvs-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Avalon CVS List" Reply-To: "Avalon Developers List" Delivered-To: mailing list avalon-cvs@jakarta.apache.org Received: (qmail 16383 invoked by uid 97); 1 Jul 2002 20:14:55 -0000 X-Antivirus: nagoya (v4198 created Apr 24 2002) Date: 1 Jul 2002 20:14:35 -0000 Message-ID: <20020701201435.713.qmail@icarus.apache.org> From: mcconnell@apache.org To: jakarta-avalon-excalibur-cvs@apache.org Subject: cvs commit: jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/registry DefaultRegistry.java X-Spam-Rating: 209.66.108.5 1.6.2 0/1000/N X-Spam-Rating: 209.66.108.5 1.6.2 0/1000/N mcconnell 2002/07/01 13:14:35 Modified: assembly/src/java/org/apache/excalibur/merlin/registry DefaultRegistry.java Log: enhanced log info for test scenario Revision Changes Path 1.2 +31 -3 jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/registry/DefaultRegistry.java Index: DefaultRegistry.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/registry/DefaultRegistry.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- DefaultRegistry.java 1 Jul 2002 04:27:15 -0000 1.1 +++ DefaultRegistry.java 1 Jul 2002 20:14:35 -0000 1.2 @@ -287,6 +287,16 @@ */ public void execute() throws Exception { + + getLogger().info( + "\n" + + "\n==============================================================" + + "\nBased on the component declared in the profile.xml file " + + "\nlist of the components implied by dependecies to supports " + + "\nexecution." + + "\n==============================================================" + ); + // // the m_profiles table contain all of the profiles that // have been selected to act as potential service provider for all of the @@ -303,6 +313,15 @@ getLogger().debug("profile: " + profiles[i] ); map.add( (ComponentMetaData) profiles[i] ); } + + getLogger().info( + "\n" + + "\n==============================================================" + + "\nVerify the assembly of componentn using the containerkit " + + "\nverification tools." + + "\n==============================================================" + ); + ComponentMetaData[] context = (ComponentMetaData[]) vector.toArray(new ComponentMetaData[0] ); verify( context ); @@ -310,17 +329,26 @@ // build the ordered sequence of dependecies // + getLogger().info( + "\n" + + "\n==============================================================" + + "\nPrepare the component startup ordering. This is not currently " + + "\nmaking sense - probably using a wrong approach to DependencyMap " + + "\nusage - more work needed here." + + "\n==============================================================" + ); + getLogger().debug("startup sequence"); ComponentMetaData[] startup = map.getStartupGraph(); for( int i=0; i For additional commands, e-mail: