Skip to content
This repository has been archived by the owner on Nov 20, 2021. It is now read-only.

Commit

Permalink
Add stacktraces to all error outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRx committed Mar 6, 2020
1 parent 317404c commit 1169ac9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/e2d/app/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,17 @@ func newRunCmd() *cobra.Command {
Run: func(cmd *cobra.Command, args []string) {
peerGetter, err := getPeerGetter(o)
if err != nil {
log.Fatal(err)
log.Fatalf("%+v", err)
}

baddrs, err := getInitialBootstrapAddrs(o, peerGetter)
if err != nil {
log.Fatal(err)
log.Fatalf("%+v", err)
}

snapshotter, err := getSnapshotProvider(o)
if err != nil {
log.Fatal(err)
log.Fatalf("%+v", err)
}

m, err := manager.New(&manager.Config{
Expand Down

0 comments on commit 1169ac9

Please sign in to comment.