/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/ |
D | LoggerWrapper.java | 31 import org.slf4j.spi.LocationAwareLogger; 58 if (logger instanceof LocationAwareLogger) { in LoggerWrapper() 87 … ((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, msg, null, null); in trace() 102 …((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, ne… in trace() 117 …((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, ne… in trace() 132 …((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, ar… in trace() 146 … ((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, msg, null, t); in trace() 159 … ((LocationAwareLogger) logger).log(marker, fqcn, LocationAwareLogger.TRACE_INT, msg, null, null); in trace() 173 …((LocationAwareLogger) logger).log(marker, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, … in trace() 187 …((LocationAwareLogger) logger).log(marker, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, … in trace() [all …]
|
D | XLogger.java | 32 import org.slf4j.spi.LocationAwareLogger; 76 …TRACE("TRACE", LocationAwareLogger.TRACE_INT), DEBUG("DEBUG", LocationAwareLogger.DEBUG_INT), INFO… 77 … LocationAwareLogger.WARN_INT), ERROR("ERROR", LocationAwareLogger.ERROR_INT); 124 …((LocationAwareLogger) logger).log(ENTRY_MARKER, FQCN, LocationAwareLogger.TRACE_INT, tp.getMessag… in entry() 133 …((LocationAwareLogger) logger).log(EXIT_MARKER, FQCN, LocationAwareLogger.TRACE_INT, EXIT_MESSAGE_… in exit() 146 …((LocationAwareLogger) logger).log(EXIT_MARKER, FQCN, LocationAwareLogger.TRACE_INT, tp.getMessage… in exit() 159 …((LocationAwareLogger) logger).log(THROWING_MARKER, FQCN, LocationAwareLogger.ERROR_INT, "throwing… in throwing() 174 …((LocationAwareLogger) logger).log(THROWING_MARKER, FQCN, level.level, "throwing", null, throwable… in throwing() 187 …((LocationAwareLogger) logger).log(CATCHING_MARKER, FQCN, LocationAwareLogger.ERROR_INT, "catching… in catching() 201 …((LocationAwareLogger) logger).log(CATCHING_MARKER, FQCN, level.level, "catching", null, throwable… in catching()
|
D | EventLogger.java | 30 import org.slf4j.spi.LocationAwareLogger; 59 …((LocationAwareLogger) eventLogger.logger).log(EVENT_MARKER, FQCN, LocationAwareLogger.INFO_INT, d… in logEvent()
|
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/ |
D | Category.java | 23 import org.slf4j.spi.LocationAwareLogger; 51 private org.slf4j.spi.LocationAwareLogger locationAwareLogger; 58 if (slf4jLogger instanceof LocationAwareLogger) { in Category() 59 locationAwareLogger = (LocationAwareLogger) slf4jLogger; in Category() 196 case LocationAwareLogger.TRACE_INT: in differentiatedLog() 199 case LocationAwareLogger.DEBUG_INT: in differentiatedLog() 202 case LocationAwareLogger.INFO_INT: in differentiatedLog() 205 case LocationAwareLogger.WARN_INT: in differentiatedLog() 208 case LocationAwareLogger.ERROR_INT: in differentiatedLog() 219 differentiatedLog(null, CATEGORY_FQCN, LocationAwareLogger.DEBUG_INT, message, null); in debug() [all …]
|
D | Logger.java | 20 import org.slf4j.spi.LocationAwareLogger; 73 differentiatedLog(null, LOGGER_FQCN, LocationAwareLogger.TRACE_INT, message, null); in trace() 81 differentiatedLog(null, LOGGER_FQCN, LocationAwareLogger.TRACE_INT, message, null); in trace()
|
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/ |
D | SLF4JLocationAwareLog.java | 25 import org.slf4j.spi.LocationAwareLogger; 46 private transient LocationAwareLogger logger; 50 SLF4JLocationAwareLog(LocationAwareLogger logger) { in SLF4JLocationAwareLog() 107 logger.log(null, FQCN, LocationAwareLogger.TRACE_INT, String.valueOf(message), null, null); in trace() 120 logger.log(null, FQCN, LocationAwareLogger.TRACE_INT, String.valueOf(message), null, t); in trace() 131 logger.log(null, FQCN, LocationAwareLogger.DEBUG_INT, String.valueOf(message), null, null); in debug() 144 logger.log(null, FQCN, LocationAwareLogger.DEBUG_INT, String.valueOf(message), null, t); in debug() 155 logger.log(null, FQCN, LocationAwareLogger.INFO_INT, String.valueOf(message), null, null); in info() 168 logger.log(null, FQCN, LocationAwareLogger.INFO_INT, String.valueOf(message), null, t); in info() 179 logger.log(null, FQCN, LocationAwareLogger.WARN_INT, String.valueOf(message), null, null); in warn() [all …]
|
D | SLF4JLogFactory.java | 24 import org.slf4j.spi.LocationAwareLogger; 156 if (slf4jLogger instanceof LocationAwareLogger) { in getInstance() 157 newInstance = new SLF4JLocationAwareLog((LocationAwareLogger) slf4jLogger); in getInstance()
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/cal10n/ |
D | LocLogger.java | 31 import org.slf4j.spi.LocationAwareLogger; 79 …((LocationAwareLogger) logger).log(LOCALIZED, FQCN, LocationAwareLogger.TRACE_INT, translatedMsg, … in trace() 101 …((LocationAwareLogger) logger).log(LOCALIZED, FQCN, LocationAwareLogger.DEBUG_INT, translatedMsg, … in debug() 123 …((LocationAwareLogger) logger).log(LOCALIZED, FQCN, LocationAwareLogger.INFO_INT, translatedMsg, a… in info() 145 …((LocationAwareLogger) logger).log(LOCALIZED, FQCN, LocationAwareLogger.WARN_INT, translatedMsg, a… in warn() 167 …((LocationAwareLogger) logger).log(LOCALIZED, FQCN, LocationAwareLogger.ERROR_INT, translatedMsg, … in error()
|
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/ |
D | SLF4JBridgeHandler.java | 37 import org.slf4j.spi.LocationAwareLogger; 205 protected void callLocationAwareLogger(LocationAwareLogger lal, LogRecord record) { in callLocationAwareLogger() 210 slf4jLevel = LocationAwareLogger.TRACE_INT; in callLocationAwareLogger() 212 slf4jLevel = LocationAwareLogger.DEBUG_INT; in callLocationAwareLogger() 214 slf4jLevel = LocationAwareLogger.INFO_INT; in callLocationAwareLogger() 216 slf4jLevel = LocationAwareLogger.WARN_INT; in callLocationAwareLogger() 218 slf4jLevel = LocationAwareLogger.ERROR_INT; in callLocationAwareLogger() 296 if (slf4jLogger instanceof LocationAwareLogger) { in publish() 297 callLocationAwareLogger((LocationAwareLogger) slf4jLogger, record); in publish()
|
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/ |
D | Log4jLoggerAdapter.java | 35 import org.slf4j.spi.LocationAwareLogger; 55 public final class Log4jLoggerAdapter extends MarkerIgnoringBase implements LocationAwareLogger, Se… 577 case LocationAwareLogger.TRACE_INT: in log() 580 case LocationAwareLogger.DEBUG_INT: in log() 583 case LocationAwareLogger.INFO_INT: in log() 586 case LocationAwareLogger.WARN_INT: in log() 589 case LocationAwareLogger.ERROR_INT: in log()
|
/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/ |
D | JDK14LoggerAdapter.java | 35 import org.slf4j.spi.LocationAwareLogger; 46 public final class JDK14LoggerAdapter extends MarkerIgnoringBase implements LocationAwareLogger { 624 case LocationAwareLogger.TRACE_INT: in log() 627 case LocationAwareLogger.DEBUG_INT: in log() 630 case LocationAwareLogger.INFO_INT: in log() 633 case LocationAwareLogger.WARN_INT: in log() 636 case LocationAwareLogger.ERROR_INT: in log()
|
/external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/ |
D | SimpleLogger.java | 43 import org.slf4j.spi.LocationAwareLogger; 126 private static final int LOG_LEVEL_TRACE = LocationAwareLogger.TRACE_INT; 127 private static final int LOG_LEVEL_DEBUG = LocationAwareLogger.DEBUG_INT; 128 private static final int LOG_LEVEL_INFO = LocationAwareLogger.INFO_INT; 129 private static final int LOG_LEVEL_WARN = LocationAwareLogger.WARN_INT; 130 private static final int LOG_LEVEL_ERROR = LocationAwareLogger.ERROR_INT;
|
/external/slf4j/jcl-over-slf4j/src/test/java/org/apache/commons/logging/impl/ |
D | SerializationTest.java | 38 import org.slf4j.spi.LocationAwareLogger; 85 …SLF4JLocationAwareLog log = new SLF4JLocationAwareLog((LocationAwareLogger) factory.getLogger("x")… in testLocationAware()
|
/external/slf4j/slf4j-site/src/site/pages/changes/ |
D | changes-1.3.txt | 21 INFO: 8000: org.slf4j.spi.LocationAwareLogger: Class org.slf4j.spi.LocationAwareLogger added
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/spi/ |
D | LocationAwareLogger.java | 40 public interface LocationAwareLogger extends Logger { interface
|