Skip to content

Commit

Permalink
Print network name at start
Browse files Browse the repository at this point in the history
  • Loading branch information
wizeguyy committed Jun 4, 2024
1 parent 4d4c927 commit 3a9098f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/go-quai/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ func startCmdPreRun(cmd *cobra.Command, args []string) error {
}

func runStart(cmd *cobra.Command, args []string) error {
log.Global.Info("Starting go-quai")
network := viper.GetString(utils.EnvironmentFlag.Name)
log.Global.Infof("Starting go-quai on the %s network", network)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

Expand Down

0 comments on commit 3a9098f

Please sign in to comment.