diff --git a/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go b/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go index 4934a482cd4..90aca6146e7 100644 --- a/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go +++ b/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go @@ -1039,7 +1039,7 @@ func (vr *vreplicator) readExistingRowsCopiedAndUpdateSelfIfNeeded() { if err != nil { log.Warningf("Failed to read existing rows copied value for %s worfklow: %v", vr.WorkflowName, err) } else if rowsCopiedExisting != 0 { - log.Infof("resuming vreplication from another tablet, setting rows copied counter to %v", rowsCopiedExisting) + log.Infof("Resuming the %s vreplication workflow started on another tablet, setting rows copied counter to %v", vr.WorkflowName, rowsCopiedExisting) vr.stats.CopyRowCount.Set(rowsCopiedExisting) } }