Skip to content

Commit

Permalink
start up open api log
Browse files Browse the repository at this point in the history
  • Loading branch information
TsimurSh committed Oct 29, 2024
1 parent 26fd188 commit 3a53a98
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package pl.goeuropa.servicealerts;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
Expand All @@ -12,10 +14,12 @@
@ConfigurationPropertiesScan
public class ServiceAlertsApi {

private static final Logger log = LoggerFactory.getLogger(Object.class);

public static void main(String[] args) {
SpringApplication.run(ServiceAlertsApi.class, args);

System.out.println("--------api run complete ---- -------------- [ ] http://localhost:8888/ui ");
log.info(" ServiceAlerts OpenApi: [ http://localhost:8888/ui ]");
}

@Bean
Expand Down

0 comments on commit 3a53a98

Please sign in to comment.