diff --git a/eth/stagedsync/sync.go b/eth/stagedsync/sync.go
index 83531001b71adc6c72587c4841eaedeec302b4b6..f463ef13df6a7dec73dfaa06e800f9c101aeec6e 100644
--- a/eth/stagedsync/sync.go
+++ b/eth/stagedsync/sync.go
@@ -262,7 +262,7 @@ func printLogs(tx kv.RwTx, timings []Timing) error {
 	var logCtx []interface{}
 	count := 0
 	for i := range timings {
-		if timings[i].took < 10*time.Millisecond {
+		if timings[i].took < 50*time.Millisecond {
 			continue
 		}
 		count++
@@ -278,7 +278,7 @@ func printLogs(tx kv.RwTx, timings []Timing) error {
 		}
 	}
 	if len(logCtx) > 0 {
-		log.Info("Timings (slower than 10ms)", logCtx...)
+		log.Info("Timings (slower than 50ms)", logCtx...)
 	}
 
 	if tx == nil {