Modify app startup message

Now it says that the app is the most awesome app, which is absolutely true.
This commit is contained in:
Adamad7 2024-10-22 13:59:39 +02:00
parent 6933153298
commit 86e32832db

View File

@ -7,7 +7,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class DemoApplication {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("Start of the most awesome application");
SpringApplication.run(DemoApplication.class, args);
System.out.println("End application");
}