Skip to content

Commit

Permalink
chore: add debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
RafilxTenfen committed Jul 26, 2024
1 parent 8a35538 commit 37766b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/e2e/configurer/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,11 @@ func (bc *baseConfigurer) createBabylonPhase2Channel(chainA *chain.Config, chain
"--channel-version", chainA.IBCConfig.Version,
"--new-client-connection", "--yes",
}
_, _, err := bc.containerManager.ExecHermesCmd(bc.t, cmd, "SUCCESS")
out, errBuff, err := bc.containerManager.ExecHermesCmd(bc.t, cmd, "")
if err != nil {
return err
}
bc.t.Logf("bc.containerManager.ExecHermesCmd: out: %s, errBuf: %s", out.String(), errBuff.String())
bc.t.Logf("connected %s and %s chains via IBC", chainA.ChainMeta.Id, chainB.ChainMeta.Id)
bc.t.Logf("chainA's IBC config: %v", chainA.IBCConfig)
bc.t.Logf("chainB's IBC config: %v", chainB.IBCConfig)
Expand Down

0 comments on commit 37766b9

Please sign in to comment.