Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kv(ticdc): set debug level for resolved ts fallback log (#5558) #5576

2 changes: 1 addition & 1 deletion cdc/kv/region_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ func (w *regionWorker) handleResolvedTs(
}

if resolvedTs < state.lastResolvedTs {
log.Warn("The resolvedTs is fallen back in kvclient",
log.Debug("The resolvedTs is fallen back in kvclient",
zap.String("changefeed", w.session.client.changefeed),
zap.String("EventType", "RESOLVED"),
zap.Uint64("resolvedTs", resolvedTs),
Expand Down