debug
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1537 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
20d7ba4b9d
commit
b72ec70899
|
@ -14,6 +14,8 @@
|
||||||
|
|
||||||
package org.eclipse.jetty.client;
|
package org.eclipse.jetty.client;
|
||||||
|
|
||||||
|
import org.eclipse.jetty.util.log.Log;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @version $Revision$ $Date$
|
* @version $Revision$ $Date$
|
||||||
*/
|
*/
|
||||||
|
@ -42,4 +44,19 @@ public class BlockingHttpExchangeCancelTest extends AbstractHttpExchangeCancelTe
|
||||||
{
|
{
|
||||||
return httpClient;
|
return httpClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------ */
|
||||||
|
/**
|
||||||
|
* @see org.eclipse.jetty.client.AbstractHttpExchangeCancelTest#testHttpExchangeOnExpire()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void testHttpExchangeOnExpire() throws Exception
|
||||||
|
{
|
||||||
|
boolean enabled=Log.getLog().isDebugEnabled();
|
||||||
|
Log.getLog().setDebugEnabled(true);
|
||||||
|
super.testHttpExchangeOnExpire();
|
||||||
|
Log.getLog().setDebugEnabled(enabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue