// INTERFACE ==================================================================================
@Override
public void publish(final LogRecord record) {
if (!started) start(); // force initialization before handling the first log
if (isLoggable(record)) getReporter().reportLog(new JulEvt(record));
}