From 1067523e78a1c7632e7d5bdc17e00bba16350583 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 8 Dec 2025 17:49:32 +0100 Subject: [PATCH] Simplify log message for snap sync disable --- eth/downloader/downloader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go index d99fb0a1ab..b84a0efddd 100644 --- a/eth/downloader/downloader.go +++ b/eth/downloader/downloader.go @@ -365,7 +365,7 @@ func (d *Downloader) synchronise(beaconPing chan struct{}) (err error) { defer func() { if err == nil && mode == ethconfig.SnapSync { d.moder.disableSnap() - log.Info("Disabled the snap sync after the initial sync cycle") + log.Info("Disabled snap-sync after the initial sync cycle") } }() if mode == ethconfig.SnapSync {