diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-12 01:49:00 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-12 01:49:00 +0800 |
commit | db24fb792cf0dab91bc85e79aecf6758349002a4 (patch) | |
tree | 7ca7a1540dbf7226b5812690a0133201095661e7 /eth/backend.go | |
parent | 3d6fd601c5eec13480b6c736f6811b663a885766 (diff) | |
download | dexon-db24fb792cf0dab91bc85e79aecf6758349002a4.tar.gz dexon-db24fb792cf0dab91bc85e79aecf6758349002a4.tar.zst dexon-db24fb792cf0dab91bc85e79aecf6758349002a4.zip |
Move standard fields to LogEvent
Diffstat (limited to 'eth/backend.go')
-rw-r--r-- | eth/backend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go index b8b9416d5..677b5d8e3 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -224,9 +224,9 @@ func (s *Ethereum) MaxPeers() int { func (s *Ethereum) Start(seed bool) error { jsonlogger.LogJson(ðlogger.LogStarting{ ClientString: s.ClientIdentity().String(), - Guid: ethutil.Bytes2Hex(s.ClientIdentity().Pubkey()), Coinbase: ethutil.Bytes2Hex(s.KeyManager().Address()), ProtocolVersion: ProtocolVersion, + LogEvent: ethlogger.LogEvent{Guid: ethutil.Bytes2Hex(s.ClientIdentity().Pubkey())}, }) err := s.net.Start() |