diff --git a/internal/datastore/crdb/crdb.go b/internal/datastore/crdb/crdb.go index 6334c57b2c..83b58a43ad 100644 --- a/internal/datastore/crdb/crdb.go +++ b/internal/datastore/crdb/crdb.go @@ -205,6 +205,7 @@ func (cds *crdbDatastore) Revision(ctx context.Context) (datastore.Revision, err if cds.quantizationNanos > 0 { quantized -= (crdbNow % cds.quantizationNanos) } + log.Ctx(ctx).Debug().Int64("readSkew", cds.followerReadDelayNanos).Int64("totalSkew", nowHLC.IntPart()-quantized).Msg("revision skews") validForNanos := (quantized + cds.quantizationNanos) - crdbNow