1. application.properties
logging.level.xxx.xxx.包=DEBUG
2. 代码中使用
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
...
public HelloController {
private static final Logger LOGGER = LoggerFactory.getLogger(HelloController.class);
...
LOGGER.debug("xxxxx debug");
LOGGER.error("xxxxx error");
}
网友评论