Less verbose testing

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2018-08-02 16:41:06 +10:00
parent 321b4b4f7a
commit 2cc90c2be5
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ public class HttpServerTestFixture
@Override
public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
{
Log.getRootLogger().info("handle "+target);
Log.getRootLogger().debug("handle "+target);
baseRequest.setHandled(true);
if (request.getContentType()!=null)
@ -157,7 +157,7 @@ public class HttpServerTestFixture
if (reader.read()>=0)
throw new IllegalStateException("Not closed");
Log.getRootLogger().info("handled "+target);
Log.getRootLogger().debug("handled "+target);
}
}