mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 18:23:24 +00:00
d78135180c
[Log] updated naming for @Log (topic= instead of mchmulder's 'value').
14 lines
236 B
Java
14 lines
236 B
Java
import lombok.extern.apachecommons.CommonsLog;
|
|
|
|
@lombok.extern.apachecommons.CommonsLog
|
|
class LoggerCommons {
|
|
}
|
|
|
|
@CommonsLog
|
|
class LoggerCommonsWithImport {
|
|
}
|
|
|
|
@CommonsLog(topic="DifferentName")
|
|
class LoggerCommonsWithDifferentName {
|
|
}
|