Skip to content

Commit

Permalink
logs out api port (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikey authored Nov 9, 2023
1 parent 2d3b5d3 commit 0ddce3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/node/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func run() int {
// Start API in a separate goroutine.
go func() {

log.Info().Msg("Node API starting")
log.Info().Str("port", cfg.API).Msg("Node API starting")
err := server.Start(cfg.API)
if err != nil && !errors.Is(err, http.ErrServerClosed) {
log.Warn().Err(err).Msg("Node API failed")
Expand Down

0 comments on commit 0ddce3a

Please sign in to comment.