You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by mp...@apache.org on 2002/12/31 11:22:44 UTC

cvs commit: jakarta-turbine-torque/src/java/org/apache/torque/engine/database/transform XmlToAppData.java

mpoeschl    2002/12/31 02:22:44

  Modified:    src/java/org/apache/torque/engine/database/transform
                        XmlToAppData.java
  Log:
  the 'Parsing file .. ' messages should go to System.out
  
  Revision  Changes    Path
  1.19      +3 -2      jakarta-turbine-torque/src/java/org/apache/torque/engine/database/transform/XmlToAppData.java
  
  Index: XmlToAppData.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/src/java/org/apache/torque/engine/database/transform/XmlToAppData.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- XmlToAppData.java	20 Dec 2002 16:39:21 -0000	1.18
  +++ XmlToAppData.java	31 Dec 2002 10:22:44 -0000	1.19
  @@ -185,7 +185,8 @@
               BufferedReader br = new BufferedReader(fr);
               try
               {
  -                System.err.println("Parsing file: '" + (new File(xmlFile)).getName() + "'");
  +                System.out.println("Parsing file: '"
  +                        + (new File(xmlFile)).getName() + "'");
                   InputSource is = new InputSource(br);
                   parser.parse(is, this);
               }