View Javadoc

1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2011, 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;
15  
16  import org.slf4j.Marker;
17  import org.slf4j.MarkerFactory;
18  
19  public class ClassicConstants {
20    static public final String USER_MDC_KEY = "user";
21  
22    public static final String LOGBACK_CONTEXT_SELECTOR = "logback.ContextSelector";
23    public static final String JNDI_CONFIGURATION_RESOURCE = "java:comp/env/logback/configuration-resource";
24    public static final String JNDI_CONTEXT_NAME = "java:comp/env/logback/context-name";
25  
26    /**
27     * The maximum number of package separators (dots) that abbreviation
28     * algorithms can handle. Class or logger names with more separators will have
29     * their first MAX_DOTS parts shortened.
30     * 
31     */
32    public static final int MAX_DOTS = 16;
33  
34    /**
35     * The default stack data depth computed during caller data extraction.
36     */
37    public static final int DEFAULT_MAX_CALLEDER_DATA_DEPTH = 8;
38    
39    public final static String REQUEST_REMOTE_HOST_MDC_KEY = "req.remoteHost";
40    public final static String REQUEST_USER_AGENT_MDC_KEY = "req.userAgent";
41    public final static String REQUEST_REQUEST_URI = "req.requestURI";
42    public final static String REQUEST_QUERY_STRING = "req.queryString";
43    public final static String REQUEST_REQUEST_URL = "req.requestURL";
44    public final static String REQUEST_X_FORWARDED_FOR = "req.xForwardedFor";
45  
46    public final static String GAFFER_CONFIGURATOR_FQCN = "ch.qos.logback.classic.gaffer.GafferConfigurator";
47  
48    public final static Marker FINALIZE_SESSION_MARKER = MarkerFactory.getMarker("FINALIZE_SESSION");
49  }