Files
lombok/usage_examples/LogExample_post.jpage
T
2014-01-21 23:00:09 +01:00

8 lines
213 B
Plaintext

public class LogExample {
private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LogExample.class);
public static void main(String... args) {
log.error("Something's wrong here");
}
}