Author: darran.lofthouse(a)jboss.com
Date: 2008-04-25 11:37:10 -0400 (Fri, 25 Apr 2008)
New Revision: 6708
Modified:
stack/native/branches/jbossws-native-2.0.1.SP2_JBPAPP-809/src/main/java/org/jboss/wsf/stack/jbws/RequestHandlerImpl.java
Log:
[JBPAPP-809] Log IOException when closing ServletOutputStream.
Modified:
stack/native/branches/jbossws-native-2.0.1.SP2_JBPAPP-809/src/main/java/org/jboss/wsf/stack/jbws/RequestHandlerImpl.java
===================================================================
---
stack/native/branches/jbossws-native-2.0.1.SP2_JBPAPP-809/src/main/java/org/jboss/wsf/stack/jbws/RequestHandlerImpl.java 2008-04-25
15:35:48 UTC (rev 6707)
+++
stack/native/branches/jbossws-native-2.0.1.SP2_JBPAPP-809/src/main/java/org/jboss/wsf/stack/jbws/RequestHandlerImpl.java 2008-04-25
15:37:10 UTC (rev 6708)
@@ -155,7 +155,7 @@
}
catch (IOException ioex)
{
- log.error("Cannot close output stream");
+ log.error("Cannot close output stream", ioex);
}
}
}
@@ -203,7 +203,7 @@
}
catch (IOException ioex)
{
- log.error("Cannot close output stream");
+ log.error("Cannot close output stream", ioex);
}
}
}
Show replies by date