3637383940414243
/** * No-arg constructor, as required by the audit SPI. */ public LogAuditProvider() { log = new LogOutputStream("Audit"); log.info("Security auditing started"); }
656657658659660661662663664665666
*/ public void setDebug(boolean enable) { if (enable && log == null) { log = new LogOutputStream("RDBMSRealm"); } if (!enable) { log = null; }