Package ch.qos.logback.audit

Examples of ch.qos.logback.audit.AuditEvent


      }
    }
  }

  public void run() {
    AuditEvent event = null;

    // try {
    while (!closed) {
      // read an event from the wire
      try {
View Full Code Here


  public void log(AuditEvent auditEvent) throws AuditException {
    auditAppender.doAppend(auditEvent);
  }

  public void log(AuditEventBuilder builder) throws AuditException {
    AuditEvent auditEvent = builder.build();
    auditAppender.doAppend(auditEvent);
  }
View Full Code Here

TOP

Related Classes of ch.qos.logback.audit.AuditEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.