Home
last modified time | relevance | path

Searched refs:LocationAwareLogger (Results 1 – 15 of 15) sorted by relevance

/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
DLoggerWrapper.java31 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 …]
DXLogger.java32 import org.slf4j.spi.LocationAwareLogger;
76 …TRACE("TRACE", LocationAwareLogger.TRACE_INT), DEBUG("DEBUG", LocationAwareLogger.DEBUG_INT), INFO…
77LocationAwareLogger.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()
DEventLogger.java30 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/
DCategory.java23 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 …]
DLogger.java20 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/
DSLF4JLocationAwareLog.java25 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 …]
DSLF4JLogFactory.java24 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/
DLocLogger.java31 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/
DSLF4JBridgeHandler.java37 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/
DLog4jLoggerAdapter.java35 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/
DJDK14LoggerAdapter.java35 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/
DSimpleLogger.java43 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/
DSerializationTest.java38 import org.slf4j.spi.LocationAwareLogger;
85 …SLF4JLocationAwareLog log = new SLF4JLocationAwareLog((LocationAwareLogger) factory.getLogger("x")… in testLocationAware()
/external/slf4j/slf4j-site/src/site/pages/changes/
Dchanges-1.3.txt21 INFO: 8000: org.slf4j.spi.LocationAwareLogger: Class org.slf4j.spi.LocationAwareLogger added
/external/slf4j/slf4j-api/src/main/java/org/slf4j/spi/
DLocationAwareLogger.java40 public interface LocationAwareLogger extends Logger { interface