001package org.slf4j.event;
002
003import org.slf4j.spi.LocationAwareLogger;
004
005/**
006 * Various constants used by {@link Level} and {@link org.slf4j.Logger}.
007 *
008 *
009 */
010public class EventConstants {
011    public static final int ERROR_INT = LocationAwareLogger.ERROR_INT;
012    public static final int WARN_INT = LocationAwareLogger.WARN_INT;
013    public static final int INFO_INT = LocationAwareLogger.INFO_INT;
014    public static final int DEBUG_INT = LocationAwareLogger.DEBUG_INT;
015    public static final int TRACE_INT = LocationAwareLogger.TRACE_INT;
016    public static final String NA_SUBST = "NA/SubstituteLogger";
017
018}