Skip to content

Commit

Permalink
prettier format
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Sep 16, 2024
1 parent be3ee6d commit b619f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerutil/container_lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func (c *ContainerLifecycle) CheckForFailedStart(ctx context.Context, wait time.

if err := ParseSDKPanicFromText(logs.String()); err != nil {
// Must use Println and not the logger as there are ascii escape codes in the logs.
fmt.Printf("\nContainer name: %s. logs\n%s\n", c.containerName, logs.String())
fmt.Printf("\nContainer name: %s.\nerror: %s.\nlogs\n%s\n", c.containerName, err.Error(), logs.String())
return fmt.Errorf("container %s failed to start: %w", c.containerName, err)
}

Expand Down
2 changes: 1 addition & 1 deletion local-interchain/interchain/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func StartChain(installDir, chainCfgFile string, ac *types.AppStartConfig) {
SkipPathCreation: false,
})
if err != nil {
log.Fatalf("Error starting: %v", err)
log.Fatalf("ic.Build: %v", err)
}

if relayer != nil && len(ibcpaths) > 0 {
Expand Down

0 comments on commit b619f36

Please sign in to comment.