@@ -379,7 +379,7 @@ func Run(
379
379
if errors .Is (err , ctx .Err ()) {
380
380
return Info {}, err
381
381
}
382
- log .Dev .Warningf (ctx , "while gc'ing local key range: %s" , err )
382
+ log .KvExec .Warningf (ctx , "while gc'ing local key range: %s" , err )
383
383
}
384
384
385
385
// Clean up the AbortSpan.
@@ -388,7 +388,7 @@ func Run(
388
388
if errors .Is (err , ctx .Err ()) {
389
389
return Info {}, err
390
390
}
391
- log .Dev .Warningf (ctx , "while gc'ing abort span: %s" , err )
391
+ log .KvExec .Warningf (ctx , "while gc'ing abort span: %s" , err )
392
392
}
393
393
394
394
log .Eventf (ctx , "GC'ed keys; stats %+v" , info )
@@ -445,7 +445,7 @@ func processReplicatedKeyRange(
445
445
excludeUserKeySpan = true
446
446
info .ClearRangeSpanOperations ++
447
447
} else {
448
- log .Dev .Warningf (ctx , "failed to perform GC clear range operation on range %s: %s" ,
448
+ log .KvExec .Warningf (ctx , "failed to perform GC clear range operation on range %s: %s" ,
449
449
desc .String (), err )
450
450
info .ClearRangeSpanFailures ++
451
451
}
@@ -580,7 +580,7 @@ func processReplicatedLocks(
580
580
if errors .Is (err , ctx .Err ()) {
581
581
return err
582
582
}
583
- log .Dev .Warningf (ctx , "failed to cleanup intents batch: %v" , err )
583
+ log .KvExec .Warningf (ctx , "failed to cleanup intents batch: %v" , err )
584
584
}
585
585
}
586
586
}
@@ -606,7 +606,7 @@ func processReplicatedLocks(
606
606
if errors .Is (err , ctx .Err ()) {
607
607
return err
608
608
}
609
- log .Dev .Warningf (ctx , "failed to cleanup intents batch: %v" , err )
609
+ log .KvExec .Warningf (ctx , "failed to cleanup intents batch: %v" , err )
610
610
}
611
611
return nil
612
612
}
@@ -934,7 +934,7 @@ func (b *gcKeyBatcher) maybeFlushPendingBatches(ctx context.Context) (err error)
934
934
// safe to continue because we bumped the GC
935
935
// thresholds. We may leave some inconsistent history
936
936
// behind, but nobody can read it.
937
- log .Dev .Warningf (ctx , "failed to GC keys with clear range: %v" , err )
937
+ log .KvExec .Warningf (ctx , "failed to GC keys with clear range: %v" , err )
938
938
b .info .ClearRangeSpanFailures ++
939
939
}
940
940
b .clearRangeCounters .updateGcInfo (b .info )
@@ -981,7 +981,7 @@ func (b *gcKeyBatcher) flushPointsBatch(ctx context.Context, batch *pointsBatch)
981
981
// safe to continue because we bumped the GC
982
982
// thresholds. We may leave some inconsistent history
983
983
// behind, but nobody can read it.
984
- log .Dev .Warningf (ctx , "failed to GC a batch of keys: %v" , err )
984
+ log .KvExec .Warningf (ctx , "failed to GC a batch of keys: %v" , err )
985
985
}
986
986
batch .gcBatchCounters .updateGcInfo (b .info )
987
987
b .totalMemUsed -= batch .gcBatchCounters .memUsed
@@ -1194,7 +1194,7 @@ func processLocalKeyRange(
1194
1194
gcer PureGCer ,
1195
1195
) error {
1196
1196
b := makeBatchingInlineGCer (gcer , func (err error ) {
1197
- log .Dev .Warningf (ctx , "failed to GC from local key range: %s" , err )
1197
+ log .KvExec .Warningf (ctx , "failed to GC from local key range: %s" , err )
1198
1198
})
1199
1199
defer b .Flush (ctx )
1200
1200
@@ -1286,7 +1286,7 @@ func processAbortSpan(
1286
1286
gcer PureGCer ,
1287
1287
) error {
1288
1288
b := makeBatchingInlineGCer (gcer , func (err error ) {
1289
- log .Dev .Warningf (ctx , "unable to GC from abort span: %s" , err )
1289
+ log .KvExec .Warningf (ctx , "unable to GC from abort span: %s" , err )
1290
1290
})
1291
1291
defer b .Flush (ctx )
1292
1292
abortSpan := abortspan .New (rangeID )
0 commit comments