Commit 02cb5f3b authored by W. Trevor King's avatar W. Trevor King

namesys/publisher: Drop the 'namesys: ' prefix for the Publish log

This is already handled by setup in namesys/routing.go:

  var log = u.Logger("namesys")
parent 71575746
......@@ -42,7 +42,7 @@ func NewRoutingPublisher(route routing.IpfsRouting) Publisher {
// Publish implements Publisher. Accepts a keypair and a value,
// and publishes it out to the routing system
func (p *ipnsPublisher) Publish(ctx context.Context, k ci.PrivKey, value path.Path) error {
log.Debugf("namesys: Publish %s", value)
log.Debugf("Publish %s", value)
data, err := createRoutingEntryData(k, value)
if err != nil {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment