Skip to content

Commit

Permalink
fix: silence some noisy Go logs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Mar 20, 2021
1 parent ccf2db4 commit 6ef8a69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions golang/cosmos/x/dibc/ibc.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func NewPortHandler(ibcModule porttypes.IBCModule, keeper Keeper) portHandler {
}

func (ch portHandler) Receive(ctx *swingset.ControllerContext, str string) (ret string, err error) {
fmt.Println("ibc.go downcall", str)
// fmt.Println("ibc.go downcall", str)
keeper := ch.keeper

msg := new(portMessage)
Expand Down Expand Up @@ -167,7 +167,7 @@ func (ch portHandler) Receive(ctx *swingset.ControllerContext, str string) (ret
err = fmt.Errorf("unrecognized method %s", msg.Method)
}

fmt.Println("ibc.go downcall reply", ret, err)
// fmt.Println("ibc.go downcall reply", ret, err)
return
}

Expand Down

0 comments on commit 6ef8a69

Please sign in to comment.