Skip to content

Commit b76ac03

Browse files
committed
Update Log4j API
1 parent efff246 commit b76ac03

File tree

3 files changed

+2
-0
lines changed

3 files changed

+2
-0
lines changed

lib/log4j-api-2.10.1-SNAPSHOT.jar

41 Bytes
Binary file not shown.

src/pl.tfij.java9modules.app/pl/tfij/java9modules/app/ModuleApp.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public class ModuleApp {
1111
private static Logger logger = LogManager.getLogger(ModuleApp.class)
1212
;
1313
public static void main(String[] args) {
14+
System.out.println("Testing Log4j");
1415
System.out.println("Class path: " + System.getProperty("java.class.path"));
1516
System.out.println("Module path:" + System.getProperty("jdk.module.path"));
1617
String greeting = new Greeting().regular("World");

src/pl.tfij.java9modules.slf4japp/pl/tfij/java9modules/slf4japp/SLF4JApp.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public class SLF4JApp {
1111
private static Logger logger = LoggerFactory.getLogger(SLF4JApp.class);
1212

1313
public static void main(String[] args) {
14+
System.out.println("Testing SLF4J");
1415
System.out.println("Class path: " + System.getProperty("java.class.path"));
1516
System.out.println("Module path:" + System.getProperty("jdk.module.path"));
1617
String greeting = new Greeting().regular("World");

0 commit comments

Comments
 (0)