From 02cb5f3b32f101076a16d29033c1b0aa8528c18a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" <wking@tremily.us> Date: Thu, 7 May 2015 15:08:09 -0700 Subject: [PATCH] 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") --- namesys/publisher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/namesys/publisher.go b/namesys/publisher.go index 38dd8d082..b20a47bea 100644 --- a/namesys/publisher.go +++ b/namesys/publisher.go @@ -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 { -- GitLab