Skip to content

Commit 5fa9528

Browse files
authored
Merge pull request #2181 from josephschorr/db-logging
Wire Spanner's logging up to zerolog
2 parents 68a6ebc + d4cedbe commit 5fa9528

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ require (
8282
github.com/rs/xid v1.6.0
8383
github.com/rs/zerolog v1.33.0
8484
github.com/samber/lo v1.47.0
85-
github.com/samber/slog-zerolog/v2 v2.6.0 // indirect
85+
github.com/samber/slog-zerolog/v2 v2.7.2
8686
github.com/schollz/progressbar/v3 v3.17.1
8787
github.com/scylladb/go-set v1.0.2
8888
github.com/sean-/sysexits v1.0.0
@@ -332,7 +332,7 @@ require (
332332
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect
333333
github.com/sagikazarmark/locafero v0.3.0 // indirect
334334
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
335-
github.com/samber/slog-common v0.17.0 // indirect
335+
github.com/samber/slog-common v0.18.0 // indirect
336336
github.com/sanposhiho/wastedassign/v2 v2.0.7 // indirect
337337
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
338338
github.com/sashamelentyev/interfacebloat v1.1.0 // indirect

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -1532,10 +1532,10 @@ github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6g
15321532
github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ=
15331533
github.com/samber/lo v1.47.0 h1:z7RynLwP5nbyRscyvcD043DWYoOcYRv3mV8lBeqOCLc=
15341534
github.com/samber/lo v1.47.0/go.mod h1:RmDH9Ct32Qy3gduHQuKJ3gW1fMHAnE/fAzQuf6He5cU=
1535-
github.com/samber/slog-common v0.17.0 h1:HdRnk7QQTa9ByHlLPK3llCBo8ZSX3F/ZyeqVI5dfMtI=
1536-
github.com/samber/slog-common v0.17.0/go.mod h1:mZSJhinB4aqHziR0SKPqpVZjJ0JO35JfH+dDIWqaCBk=
1537-
github.com/samber/slog-zerolog/v2 v2.6.0 h1:S7Q7fvV6HB7NSa7WnI/7ymuVkQZg5XhNXM1ltmAOvGc=
1538-
github.com/samber/slog-zerolog/v2 v2.6.0/go.mod h1:vGzG7VhveVOnyHEpr7LpIuw28QxEOfV/dQxphJRB4iY=
1535+
github.com/samber/slog-common v0.18.0 h1:zPeXHM+WhMl2zSx76Rg3EE0jwXdkut9s45K+pwhcO1c=
1536+
github.com/samber/slog-common v0.18.0/go.mod h1:6Krf+hemckfEiRDqy3J/sTpKTJQvmOoFLj9Riz3IkRU=
1537+
github.com/samber/slog-zerolog/v2 v2.7.2 h1:z2Flxz1igvyKDLqv4QjZSC6kEyB02emXL7u49R7Jxx0=
1538+
github.com/samber/slog-zerolog/v2 v2.7.2/go.mod h1:TMj08Lvcs2dSNOw03UZ01Uw7001vIOjsixD3S+V5ZOE=
15391539
github.com/sanposhiho/wastedassign/v2 v2.0.7 h1:J+6nrY4VW+gC9xFzUc+XjPD3g3wF3je/NsJFwFK7Uxc=
15401540
github.com/sanposhiho/wastedassign/v2 v2.0.7/go.mod h1:KyZ0MWTwxxBmfwn33zh3k1dmsbF2ud9pAAGfoLfjhtI=
15411541
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 h1:lZUw3E0/J3roVtGQ+SCrUrg3ON6NgVqpn3+iol9aGu4=

internal/datastore/spanner/spanner.go

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package spanner
33
import (
44
"context"
55
"fmt"
6+
"log/slog"
67
"os"
78
"regexp"
89
"strconv"
@@ -14,6 +15,7 @@ import (
1415
sq "github.com/Masterminds/squirrel"
1516
"github.com/google/uuid"
1617
"github.com/prometheus/client_golang/prometheus"
18+
slogzerolog "github.com/samber/slog-zerolog/v2"
1719
"go.opencensus.io/plugin/ocgrpc"
1820
"go.opencensus.io/stats/view"
1921
"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc"
@@ -150,12 +152,14 @@ func NewSpannerDatastore(ctx context.Context, database string, opts ...Option) (
150152
spannerOpts = append(spannerOpts, option.WithCredentialsJSON(config.credentialsJSON))
151153
}
152154

155+
slogger := slog.New(slogzerolog.Option{Level: slog.LevelDebug, Logger: &log.Logger}.NewZerologHandler())
153156
spannerOpts = append(spannerOpts,
154157
option.WithCredentialsFile(config.credentialsFilePath),
155158
option.WithGRPCConnectionPool(max(config.readMaxOpen, config.writeMaxOpen)),
156159
option.WithGRPCDialOption(
157160
grpc.WithStatsHandler(otelgrpc.NewClientHandler()),
158161
),
162+
option.WithLogger(slogger),
159163
)
160164

161165
client, err := spanner.NewClientWithConfig(

0 commit comments

Comments
 (0)