You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rpc-dev@xml.apache.org by dl...@apache.org on 2002/08/09 11:15:58 UTC

cvs commit: xml-rpc/src/java/org/apache/xmlrpc XmlRpcClient.java

dlr         2002/08/09 02:15:58

  Modified:    src/java/org/apache/xmlrpc XmlRpcClient.java
  Log:
  Switched System.err println for general debugging statements to
  System.out.
  
  Revision  Changes    Path
  1.11      +4 -4      xml-rpc/src/java/org/apache/xmlrpc/XmlRpcClient.java
  
  Index: XmlRpcClient.java
  ===================================================================
  RCS file: /home/cvs/xml-rpc/src/java/org/apache/xmlrpc/XmlRpcClient.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -u -r1.10 -r1.11
  --- XmlRpcClient.java	7 Aug 2002 17:07:12 -0000	1.10
  +++ XmlRpcClient.java	9 Aug 2002 09:15:57 -0000	1.11
  @@ -388,7 +388,7 @@
   
               if (XmlRpc.debug)
               {
  -                System.err.println("Client calling procedure '" + method
  +                System.out.println("Client calling procedure '" + method
                           + "' with parameters " + params);
                   now = System.currentTimeMillis();
               }
  @@ -460,7 +460,7 @@
               }
               if (XmlRpc.debug)
               {
  -                System.err.println("Spent " + (System.currentTimeMillis() - now)
  +                System.out.println("Spent " + (System.currentTimeMillis() - now)
                           + " in request");
               }
               return result;
  @@ -559,7 +559,7 @@
               XmlRpcClient client = new XmlRpcClientLite(url);
               try
               {
  -                System.err.println(client.execute(method, v));
  +                System.out.println(client.execute(method, v));
               }
               catch(Exception ex)
               {