/** * Logback: the reliable, generic, fast and flexible logging framework. * Copyright (C) 1999-2015, QOS.ch. All rights reserved. * * This program and the accompanying materials are dual-licensed under * either the terms of the Eclipse Public License v1.0 as published by * the Eclipse Foundation * * or (per the licensee's choosing) * * under the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation. */ // Contributors: Dan MacDonald <dan@redknee.com> package ch.qos.logback.access.net; import ch.qos.logback.access.spi.IAccessEvent; import ch.qos.logback.core.net.AbstractSocketAppender; import ch.qos.logback.core.spi.PreSerializationTransformer; /** * Sends {@link IAccessEvent} objects to a remote a log server, usually a * {@link SocketNode}. * * For more information about this appender, please refer to the online manual at * http://logback.qos.ch/manual/appenders.html#AccessSocketAppender * * @author Ceki Gülcü * @author Sébastien Pennec * */ public class SocketAppender extends AbstractSocketAppender<IAccessEvent> { PreSerializationTransformer<IAccessEvent> pst = new AccessEventPreSerializationTransformer(); public SocketAppender() { } @Override protected void postProcessEvent(IAccessEvent event) { event.prepareForDeferredProcessing(); } public PreSerializationTransformer<IAccessEvent> getPST() { return pst; } }