/external/slf4j/slf4j-site/ |
pom.xml | 8 <groupId>org.slf4j</groupId> 9 <artifactId>slf4j-parent</artifactId> 13 <artifactId>slf4j-site</artifactId> 16 <name>SLF4J Site</name> 17 <description>SLF4J Site</description> 18 <url>http://www.slf4j.org</url>
|
/external/slf4j/slf4j-site/src/site/pages/ |
docs.html | 7 <title>SLF4J Documentation</title> 22 <p>Given the small size of SLF4J, its documentation is not very 28 <li><a href="codes.html">SLF4J error messages</a></li> 30 <li><a href="migrator.html">SLF4J Migrator</a></li> 31 <li><a href="extensions.html">SLF4J extensions</a></li> 67 in Java with slf4j</a>, by Thorbjørn Ravn Andersen 76 <li><a href="http://blog.frankel.ch/tech/dev/java/thoughts-on-java-logging-and-slf4j">Thoughts on Java logging and SLF4J</a> by Nicolas Frankel 79 <li><a href="http://glauche.de/2009/08/24/">Logging with SLF4J and 83 <a href="slf4j-in-10-slides.ppt">SLF4J in 10 slides</a>, by Ceki Gülcü [all...] |
codes.html | 5 <title>SLF4J Error Codes</title> 31 <h2>SLF4J warning or error messages and their meanings</h2> 42 as implemented by SLF4J, the 53 Tomcat, especially if you place <em>jcl-over-slf4j.jar</em> in 57 from the stability offered by <em>jcl-over-slf4j.jar</em>, we 58 recommend that you place <em>jcl-over-slf4j.jar</em> in 64 href="http://bugzilla.slf4j.org/show_bug.cgi?id=22">bug 70 [suchAndSuch] is not supported in jcl-over-slf4j. 78 implemented by <em>jcl-over-slf4j.jar</em>, namely 85 <em>jcl-over-slf4j.jar</em>. Note that this issue is very simila [all...] |
download.html | 7 <title>SLF4J Binary files</title> 26 projects such as cal10n, logback, mistletoe and SLF4J.</p> 40 <h2>Latest official SLF4J distribution</h2> 47 <li><a href="dist/slf4j-${project.version}.tar.gz"><b>slf4j-${project.version}.tar.gz</b></a> </li> 48 <li><a href="dist/slf4j-${project.version}.zip"><b>slf4j-${project.version}.zip</b></a> </li> 54 <p>Previous versions of SLF4J can be downloaded from the <a 60 <p>For each slf4j module, the corresponding javadoc artifacts can be 62 href="http://repo2.maven.org/maven2/org/slf4j/">Maven centra [all...] |
migrator.html | 7 <title>SLF4J Migrator</title> 20 <h1>SLF4J Migrator</h1> 22 <p>The SLF4J migrator is a small Java tool for migrating Java source 23 files from the Jakarta Commons Logging (JCL) API to SLF4J. It can 24 also migrate from the log4j API to SLF4J, or from 25 <code>java.util.logging</code> API to SLF4J. 28 <p>The SLF4J migrator consists of a single jar file that can be 32 <p class="source">java -jar slf4j-migrator-${version}.jar </p> 40 <p><img src="images/slf4j-migrator.gif" alt="slf4j-migrator.gif"/></p [all...] |
compatibility.html | 26 <p>Given the very large user base of SLF4J, we take backward 29 slf4j-api.jar is the main entry point into SLF4J, that is the module 34 caused by mixing different versions of slf4j artifacts. For example, 35 if you are using slf4j-api-1.5.4.jar you should also use 36 slf4j-simple-1.5.4.jar, using slf4j-simple-1.4.2.jar will not 37 work. The same goes for all other SLF4J artifacts. 43 contact the slf4j developers list.</p> 63 <td>org.slf4j.helpers.SubstituteLoggerFactory</td [all...] |
/external/slf4j/slf4j-api/src/main/java/org/slf4j/impl/ |
StaticLoggerBinder.java | 25 package org.slf4j.impl; 27 import org.slf4j.ILoggerFactory; 33 * This class is meant to provide a dummy StaticLoggerBinder to the slf4j-api module. 34 * Real implementations are found in each SLF4J binding project, e.g. slf4j-nop, 35 * slf4j-log4j12 etc. 56 * Declare the version of the SLF4J API this implementation is compiled against. 63 throw new UnsupportedOperationException("This code should have never made it into slf4j-api.jar"); 67 throw new UnsupportedOperationException("This code should never make it into slf4j-api.jar"); 71 throw new UnsupportedOperationException("This code should never make it into slf4j-api.jar") [all...] |
StaticMarkerBinder.java | 25 package org.slf4j.impl; 27 import org.slf4j.IMarkerFactory; 28 import org.slf4j.MarkerFactory; 29 import org.slf4j.helpers.BasicMarkerFactory; 30 import org.slf4j.spi.MarkerFactoryBinder; 37 * This class is meant to provide a *dummy* StaticMarkerBinder to the slf4j-api module. 38 * Real implementations are found in each SLF4J binding project, e.g. slf4j-nop, 39 * slf4j-simple, slf4j-log4j12 etc [all...] |
/external/slf4j/integration/src/test/java/org/slf4j/ |
MissingSingletonMethodAssertionTest.java | 25 package org.slf4j; 65 // SLF4J: slf4j-api 1.6.x (or later) is incompatible with this binding. 66 // SLF4J: Your binding is version 1.4.x or earlier. 67 // SLF4J: Upgrade your binding to version 1.6.x. or 2.0.x 71 assertTrue(s.contains("SLF4J: slf4j-api 1.6.x (or later) is incompatible with this binding.")); 75 assertTrue(s.contains("SLF4J: Your binding is version 1.5.5 or earlier.")); 79 assertTrue(s.contains("SLF4J: Upgrade your binding to version 1.6.x."));
|
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/ |
Logger.java | 20 import org.slf4j.spi.LocationAwareLogger; 26 * delegating all calls to a {@link org.slf4j.Logger} instance. 58 return Log4jLoggerFactory.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME); 62 * Delegates to {@link org.slf4j.Logger#isTraceEnabled} 63 * method of SLF4J. 70 * Delegates to {@link org.slf4j.Logger#trace(String)} method in SLF4J. 77 * Delegates to {@link org.slf4j.Logger#trace(String,Throwable)} 78 * method in SLF4J.
|
/external/slf4j/slf4j-migrator/ |
pom.xml | 9 <groupId>org.slf4j</groupId> 10 <artifactId>slf4j-parent</artifactId> 14 <artifactId>slf4j-migrator</artifactId> 17 <name>SLF4J Migrator</name> 18 <description>SLF4J Migrator</description>
|
LIMITATIONS.txt | 2 The slf4j-migrator aims to 30 - Since NDC is not supported by SLF4J, the migrator cannot properly handle 34 SLF4J the equivalents.
|
/external/slf4j/log4j-over-slf4j/compatibility/ |
readme.txt | 16 To obtain more information about the use of the log4j-over-slf4j module, 17 please visit http://www..slf4j.org/log4j-over-slf4j.htm
|
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/ |
RuleSetFactory.java | 25 package org.slf4j.migrator; 27 import org.slf4j.migrator.line.EmptyRuleSet; 28 import org.slf4j.migrator.line.JCLRuleSet; 29 import org.slf4j.migrator.line.JULRuleSet; 30 import org.slf4j.migrator.line.Log4jRuleSet; 31 import org.slf4j.migrator.line.RuleSet;
|
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/ |
JCLLoggerFactory.java | 25 package org.slf4j.impl; 31 import org.slf4j.ILoggerFactory; 32 import org.slf4j.Logger; 33 import org.slf4j.helpers.Util; 43 private static final String JCL_DELEGATION_LOOP_URL = "http://www.slf4j.org/codes.html#jclDelegationLoop"; 49 String part1 = "Detected both jcl-over-slf4j.jar AND slf4j-jcl.jar on the class path, preempting StackOverflowError. "; 70 * @see org.slf4j.ILoggerFactory#getLogger(java.lang.String)
|
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/ |
StaticLoggerBinder.java | 25 package org.slf4j.impl; 28 import org.slf4j.ILoggerFactory; 29 import org.slf4j.LoggerFactory; 30 import org.slf4j.helpers.Util; 31 import org.slf4j.spi.LoggerFactoryBinder; 57 * Declare the version of the SLF4J API this implementation is compiled 77 Util.report("This version of SLF4J requires log4j version 1.2.12 or later. See also http://www.slf4j.org/codes.html#log4j_version");
|
/external/slf4j/slf4j-site/src/site/pages/templates/ |
header.js | 3 document.write('<td><a href="http://www.slf4j.org/">'); 4 document.write('<img src="' + prefix + 'images/logos/slf4j-logo.jpg" alt="" border="0"/>');
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.0/ |
gradle-tooling-api-2.0.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.1/ |
gradle-tooling-api-2.1.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.10/ |
gradle-tooling-api-2.10.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.14/ |
gradle-tooling-api-2.14.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.2/ |
gradle-tooling-api-2.2.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.8/ |
gradle-tooling-api-2.8.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/3.2/ |
gradle-tooling-api-3.2.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/3.3/ |
gradle-tooling-api-3.3.pom | 10 <groupId>org.slf4j</groupId> 11 <artifactId>slf4j-api</artifactId>
|