/** * Logback: the reliable, generic, fast and flexible logging framework. * Copyright (C) 1999-2013, 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; import org.slf4j.Marker; import org.slf4j.MarkerFactory; public class ClassicConstants { public static final String LOGBACK_CONTEXT_SELECTOR = "logback.ContextSelector"; /** * 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; public static final String FINALIZE_SESSION = "FINALIZE_SESSION"; public static final Marker FINALIZE_SESSION_MARKER = MarkerFactory.getMarker(FINALIZE_SESSION); }