View Javadoc
1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
4    *
5    * This program and the accompanying materials are dual-licensed under
6    * either the terms of the Eclipse Public License v1.0 as published by
7    * the Eclipse Foundation
8    *
9    *   or (per the licensee's choosing)
10   *
11   * under the terms of the GNU Lesser General Public License version 2.1
12   * as published by the Free Software Foundation.
13   */
14  package ch.qos.logback.classic.net;
15  
16  import ch.qos.logback.classic.spi.ILoggingEvent;
17  import ch.qos.logback.core.net.AbstractSSLSocketAppender;
18  import ch.qos.logback.core.spi.PreSerializationTransformer;
19  
20  /**
21   * A {@link SocketAppender} that supports SSL.
22   * <p>
23   * For more information on this appender, please refer to the online manual at
24   * http://logback.qos.ch/manual/appenders.html#SSLSocketAppender
25   * 
26   * @author Carl Harris
27   */
28  public class SSLSocketAppender extends AbstractSSLSocketAppender<ILoggingEvent> {
29  
30      private final PreSerializationTransformer<ILoggingEvent> pst = new LoggingEventPreSerializationTransformer();
31  
32      private boolean includeCallerData;
33  
34      public SSLSocketAppender() {
35      }
36  
37      @Override
38      protected void postProcessEvent(ILoggingEvent event) {
39          if (includeCallerData) {
40              event.getCallerData();
41          }
42      }
43  
44      public void setIncludeCallerData(boolean includeCallerData) {
45          this.includeCallerData = includeCallerData;
46      }
47  
48      public PreSerializationTransformer<ILoggingEvent> getPST() {
49          return pst;
50      }
51  
52  }