Logging with Lombok's @Slf4j
Logging
-
Logging level is TRACE > DEBUG > INFO > WARN > ERROR
-
In development server, keep it at debug but in actual running business server, use info
// application.properties
logging.level.root = info
logging.level.hello.springmvc = debug