import lombok.extern.slf4j.Slf4j; @Slf4j class Apple { } @Slf4j class CherryTree { public CherryTree() { log.info("A cherry tree!"); } }