001package org.slf4j.event;
002
003import org.slf4j.spi.LocationAwareLogger;
004
005public class EventConstants {
006    public static final int ERROR_INT = LocationAwareLogger.ERROR_INT;
007    public static final int WARN_INT = LocationAwareLogger.WARN_INT;
008    public static final int INFO_INT = LocationAwareLogger.INFO_INT;
009    public static final int DEBUG_INT = LocationAwareLogger.DEBUG_INT;
010    public static final int TRACE_INT = LocationAwareLogger.TRACE_INT;
011    public static final String NA_SUBST = "NA/SubstituteLogger";
012
013}