This commit is contained in:
Erik Winter 2024-01-20 13:31:21 +01:00
parent 7a29642bb5
commit 7b5bc5f349
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ var (
func main() {
flag.Parse()
logger := slog.New(slog.NewJSONHandler(os.Stdout, nil))
logger.Info("starting server", "port", *port, "dbPath", *dbPath)
logger.Info("starting server", "port", *port, "dbPath", *dbPath, "apiKey", *apiKey)
db, err := moviestore.NewSQLite(*dbPath)
if err != nil {