Skip to content

Commit ca77afc

Browse files
authored
Merge pull request #1664 from ydb-platform/improve-logging
small changes in logs
2 parents a627a2d + 6032882 commit ca77afc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

log/driver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,14 @@ func internalDriver(l Logger, d trace.Detailer) trace.Driver {
139139
}
140140
ctx := with(context.Background(), TRACE, "ydb", "driver", "conn", "state", "change")
141141
endpoint := info.Endpoint
142-
l.Log(ctx, "driver state change starting...",
142+
l.Log(ctx, "driver connection state change starting...",
143143
kv.Stringer("endpoint", endpoint),
144144
kv.Stringer("state", info.State),
145145
)
146146
start := time.Now()
147147

148148
return func(info trace.DriverConnStateChangeDoneInfo) {
149-
l.Log(ctx, "driver state change done",
149+
l.Log(ctx, "driver connection state change done",
150150
kv.Stringer("endpoint", endpoint),
151151
kv.Latency(start),
152152
kv.Stringer("state", info.State),

0 commit comments

Comments
 (0)