chenzl 10 miesięcy temu
rodzic
commit
b426f3e422
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      server/src/main/java/cn/keking/ServerMain.java

+ 1 - 1
server/src/main/java/cn/keking/ServerMain.java

@@ -30,7 +30,7 @@ public class ServerMain {
         ServerProperties.Servlet servlet = serverProperties.getServlet();
         String contextPath = servlet.getContextPath();
         String urlSuffix = StringUtils.isBlank(contextPath)? String.valueOf(port):port+contextPath;
-        logger.info("kkFileView 服务启动完成,耗时:{}s,演示页请访问: http://127.0.0.1:{} ", stopWatch.getTotalTimeSeconds(), urlSuffix);
+        logger.info("服务启动完成,耗时:{}s,演示页请访问: http://127.0.0.1:{} ", stopWatch.getTotalTimeSeconds(), urlSuffix);
     }
 
 }