Skip to content

Commit

Permalink
misc: added logging of provider build version
Browse files Browse the repository at this point in the history
  • Loading branch information
sheensantoscapadngan committed Nov 28, 2024
1 parent 3846645 commit 9e84221
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
"time"

"github.com/infisical/infisical-csi-provider/internal/server"
"github.com/infisical/infisical-csi-provider/internal/version"
"google.golang.org/grpc"
pb "sigs.k8s.io/secrets-store-csi-driver/provider/v1alpha1"
)
Expand Down Expand Up @@ -96,7 +97,7 @@ func startProviderServer() chan error {
)

errorCh := make(chan error)
log.Println("Starting up provider server...")
log.Printf("Starting up provider server with build version: %s\n", version.BuildVersion)
go func() {
defer func() {
shutdown(gs)
Expand Down

0 comments on commit 9e84221

Please sign in to comment.