Hi All,

        No great changes here. Just a small diff to keep the 'Looking up'
        logging consistent among components.

        Cheers,

        Marcus

-- 
        .....
     ,,$$$$$$$$$,      Marcus Crafter
    ;$'      '$$$$:    Computer Systems Engineer
    $:         $$$$:   Open Software Associates GmbH
     $       o_)$$$:   82-84 Mainzer Landstrasse
     ;$,    _/\ &&:'   60327 Frankfurt Germany
       '     /( &&&
           \_&&&&'     Email : [EMAIL PROTECTED]
          &&&&.        Business Hours : +49 69 9757 200
    &&&&&&&:
Index: components/parser/JaxpParser.java
===================================================================
RCS file: 
/home/cvspublic/xml-cocoon2/src/org/apache/cocoon/components/parser/JaxpParser.java,v
retrieving revision 1.6
diff -u -r1.6 JaxpParser.java
--- components/parser/JaxpParser.java   2001/08/20 13:55:12     1.6
+++ components/parser/JaxpParser.java   2001/08/20 17:38:41
@@ -65,7 +65,7 @@
     public void compose(ComponentManager manager) throws ComponentException {
       try {
         this.manager = manager;
-        getLogger().debug("Looking up Resolver" + Resolver.ROLE);
+        getLogger().debug("Looking up " + Resolver.ROLE);
         this.resolver = (Resolver)manager.lookup(Resolver.ROLE);
       } catch(ComponentException e) {
         getLogger().error("Error in JaxpParser!",e);
Index: components/store/MRUMemoryStore.java
===================================================================
RCS file: 
/home/cvspublic/xml-cocoon2/src/org/apache/cocoon/components/store/MRUMemoryStore.java,v

retrieving revision 1.11
diff -u -r1.11 MRUMemoryStore.java
--- components/store/MRUMemoryStore.java        2001/08/20 15:46:08     1.11
+++ components/store/MRUMemoryStore.java        2001/08/20 17:38:41
@@ -112,7 +112,7 @@
   public void compose(ComponentManager manager) throws ComponentException {
     try {
       this.manager = manager;
-      getLogger().debug("Looking up FilesystemStore" + FilesystemStore.ROLE);
+      getLogger().debug("Looking up " + FilesystemStore.ROLE);
       this.fsstore = (Store)manager.lookup(Store.ROLE + "/Filesystem");
     } catch(ComponentException e) {
       getLogger().error("Error in compose()!", e);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to