mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 18:23:24 +00:00
10 lines
153 B
Plaintext
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");
|
|
}
|
|
}
|