sebb        2003/10/08 18:02:53

  Modified:    src/core/org/apache/jmeter/engine ClientJMeterEngine.java
  Log:
  Demote warning messages to informational
  
  Revision  Changes    Path
  1.10      +8 -8      
jakarta-jmeter/src/core/org/apache/jmeter/engine/ClientJMeterEngine.java
  
  Index: ClientJMeterEngine.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/engine/ClientJMeterEngine.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ClientJMeterEngine.java   25 Jun 2003 21:18:04 -0000      1.9
  +++ ClientJMeterEngine.java   9 Oct 2003 01:02:53 -0000       1.10
  @@ -67,7 +67,7 @@
   
   /**
    * @author     $Author$
  - * @version    $Revision$
  + * @version    $Revision$ Updated on: $Date$
    */
   public class ClientJMeterEngine implements JMeterEngine,Runnable
   {
  @@ -107,9 +107,9 @@
   
       public void runTest()
       {
  -        log.warn("about to run remote test");
  +        log.info("about to run remote test");
           new Thread(this).start();
  -        log.warn("done initiating run command");
  +        log.info("done initiating run command");
       }
   
       public void stopTest()
  @@ -141,7 +141,7 @@
        */
       public void run()
       {
  -        log.warn("running clientengine run method");
  +        log.info("running clientengine run method");
           testListeners = new SearchByClass(TestListener.class);
           getTestTree().traverse(testListeners);
           sampleListeners = new ConvertListeners();
  @@ -149,11 +149,11 @@
           try
           {
               remote.setHost(host);
  -            log.warn("sent host info");
  +            log.info("sent host ="+host);
               remote.configure(test);
  -            log.warn("sent test");
  +            log.info("sent test");
               remote.runTest();
  -            log.warn("sent run command");
  +            log.info("sent run command");
           }
           catch(Exception ex)
           {
  
  
  

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

Reply via email to