Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 614 for SLF4j (0.04 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webservice/webservice.iml.xml

        <orderEntry type="module-library" scope="PROVIDED">
          <library>
            <CLASSES>
              <root url="jar://@CACHE_DIR@/org.slf4j/slf4j-api/1.5.8/@SHA1@/slf4j-api-1.5.8.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES>
              <root url="jar://@CACHE_DIR@/org.slf4j/slf4j-api/1.5.8/@SHA1@/slf4j-api-1.5.8-sources.jar!/"/>
            </SOURCES>
          </library>
        </orderEntry>
        <orderEntry type="module-library">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

    log4j:log4j:1.2.16 FAILED
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10 FAILED
       Failures:
          - Could not resolve org.slf4j:log4j-over-slf4j:1.7.10.
              - Module 'org.slf4j:log4j-over-slf4j' has been rejected:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/logging/kotlin/build.gradle.kts

    // tag::use-slf4j[]
    import org.slf4j.LoggerFactory
    
    val slf4jLogger = LoggerFactory.getLogger("some-logger")
    slf4jLogger.info("An info log message logged using SLF4j")
    // end::use-slf4j[]
    
    // tag::use-logger[]
    logger.quiet("An info log message which is always logged.")
    logger.error("An error log message.")
    logger.warn("A warning log message.")
    logger.lifecycle("A lifecycle info log message.")
    logger.info("An info log message.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/slf4j/impl/StaticLoggerBinder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.slf4j.impl;
    
    import org.gradle.internal.logging.slf4j.OutputEventListenerBackedLoggerContext;
    import org.gradle.internal.time.Time;
    import org.slf4j.ILoggerFactory;
    import org.slf4j.spi.LoggerFactoryBinder;
    
    @SuppressWarnings("UnusedDeclaration")
    public class StaticLoggerBinder implements LoggerFactoryBinder {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/consumer/trivial/child/pom.xml

      </parent>
      <artifactId>child</artifactId>
      <packaging>jar</packaging>
    
      <properties>
        <prop-child>bar</prop-child>
      </properties>
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
      </dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 430 bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webserviceClasspath.xml

    			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
    		</attributes>
    	</classpathentry>
    	<classpathentry sourcepath="@CACHE_DIR@/org.slf4j/slf4j-api/1.5.8/@SHA1@/slf4j-api-1.5.8-sources.jar" kind="lib" path="@CACHE_DIR@/org.slf4j/slf4j-api/1.5.8/@SHA1@/slf4j-api-1.5.8.jar">
    		<attributes>
    			<attribute name="gradle_used_by_scope" value="main,test"/>
    			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

       Selection reasons:
          - By conflict resolution: On capability log4j:log4j use slf4j in place of log4j
    
    log4j:log4j:1.2.16 -> org.slf4j:log4j-over-slf4j:1.7.10
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10
    \--- compileClasspath
    
    org.slf4j:slf4j-log4j12:1.6.1
      Variant compile:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

            configuration.exclude(excludeProperties("org.apache.ant", "ant-launcher"));
            configuration.exclude(excludeProperties("org.slf4j", "slf4j-api"));
            configuration.exclude(excludeProperties("org.slf4j", "jcl-over-slf4j"));
            configuration.exclude(excludeProperties("org.slf4j", "log4j-over-slf4j"));
            configuration.exclude(excludeProperties("commons-logging", "commons-logging"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java

     * under the License.
     */
    package org.apache.maven.cli.logging;
    
    import org.codehaus.plexus.logging.Logger;
    import org.codehaus.plexus.logging.LoggerManager;
    import org.slf4j.ILoggerFactory;
    import org.slf4j.LoggerFactory;
    
    /**
     * Use an SLF4J {@link org.slf4j.ILoggerFactory} as a backing for a Plexus
     * {@link org.codehaus.plexus.logging.LoggerManager},
     * ignoring Plexus logger API parts that are not classical and probably not really used.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/logging/impl/Slf4jSimpleConfiguration.java

     * under the License.
     */
    package org.apache.maven.cli.logging.impl;
    
    import org.apache.maven.cli.logging.BaseSlf4jConfiguration;
    import org.slf4j.simple.MavenSlf4jSimpleFriend;
    
    /**
     * Configuration for slf4j-simple.
     *
     * @since 3.1.0
     */
    public class Slf4jSimpleConfiguration extends BaseSlf4jConfiguration {
        @Override
        public void setRootLoggerLevel(Level level) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top