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");