diff --git a/pkg/kv/kvserver/store_snapshot.go b/pkg/kv/kvserver/store_snapshot.go index c57768182eb1..e51310780774 100644 --- a/pkg/kv/kvserver/store_snapshot.go +++ b/pkg/kv/kvserver/store_snapshot.go @@ -966,7 +966,7 @@ func (kvSS *kvBatchSnapshotStrategy) Send( timingTag.stop("totalTime") log.Eventf(ctx, "finished sending snapshot batches, sent a total of %d bytes", bytesSent) - kvSS.status = redact.Sprintf("kvs=%d rangeKVs=%d sharedSSTs=%d, externalSSTs", kvs, rangeKVs, sharedSSTCount, externalSSTCount) + kvSS.status = redact.Sprintf("kvs=%d rangeKVs=%d sharedSSTs=%d, externalSSTs=%d", kvs, rangeKVs, sharedSSTCount, externalSSTCount) return bytesSent, nil }