mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-30 12:24:04 +00:00
f258229b88
- Removed the option to specify a different class to log on - Updated tests and documentation
16 lines
207 B
Java
16 lines
207 B
Java
import lombok.extern.slf4j.Slf4j;
|
|
|
|
@lombok.extern.slf4j.Slf4j
|
|
class LoggerSlf4j {
|
|
}
|
|
|
|
@Slf4j
|
|
class LoggerSlf4jWithImport {
|
|
}
|
|
|
|
class LoggerSlf4jOuter {
|
|
@lombok.extern.slf4j.Slf4j
|
|
static class Inner {
|
|
|
|
}
|
|
} |