2016-08-29 07:27:53 -06:00
|
|
|
// validating/SLF4JLogging.java
|
2016-12-30 17:23:13 -08:00
|
|
|
// (c)2017 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 {
|
2016-11-21 12:37:57 -08:00
|
|
|
private static Logger log =
|
2016-08-16 18:03:29 -06:00
|
|
|
LoggerFactory.getLogger(SLF4JLogging.class);
|
|
|
|
public static void main(String[] args) {
|
2016-08-23 09:33:05 -06:00
|
|
|
log.info("hello logging");
|
2016-08-16 18:03:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Output:
|
2016-08-23 09:33:05 -06:00
|
|
|
2016-08-22T14:42:44.177
|
|
|
|
[main] INFO SLF4JLogging - hello logging
|
2016-08-16 18:03:29 -06:00
|
|
|
*/
|