소스 검색

update auth-service SpringLifecycle.java

reghao 1 주 전
부모
커밋
f2f084d18d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      auth/auth-service/src/main/java/cn/reghao/tnb/auth/app/config/spring/SpringLifecycle.java

+ 2 - 2
auth/auth-service/src/main/java/cn/reghao/tnb/auth/app/config/spring/SpringLifecycle.java

@@ -27,11 +27,11 @@ public class SpringLifecycle implements ApplicationRunner, DisposableBean {
     public void run(ApplicationArguments args) throws Exception {
         pubkeyService.getPrivateKey();
         accountRegistryService.createAdminAccount();
-        log.info("AccountService 启动...");
+        log.info("AuthService 启动...");
     }
 
     @Override
     public void destroy() {
-        log.info("AccountService 停止...");
+        log.info("AuthService 停止...");
     }
 }