This commit is contained in:
Livio Amstutz 2019-12-02 16:15:42 +01:00
parent 2ff421188e
commit d5e1dfff61
3 changed files with 8 additions and 4 deletions

View file

@ -44,7 +44,7 @@ func Start(ctx context.Context, o OpenIDProvider) {
go func() {
err := o.HttpHandler().ListenAndServe()
if err != nil {
logrus.Panic("oidc server serve failed")
logrus.Panicf("oidc server serve failed: %v", err)
}
}()
logrus.Infof("oidc server is listening on %s", o.Port())