Change application name, and set debug level to info

This commit is contained in:
Bingkun Li 2026-01-26 11:07:15 +08:00
parent e7e12bc6a1
commit dcb1ce1012
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling @EnableScheduling
@MapperScan("com.zhangy.skyeye.**.mapper") @MapperScan("com.zhangy.skyeye.**.mapper")
@SpringBootApplication(scanBasePackages = "com.zhangy.**") @SpringBootApplication(scanBasePackages = "com.zhangy.**")
public class LdApplication { public class SEApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(LdApplication.class, args); SpringApplication.run(SEApplication.class, args);
} }
} }

View File

@ -91,5 +91,5 @@ logging:
file: file:
name: "logs/" name: "logs/"
level: level:
com.zhangy: debug com.zhangy: info
org.springframework.messaging.simp.broker.SimpleBrokerMessageHandler: OFF org.springframework.messaging.simp.broker.SimpleBrokerMessageHandler: OFF