mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-16 13:06:40 +00:00
Merge pull request #20115 from holiman/minor_dashboard_fx
dashboard: log dashboard url
This commit is contained in:
commit
aca39a6498
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
// Start starts the data collection thread and the listening server of the dashboard.
|
||||||
// Implements the node.Service interface.
|
// Implements the node.Service interface.
|
||||||
func (db *Dashboard) Start(server *p2p.Server) error {
|
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)
|
db.wg.Add(3)
|
||||||
go db.collectSystemData()
|
go db.collectSystemData()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue