From: <rb...@us...> - 2018-07-18 07:26:49
|
Revision: 15484 http://sourceforge.net/p/htmlunit/code/15484 Author: rbri Date: 2018-07-18 07:26:45 +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:23:18 UTC (rev 15483) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/HttpWebConnection.java 2018-07-18 07:26:45 UTC (rev 15484) @@ -204,7 +204,7 @@ } } catch (final Error e) { -System.out.println("#" + e); +System.out.println("##" + e); // in case a StackOverflowError occurs while the connection is leased, it won't get released. // Calling code may catch the StackOverflowError, but due to the leak, the httpClient_ may // come out of connections and throw a ConnectionPoolTimeoutException. @@ -213,7 +213,7 @@ throw e; } catch (final Throwable e) { -e.printStackTrace(); +System.out.println("###" + e); throw e; } |