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

10 lines
153 B
Plaintext

import lombok.extern.slf4j.Log;
@Log
public class LogExample {
public static void main(String... args) {
log.error("Something's wrong here");
}
}