diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go index 8ce86eacd1c4f36233df8fba43bb0372c65bfd20..92e42f0b34a2a4195877e17b4d5adad804384a7e 100644 --- a/eth/downloader/downloader.go +++ b/eth/downloader/downloader.go @@ -383,7 +383,7 @@ func (d *Downloader) syncWithPeer(p *peer, hash common.Hash, td *big.Int) (err e return errTooOld } - log.Debug("Synchronising with the network", "peer", p.id, "eth", p.version, "head", hash.Hex()[2:10], "td", td, "mode", syncModeLabels[d.mode]) + log.Debug("Synchronising with the network", "peer", p.id, "eth", p.version, "head", hash.Hex()[2:10], "td", td, "mode", d.mode) defer func(start time.Time) { log.Debug("Synchronisation terminated", "elapsed", time.Since(start)) }(time.Now()) diff --git a/eth/downloader/modes.go b/eth/downloader/modes.go index c2ce0cfeffe9b1555835c3ef10cd1b5a15ce60f7..ae3c43888a9c4a36e5c72969df668f32e0549b27 100644 --- a/eth/downloader/modes.go +++ b/eth/downloader/modes.go @@ -25,10 +25,16 @@ const ( LightSync // Download only the headers and terminate afterwards ) -// syncModeLabels contains a mapping of sync modes to textual label used by the -// logging system. -var syncModeLabels = map[SyncMode]string{ - FullSync: "full", - FastSync: "fast", - LightSync: "light", +// String implements the stringer interface. +func (mode SyncMode) String() string { + switch mode { + case FullSync: + return "full" + case FastSync: + return "fast" + case LightSync: + return "light" + default: + return "unknown" + } }