fix: OpenID URL changed in console, adapt to new URL

This commit is contained in:
Harshavardhana
2021-09-27 19:51:24 -07:00
parent 4519450363
commit 84dcd25a36
2 changed files with 9 additions and 1 deletions

View File

@@ -596,6 +596,14 @@ func serverMain(ctx *cli.Context) {
}()
}
if serverDebugLog {
logger.Info("== DEBUG Mode enabled ==")
logger.Info("Currently set environment settings:")
for _, v := range os.Environ() {
logger.Info(v)
}
logger.Info("======")
}
<-globalOSSignalCh
}