proxy: show version on startup

This commit is contained in:
Jens Langhammer 2020-10-19 16:21:13 +02:00
parent c3917ebc2e
commit d6e14cc551
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import (
"strings" "strings"
"time" "time"
"github.com/BeryJu/passbook/proxy/pkg"
"github.com/BeryJu/passbook/proxy/pkg/client" "github.com/BeryJu/passbook/proxy/pkg/client"
"github.com/BeryJu/passbook/proxy/pkg/client/outposts" "github.com/BeryJu/passbook/proxy/pkg/client/outposts"
"github.com/getsentry/sentry-go" "github.com/getsentry/sentry-go"
@ -70,6 +71,7 @@ func doGlobalSetup(config map[string]interface{}) {
default: default:
log.SetLevel(log.DebugLevel) log.SetLevel(log.DebugLevel)
} }
log.WithField("version", pkg.VERSION).Info("Starting passbook proxy")
var dsn string var dsn string
if config[ConfigErrorReportingEnabled].(bool) { if config[ConfigErrorReportingEnabled].(bool) {