OnJava8-Examples/validating/SLF4JLogging.java

18 lines
482 B
Java
Raw Permalink Normal View History

2016-08-29 07:27:53 -06:00
// validating/SLF4JLogging.java
// (c)2021 MindView LLC: see Copyright.txt
2016-08-16 18:03:29 -06:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2016-08-16 18:03:29 -06:00
import org.slf4j.*;
public class SLF4JLogging {
private static Logger log =
2016-08-16 18:03:29 -06:00
LoggerFactory.getLogger(SLF4JLogging.class);
public static void main(String[] args) {
log.info("hello logging");
2016-08-16 18:03:29 -06:00
}
}
/* Output:
2021-01-24T08:49:38.496
[main] INFO SLF4JLogging - hello logging
2016-08-16 18:03:29 -06:00
*/