Skip to content

Commit b035f5d

Browse files
committed
add change log,
fix linter
1 parent 994c9ac commit b035f5d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Massive changed log messages - those have more details now.
2+
13
## v3.99.7
24
* Fixed not passing request context to topic event logs
35
* Fixed deadlock on closing table session with internal query session core

log/query.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,15 +298,15 @@ func internalQuery(
298298

299299
return func(info trace.QueryQueryDoneInfo) {
300300
if info.Error == nil {
301-
l.Log(ctx, "ydb query query done",
301+
l.Log(ctx, "ydb query done",
302302
kv.Latency(start),
303303
)
304304
} else {
305305
lvl := ERROR
306306
if !xerrors.IsYdb(info.Error) {
307307
lvl = DEBUG
308308
}
309-
l.Log(WithLevel(ctx, lvl), "ydb query query failed",
309+
l.Log(WithLevel(ctx, lvl), "ydb query failed",
310310
kv.Latency(start),
311311
kv.Error(info.Error),
312312
kv.Version(),

log/retry.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func internalRetry(l Logger, d trace.Detailer) (t trace.Retry) {
3030

3131
return func(info trace.RetryLoopDoneInfo) {
3232
if info.Error == nil {
33-
l.Log(ctx, "ydb retries completed succesfully",
33+
l.Log(ctx, "ydb retries completed successfully",
3434
kv.String("label", label),
3535
kv.Latency(start),
3636
kv.Int("attempts", info.Attempts),

0 commit comments

Comments
 (0)