feat: add rolling-log-slf4j

This commit is contained in:
dancingCycle 2022-01-06 13:53:35 -05:00
parent 985c1e7f0b
commit 99bf301fe5
2 changed files with 14 additions and 5 deletions

View File

@ -34,12 +34,16 @@
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.17.1</version>
</dependency>
</dependencies>
<build>

View File

@ -1,15 +1,20 @@
package de.swingbe.rollinglog;
import org.apache.logging.log4j.Logger;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Main {
private static final Logger logger = Logger.getLogger(Main.class);
private static final Logger logger = LoggerFactory.getLogger(Main.class);
public static void main(String[] args) throws InterruptedException {
for (int i = 0; i < 2000; i++) {
logger.info("This is the " + i + ". time I say 'Hello World'.");
Thread.sleep(1);
logger.trace("TRACE: This is the " + i + ". time I say 'Hello World'.");
logger.info("INFO: This is the " + i + ". time I say 'Hello World'.");
logger.debug("DEBUG: This is the " + i + ". time I say 'Hello World'.");
logger.warn("WARN: This is the " + i + ". time I say 'Hello World'.");
logger.error("ERROR: This is the " + i + ". time I say 'Hello World'.");
Thread.sleep(5);
}
}
}