Skip to content

Commit

Permalink
dashboard: log host+port
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman authored and enriquefynn committed Feb 15, 2021
1 parent 0134a3d commit 02fcc29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 02fcc29

Please sign in to comment.