Added one line to DemoApplication

This commit is contained in:
rafals123 2024-10-14 10:57:36 +02:00
parent 1b37786394
commit a22f43f9d8
2 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ public class DemoApplication {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("Start application"); System.out.println("Start application");
System.out.println(new Date());
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }