use of co.cask.cdap.common.logging.AuditLogEntry in project cdap by caskdata.
the class SecurityAuthenticationHttpHandler method writeComplete.
@Override
public void writeComplete(ChannelHandlerContext ctx, WriteCompletionEvent e) throws Exception {
AuditLogEntry logEntry = getLogEntry(ctx);
if (!logEntry.isLogged()) {
AUDIT_LOG.trace(logEntry.toString());
logEntry.setLogged(true);
}
}
Aggregations