From be500b57d29dbb93fa9de782406c2147712fad7c Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Tue, 24 Sep 2019 10:08:46 +0200 Subject: [PATCH] dashboard: log host+port --- dashboard/dashboard.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index d69a750f10..b576293bc9 100644 --- a/dashboard/dashboard.go +++ b/dashboard/dashboard.go @@ -125,7 +125,7 @@ func (db *Dashboard) APIs() []rpc.API { return nil } // Start starts the data collection thread and the listening server of the dashboard. // Implements the node.Service interface. func (db *Dashboard) Start(server *p2p.Server) error { - log.Info("Starting dashboard") + log.Info("Starting dashboard", "url", fmt.Sprintf("http://%s:%d", db.config.Host, db.config.Port)) db.wg.Add(3) go db.collectSystemData()