sebb        2004/02/25 16:34:34

  Modified:    src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/sampler
                        JDBCSampler.java
  Log:
  Add some debugging
  
  Revision  Changes    Path
  1.26      +4 -2      
jakarta-jmeter/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/sampler/JDBCSampler.java
  
  Index: JDBCSampler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/sampler/JDBCSampler.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- JDBCSampler.java  12 Feb 2004 00:33:56 -0000      1.25
  +++ JDBCSampler.java  26 Feb 2004 00:34:34 -0000      1.26
  @@ -274,6 +274,7 @@
   
       public synchronized void testStarted()
       {
  +     log.debug("testStarted(), thread: "+Thread.currentThread().getName());
           // The first call to getKey for a given key will set up the connection
           // pool.  This can take awhile, so do it while the test is starting
           // instead of waiting for the first sample.
  @@ -294,6 +295,7 @@
   
       public synchronized void testEnded()
       {
  +     log.debug("testEndded(), thread: "+Thread.currentThread().getName());
           manager.shutdown();
           dbkey = null;
       }
  
  
  

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

Reply via email to