From 79e9044686309abea1d5ae0b99551fbf578108b4 Mon Sep 17 00:00:00 2001 From: godcong Date: Thu, 27 Jan 2022 18:50:02 +0800 Subject: [PATCH] fix(publisher): fix garbled code output --- publisher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publisher.go b/publisher.go index 3b69bce..1ea9e21 100644 --- a/publisher.go +++ b/publisher.go @@ -284,7 +284,7 @@ func PublishEntry(ctx context.Context, r routing.ValueStore, ipnskey string, rec return err } - log.Debugf("Storing ipns entry at: %s", ipnskey) + log.Debugf("Storing ipns entry at: %x", ipnskey) // Store ipns entry at "/ipns/"+h(pubkey) return r.PutValue(ctx, ipnskey, data) }