public void testPrivateLogger() throws Exception {
configureLogging("resources/logging_atompush_disabled.properties");
Logger log = LogUtils.getL7dLogger(JAXRSLoggingAtomPushTest.class, null, "private-log");
Converter c = new StandardConverter(Output.FEED, Multiplicity.ONE, Format.CONTENT);
Deliverer d = new WebClientDeliverer("http://localhost:" + PORT);
Handler h = new AtomPushHandler(2, c, d);
log.addHandler(h);
log.setLevel(Level.ALL);
logSixEvents(log);
// need to wait: multithreaded and client-server journey
waitForFeeds(Resource.feeds, 3);