x/ibc: fix log (#6903)

* x/ibc: fix log

* Update x/ibc/05-port/keeper/keeper.go

Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>

Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
This commit is contained in:
Federico Kunze 2020-07-30 23:00:58 +02:00 committed by GitHub
parent 7e2eea84c6
commit 25c539aade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ func (k *Keeper) BindPort(ctx sdk.Context, portID string) *capabilitytypes.Capab
panic(err.Error())
}
k.Logger(ctx).Info("port %s binded", portID)
k.Logger(ctx).Info("port binded", "port", portID)
return key
}