The meaning of life is to explore the world

Fixed logging issues

Posted on By Jason Liu

What have been done:

  1. Added logging for specials, approved or rejected.
    Each special item now is logged in the debug mode.

Problems encountered:

  1. @Slf4j cannot be added to domain module.

Solution:

  1. The lombok dependency needs to be added to the POM of the domain module.
<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <scope>provided</scope>
</dependency>