User: fleury  
  Date: 00/08/17 20:21:14

  Modified:    src/main/test/jboss/testdb TestDBDriver.java
  Log:
  Logger messages and clean up for binary
  
  Revision  Changes    Path
  1.2       +2 -2      jboss/src/main/test/jboss/testdb/TestDBDriver.java
  
  Index: TestDBDriver.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jboss/src/main/test/jboss/testdb/TestDBDriver.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestDBDriver.java 2000/06/05 03:18:43     1.1
  +++ TestDBDriver.java 2000/08/18 03:21:14     1.2
  @@ -12,7 +12,7 @@
   /**
    * Database driver for unit tests.  Creates connections that implement virtually
    * nothing - enough to test with, in other words.
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    * @author Aaron Mulder ([EMAIL PROTECTED])
    */
   public class TestDBDriver implements Driver {
  @@ -23,8 +23,8 @@
           try {
               DriverManager.registerDriver(TestDBDriver.instance());
           } catch(SQLException e) {
  -            System.out.println("Unable to register Test DB pool driver!");
  -            e.printStackTrace();
  +            Logger.log("Unable to register Test DB pool driver!");
  +            Logger.exception(e);
           }
       }
       public static TestDBDriver instance() {
  
  
  

Reply via email to