Skip to content

Commit

Permalink
make ci lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Halimao committed Jan 11, 2024
1 parent 90c60f4 commit 9ada596
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions nodebuilder/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,12 @@ func (n *Node) Start(ctx context.Context) error {
return fmt.Errorf("node: failed to start: %w", err)
}

log.Infof("\n\n/_____/ /_____/ /_____/ /_____/ /_____/ \n\nStarted celestia DA node \nnode "+
"version: %s\nnode type: %s\nnetwork: %s\n\n/_____/ /_____/ /_____/ /_____/ /_____/ \n", node.GetBuildInfo().SemanticVersion, strings.ToLower(n.Type.String()),
log.Infof("\n\n/_____/ /_____/ /_____/ /_____/ /_____/ \n\n"+
"Started celestia DA node \n"+
"node version: %s\nnode type: %s\nnetwork: %s\n\n"+
"/_____/ /_____/ /_____/ /_____/ /_____/ \n",
node.GetBuildInfo().SemanticVersion,
strings.ToLower(n.Type.String()),
n.Network)

addrs, err := peer.AddrInfoToP2pAddrs(host.InfoFromHost(n.Host))
Expand Down

0 comments on commit 9ada596

Please sign in to comment.