From 51486bd0ff6c576289772ab7442f887dd135cc8f Mon Sep 17 00:00:00 2001 From: wangxianzhang Date: Fri, 30 Sep 2022 09:29:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=8F=91=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/epmet/openapi/scan/ScanApplication.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/epmet-openapi/epmet-openapi-scan/src/main/java/com/epmet/openapi/scan/ScanApplication.java b/epmet-openapi/epmet-openapi-scan/src/main/java/com/epmet/openapi/scan/ScanApplication.java index 1efda9e506..613eada8d9 100644 --- a/epmet-openapi/epmet-openapi-scan/src/main/java/com/epmet/openapi/scan/ScanApplication.java +++ b/epmet-openapi/epmet-openapi-scan/src/main/java/com/epmet/openapi/scan/ScanApplication.java @@ -8,6 +8,7 @@ package com.epmet.openapi.scan; +import lombok.extern.slf4j.Slf4j; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.ServletComponentScan; @@ -23,9 +24,11 @@ import org.springframework.context.annotation.ComponentScan; @SpringBootApplication @ComponentScan(basePackages = "com.epmet") @ServletComponentScan(basePackages = "com.epmet") +@Slf4j public class ScanApplication { public static void main(String[] args) { + log.info("openapi启动了:"); SpringApplication.run(ScanApplication.class, args); }