diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-11-22 21:01:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 21:01:10 +0800 |
commit | 3ba0418a9a433da4c8360116866873d8793b03da (patch) | |
tree | 4769e07c50c6606ea20d41a943d020499c49aa5c /p2p | |
parent | e0d091e0909fc94958a33608ae4dad0825482813 (diff) | |
parent | 333b5fb123a497efa1a9ef54a437b24dfb3936cc (diff) | |
download | dexon-3ba0418a9a433da4c8360116866873d8793b03da.tar dexon-3ba0418a9a433da4c8360116866873d8793b03da.tar.gz dexon-3ba0418a9a433da4c8360116866873d8793b03da.tar.bz2 dexon-3ba0418a9a433da4c8360116866873d8793b03da.tar.lz dexon-3ba0418a9a433da4c8360116866873d8793b03da.tar.xz dexon-3ba0418a9a433da4c8360116866873d8793b03da.tar.zst dexon-3ba0418a9a433da4c8360116866873d8793b03da.zip |
Merge pull request #17973 from holiman/splitter2
core: better side-chain importing
Diffstat (limited to 'p2p')
-rw-r--r-- | p2p/discover/table.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/discover/table.go b/p2p/discover/table.go index afd4c9a27..9f7f1d41b 100644 --- a/p2p/discover/table.go +++ b/p2p/discover/table.go @@ -434,7 +434,7 @@ func (tab *Table) loadSeedNodes() { for i := range seeds { seed := seeds[i] age := log.Lazy{Fn: func() interface{} { return time.Since(tab.db.LastPongReceived(seed.ID())) }} - log.Debug("Found seed node in database", "id", seed.ID(), "addr", seed.addr(), "age", age) + log.Trace("Found seed node in database", "id", seed.ID(), "addr", seed.addr(), "age", age) tab.add(seed) } } |