Browse Source

feat: print dex version in the logs

Signed-off-by: iam-veeramalla <abhishek.veeramalla@gmail.com>
pull/2337/head
iam-veeramalla 4 years ago
parent
commit
528ef18c2f
  1. 10
      cmd/dex/serve.go

10
cmd/dex/serve.go

@ -9,6 +9,7 @@ import (
"net"
"net/http"
"os"
"runtime"
"strings"
"syscall"
"time"
@ -91,6 +92,15 @@ func runServe(options serveOptions) error {
if err != nil {
return fmt.Errorf("invalid config: %v", err)
}
logger.Infof(
"Dex Version: %s, Go Version: %s, Go OS/ARCH: %s %s",
version,
runtime.Version(),
runtime.GOOS,
runtime.GOARCH,
)
if c.Logger.Level != "" {
logger.Infof("config using log level: %s", c.Logger.Level)
}

Loading…
Cancel
Save