mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
f258229b88
- Removed the option to specify a different class to log on - Updated tests and documentation
9 lines
166 B
Java
9 lines
166 B
Java
package before;
|
|
@lombok.extern.slf4j.Slf4j
|
|
class LoggerSlf4jWithPackage {
|
|
}
|
|
class LoggerSlf4jWithPackageOuter {
|
|
@lombok.extern.slf4j.Slf4j
|
|
static class Inner {
|
|
}
|
|
} |