File tree Expand file tree Collapse file tree 3 files changed +2
-0
lines changed
pl.tfij.java9modules.app/pl/tfij/java9modules/app
pl.tfij.java9modules.slf4japp/pl/tfij/java9modules/slf4japp Expand file tree Collapse file tree 3 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ public class ModuleApp {
11
11
private static Logger logger = LogManager .getLogger (ModuleApp .class )
12
12
;
13
13
public static void main (String [] args ) {
14
+ System .out .println ("Testing Log4j" );
14
15
System .out .println ("Class path: " + System .getProperty ("java.class.path" ));
15
16
System .out .println ("Module path:" + System .getProperty ("jdk.module.path" ));
16
17
String greeting = new Greeting ().regular ("World" );
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ public class SLF4JApp {
11
11
private static Logger logger = LoggerFactory .getLogger (SLF4JApp .class );
12
12
13
13
public static void main (String [] args ) {
14
+ System .out .println ("Testing SLF4J" );
14
15
System .out .println ("Class path: " + System .getProperty ("java.class.path" ));
15
16
System .out .println ("Module path:" + System .getProperty ("jdk.module.path" ));
16
17
String greeting = new Greeting ().regular ("World" );
You can’t perform that action at this time.
0 commit comments