Skip to content

Commit

Permalink
Log idp and api url on application start
Browse files Browse the repository at this point in the history
Code has been copied from AppConfig.java.
  • Loading branch information
Tempuser 5432 committed Jul 7, 2021
1 parent 614c2be commit a26c857
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ public class DigitalGreenCertificateService {

void onStart(@Observes StartupEvent ev) {
LOG.info("Application started go to: http://localhost:8080/dgc/covid-19-vaccination-certificate.html");
LOG.info("idp.client.id: " + appConfig.getClientId());
LOG.info("idp.base.url: " + appConfig.getIdpBaseUrl());
LOG.info("digital-green-certificate-service.issuerAPIUrl: " +
appConfig.getDigitalGreenCertificateServiceIssuerAPI());
}

@PostConstruct
Expand Down

0 comments on commit a26c857

Please sign in to comment.