From: <rb...@us...> - 2018-07-18 07:23:21
|
Revision: 15483 http://sourceforge.net/p/htmlunit/code/15483 Author: rbri Date: 2018-07-18 07:23:18 +0000 (Wed, 18 Jul 2018) Log Message: ----------- debug at the server Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/HttpWebConnection.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/HttpWebConnection.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/HttpWebConnection.java 2018-07-18 07:19:23 UTC (rev 15482) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/HttpWebConnection.java 2018-07-18 07:23:18 UTC (rev 15483) @@ -212,6 +212,10 @@ httpClientBuilder_.remove(Thread.currentThread()); throw e; } + catch (final Throwable e) { +e.printStackTrace(); + throw e; + } final DownloadedContent downloadedBody = downloadResponseBody(httpResponse); final long endTime = System.currentTimeMillis(); |