jruaux      2003/01/22 02:45:54

  Modified:    Eclipse-Plugin/src/java/org/apache/cactus/eclipse/ui
                        CactusPreferences.java
  Log:
  Modified parameter logging with [parameter]
  
  Revision  Changes    Path
  1.6       +13 -9     
jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/ui/CactusPreferences.java
  
  Index: CactusPreferences.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/ui/CactusPreferences.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CactusPreferences.java    22 Jan 2003 10:32:43 -0000      1.5
  +++ CactusPreferences.java    22 Jan 2003 10:45:53 -0000      1.6
  @@ -135,7 +135,7 @@
                   .append("/")
                   .append(store.getString(CONTEXT_URL_PATH));
           String result = buf.toString();
  -        CactusPlugin.log("Cactus preference : ContextURL = " + result);        
  +        CactusPlugin.log("Cactus preference : ContextURL = [" + result + "]");
           return result;
       }
   
  @@ -149,7 +149,8 @@
       {
           IPreferenceStore store = CactusPlugin.getDefault().getPreferenceStore();
           int result = store.getInt(CONTEXT_URL_PORT);
  -        CactusPlugin.log("Cactus preference : ContextURLPort = " + result);
  +        CactusPlugin.log(
  +            "Cactus preference : ContextURLPort = [" + result + "]");
           return result;
       }
   
  @@ -163,7 +164,8 @@
       {
           IPreferenceStore store = CactusPlugin.getDefault().getPreferenceStore();
           String result = store.getString(CONTEXT_URL_PATH);
  -        CactusPlugin.log("Cactus preference : ContextURLPath = " + result);
  +        CactusPlugin.log(
  +            "Cactus preference : ContextURLPath = [" + result + "]");
           return result;
       }
   
  @@ -177,7 +179,7 @@
       {
           IPreferenceStore store = CactusPlugin.getDefault().getPreferenceStore();
           String result = store.getString(JARS_DIR);
  -        CactusPlugin.log("Cactus preference : JarsDir = " + result);
  +        CactusPlugin.log("Cactus preference : JarsDir = [" + result + "]");
           return result;
       }
   
  @@ -191,7 +193,7 @@
       {
           IPreferenceStore store = CactusPlugin.getDefault().getPreferenceStore();
           String result = store.getString(TEMP_DIR);
  -        CactusPlugin.log("Cactus preference : TempDir = " + result);
  +        CactusPlugin.log("Cactus preference : TempDir = [" + result + "]");
           return result;
       }
       /**
  @@ -202,7 +204,7 @@
       {
           IPreferenceStore store = CactusPlugin.getDefault().getPreferenceStore();
           String result = store.getString(TOMCAT40_DIR);
  -        CactusPlugin.log("Cactus preference : Tomcat40Dir = " + result);
  +        CactusPlugin.log("Cactus preference : Tomcat40Dir = [" + result + "]");
           return result;
       }
   
  @@ -214,7 +216,7 @@
       {
           IPreferenceStore store = CactusPlugin.getDefault().getPreferenceStore();
           String result = store.getString(RESIN20_DIR);
  -        CactusPlugin.log("Cactus preference : Resin20Dir = " + result);
  +        CactusPlugin.log("Cactus preference : Resin20Dir = [" + result + "]");
           return result;
       }
   
  @@ -226,7 +228,8 @@
       {
           IPreferenceStore store = CactusPlugin.getDefault().getPreferenceStore();
           String result = store.getString(WEBLOGIC70_DIR);
  -        CactusPlugin.log("Cactus preference : Weblogic70Dir = " + result);
  +        CactusPlugin.log(
  +            "Cactus preference : Weblogic70Dir = [" + result + "]");
           return result;
       }
       
  @@ -254,7 +257,8 @@
           }
           ContainerHome[] result =
               (ContainerHome[]) containerHomes.toArray(new ContainerHome[0]);
  -        CactusPlugin.log("Cactus preference : ContainerHomes = " + result);
  +        CactusPlugin.log(
  +            "Cactus preference : ContainerHomes = [" + result + "]");
           return result;
       }
   }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to