mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-14 03:56:36 +00:00
cmd/devp2p: fix erroneous log output in crawler (#27089)
cmd/devp2p: fix log of ignored recent nodes counter
This commit is contained in:
parent
5aa5295cf9
commit
8fe807c8f2
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ loop:
|
||||||
"added", atomic.LoadUint64(&added),
|
"added", atomic.LoadUint64(&added),
|
||||||
"updated", atomic.LoadUint64(&updated),
|
"updated", atomic.LoadUint64(&updated),
|
||||||
"removed", atomic.LoadUint64(&removed),
|
"removed", atomic.LoadUint64(&removed),
|
||||||
"ignored(recent)", atomic.LoadUint64(&removed),
|
"ignored(recent)", atomic.LoadUint64(&recent),
|
||||||
"ignored(incompatible)", atomic.LoadUint64(&skipped))
|
"ignored(incompatible)", atomic.LoadUint64(&skipped))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue