try
{
capturer = new SocketCapturer(0);
handler = new SocketHandler("0.0.0.0", capturer.getLocalPort());
handler.setLevel(Level.FINE);
handler.publish(new LogRecord(Level.CONFIG, "hello, world"));
handler.publish(new LogRecord(Level.FINER, "how are you?"));
handler.close();
captured = new String(capturer.getCaptured());
th.check(true);
}