You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2003/12/15 16:55:32 UTC

cvs commit: ws-axis/java/src/org/apache/axis/transport/http SimpleAxisWorker.java

dims        2003/12/15 07:55:32

  Modified:    java/src/org/apache/axis/transport/http
                        SimpleAxisWorker.java
  Log:
  upgrade the log from debug to info when exception occurs.
  
  Revision  Changes    Path
  1.32      +1 -1      ws-axis/java/src/org/apache/axis/transport/http/SimpleAxisWorker.java
  
  Index: SimpleAxisWorker.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/transport/http/SimpleAxisWorker.java,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- SimpleAxisWorker.java	24 Nov 2003 20:54:47 -0000	1.31
  +++ SimpleAxisWorker.java	15 Dec 2003 15:55:32 -0000	1.32
  @@ -508,7 +508,7 @@
               // out.write(response);
               out.flush();
           } catch (Exception e) {
  -            log.debug(Messages.getMessage("exception00"), e);
  +            log.info(Messages.getMessage("exception00"), e);
           } finally {
               try {
                   if (socket != null) socket.close();