From 643f19c602ec2bbe7d9854b27f42fb7e6bf41390 Mon Sep 17 00:00:00 2001 From: zhouwentao <1577701412@qq.com> Date: Wed, 12 Jul 2023 15:38:15 +0800 Subject: [PATCH] updates --- .../src/main/java/org/jeecg/JeecgSystemApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/JeecgSystemApplication.java b/jeecg-boot-module-system/src/main/java/org/jeecg/JeecgSystemApplication.java index 921fd8f..1a63e6d 100644 --- a/jeecg-boot-module-system/src/main/java/org/jeecg/JeecgSystemApplication.java +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/JeecgSystemApplication.java @@ -33,7 +33,7 @@ public class JeecgSystemApplication extends SpringBootServletInitializer { public static void main(String[] args) throws UnknownHostException { long startTime=new Date().getTime(); ConfigurableApplicationContext application = SpringApplication.run(JeecgSystemApplication.class, args); - log.info(String.format("启动jar耗时%s",new Date().getTime()-startTime/1000)); + log.info(String.format("启动jar耗时%s秒",((new Date().getTime()-startTime)/1000))); Environment env = application.getEnvironment(); String ip = InetAddress.getLocalHost().getHostAddress(); String port = env.getProperty("server.port");