We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9234a7d commit d6b8564Copy full SHA for d6b8564
platform/view/core/endpoint/binder.go
@@ -41,7 +41,7 @@ func (b *binder) Bind(ephemeral, longTerm view.Identity) error {
41
42
logger.Infof("Id [%s] has no long term binding. It will be registered as a long-term id.")
43
if err := b.bindingKVS.PutBinding(longTerm, longTerm); err != nil {
44
- return errors.Wrapf(err, "failed to register [%s] as long term")
+ return errors.Wrapf(err, "failed to register [%s] as long term", longTerm)
45
}
46
return b.bindingKVS.PutBinding(ephemeral, longTerm)
47
0 commit comments