@cryptotaxi247 / kubo / commits / 656c28ef0

namesys: fix debug message

License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>

Steven Allen committed Aug 29, 2018 at 18:30 UTC 656c28ef0ea3da7efae1a86abaf941789b0b80cc
1 file changed +1 -1
namesys/routing.go
+1 -1
@@ -58,7 +58,7 @@ func (r *IpnsResolver) resolveOnce(ctx context.Context, name string, options *op
58 pid, err := peer.IDB58Decode(name)
59 if err != nil {
60 // name should be a multihash. if it isn't, error out here.
61 - log.Debugf("RoutingResolver: bad input hash: [%s]\n", name)
61 + log.Debugf("RoutingResolver: IPNS address not a valid peer ID: [%s]\n", name)
62 return "", 0, err
63 }
64