ch.qos.logback.classic.ClassicConstants Maven / Gradle / Ivy
The newest version!
/**
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2009, 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.
*/
package ch.qos.logback.classic;
public class ClassicConstants {
static public final String USER_MDC_KEY = "user";
public static final String LOGBACK_CONTEXT_SELECTOR = "logback.ContextSelector";
public static String JNDI_CONFIGURATION_RESOURCE = "java:comp/env/logback/configuration-resource";
public static String JNDI_CONTEXT_NAME = "java:comp/env/logback/context-name";
/**
* The maximum number of package separators (dots) that abbreviation
* algorithms can handle. Class or logger names with more separators will have
* their first MAX_DOTS parts shortened.
*
*/
public static final int MAX_DOTS = 16;
/**
* The default stack data depth computed during caller data extraction.
*/
public static final int DEFAULT_MAX_CALLEDER_DATA_DEPTH = 8;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy