Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

fix(publisher): fix garbled code output #28

Merged
merged 1 commit into from
Mar 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down