I'm presently synchronising to the Ethereum blockchain using geth.
I'm seeing two types of message and have a bit of an understanding gap in what they mean. The messages are shown below, with my guess at what they mean.
Synchronisation message type 1:
I0906 10:09:01.619035 eth/handler.go:295] Peer 77e6a5959a5e0529 [eth/63]: timed out DAO fork-check, dropping I0906- Not sure - a log ID?10:09:01.619035- timeeth/handler.go:295]- unsure?Peer 77e6a5959a5e0529- the peer from which the message originates[eth/63]: timed out DAO fork-check, dropping- error code and message
Synchronisation message type 2:
I0906 10:16:21.875217 core/blockchain.go:963] imported 2048 block(s) (0 queued 0 ignored) including 4408 txs in 10.3195903s. #774796 [7fcf4021 / a0a4535a] I0906- Not sure - a log ID?10:16:21.875217- timecore/blockchain.go:963]- unsure?imported 2048 block(s) (0 queued 0 ignored) including 4408 txs in 10.3195903s.- number of blocks downloaded, number of transactions and time taken to download - does "imported" have special meaning?#774796- block number, first or last of 2048?[7fcf4021 / a0a4535a]- don't know
What does each segment of the above message types mean?
Is there a man page related to this?
.gostuff refers to the code, like github.com/ethereum/go-ethereum/blob/master/core/…I0906is created when a log is initiated.... but can't find relevant code atm.