From 417f018498b12073cd68dce9f4b1f6770b5c9e0f Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Tue, 17 Feb 2015 13:30:25 +0100 Subject: [PATCH] Updated P2PConnected log fields --- logger/types.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/logger/types.go b/logger/types.go index f8dcb4e78..419382231 100644 --- a/logger/types.go +++ b/logger/types.go @@ -44,8 +44,10 @@ func (l *P2PConnecting) EventName() string { } type P2PConnected struct { - NumConnections int `json:"num_connections"` - RemoteId string `json:"remote_id"` + RemoteId string `json:"remote_id"` + RemoteAddress string `json:"remote_addr"` + RemoteVersionString string `json:"remote_version_string"` + NumConnections int `json:"num_connections"` LogEvent }