From 656c28ef0ea3da7efae1a86abaf941789b0b80cc Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Wed, 29 Aug 2018 18:30:46 -0700 Subject: [PATCH] namesys: fix debug message License: MIT Signed-off-by: Steven Allen --- namesys/routing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/namesys/routing.go b/namesys/routing.go index 65da47a2f..4c1ce80b4 100644 --- a/namesys/routing.go +++ b/namesys/routing.go @@ -58,7 +58,7 @@ func (r *IpnsResolver) resolveOnce(ctx context.Context, name string, options *op pid, err := peer.IDB58Decode(name) if err != nil { // name should be a multihash. if it isn't, error out here. - log.Debugf("RoutingResolver: bad input hash: [%s]\n", name) + log.Debugf("RoutingResolver: IPNS address not a valid peer ID: [%s]\n", name) return "", 0, err }